| | |
| | | */ |
| | | package org.springblade.modules.place.vo; |
| | | |
| | | import org.springblade.modules.place.entity.PlaceExtEntity; |
| | | import org.springblade.core.tool.node.INode; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springblade.modules.place.entity.PlaceExtEntity; |
| | | import org.springblade.modules.place.entity.PlacePractitionerEntity; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 场所详情表 视图实体类 |
| | |
| | | public class PlaceExtVO extends PlaceExtEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 场所名称 |
| | | */ |
| | | private String placeName; |
| | | |
| | | /** |
| | | * 场所位置 |
| | | */ |
| | | @ApiModelProperty(value = "场所位置") |
| | | private String location; |
| | | |
| | | /** |
| | | * 经度 |
| | | */ |
| | | private String lng; |
| | | |
| | | /** |
| | | * 纬度 |
| | | */ |
| | | private String lat; |
| | | |
| | | /** |
| | | * 地址编码 |
| | | */ |
| | | private String houseCode; |
| | | |
| | | /** |
| | | * 角色名称 |
| | | */ |
| | | private String neiCode; |
| | | |
| | | /** |
| | | * 从业人员 |
| | | */ |
| | | private List<PlacePractitionerEntity> placePractitioner = new ArrayList<>(); |
| | | |
| | | @ApiModelProperty("开始时间") |
| | | private String startTime; |
| | | |
| | | @ApiModelProperty("结束时间") |
| | | private String endTime; |
| | | |
| | | // private String communityCode; |
| | | |
| | | /** |
| | | * isApp |
| | | */ |
| | | private Integer isApp; |
| | | |
| | | /** |
| | | * 角色名称 |
| | | */ |
| | | private String roleName; |
| | | |
| | | /** |
| | | * 社区编号 |
| | | */ |
| | | private String communityCode; |
| | | |
| | | private String poiCode; |
| | | |
| | | } |