| | |
| | | */ |
| | | package org.springblade.modules.place.vo; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import liquibase.pro.packaged.S; |
| | | import org.springblade.modules.place.entity.PlacePractitionerEntity; |
| | | import org.springblade.core.tool.node.INode; |
| | | import lombok.Data; |
| | |
| | | public class PlacePractitionerVO extends PlacePractitionerEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty(value = "类型1:未成年 2:少数民族 3:包含1和2", example = "") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "标签类型", example = "") |
| | | private String categoryName; |
| | | |
| | | /** |
| | | * 工作单位 |
| | | */ |
| | | private String employer; |
| | | |
| | | /** |
| | | * 社区编号 |
| | | */ |
| | | private String communityCode; |
| | | |
| | | /** |
| | | * 角色名称 |
| | | */ |
| | | private String roleName; |
| | | |
| | | /** |
| | | * 街道名称 |
| | | */ |
| | | private String townStreetName; |
| | | |
| | | /** |
| | | * 社区名称 |
| | | */ |
| | | private String neiName; |
| | | |
| | | @ApiModelProperty(value = "场所名称", example = "") |
| | | private String placeName; |
| | | |
| | | @ApiModelProperty(value = "场所地址", example = "") |
| | | private String location; |
| | | |
| | | } |