| | |
| | | package com.panzhihua.common.model.dtos.grid.admin; |
| | | |
| | | import java.util.List; |
| | | |
| | | import javax.validation.constraints.Max; |
| | | |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import javax.validation.constraints.Max; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 居民列表-请求参数 |
| | |
| | | * @version 1.0 |
| | | * @since 1.0 |
| | | * @date 2021-05-26 |
| | | * */ |
| | | */ |
| | | @Data |
| | | @ApiModel("居民列表-请求参数") |
| | | public class ComMngPopulationExportDTO { |
| | |
| | | @ApiModelProperty(value = "走访状态(1待走访2已走访3待验证5已撤销)") |
| | | private Integer eventStatus; |
| | | |
| | | @Length(max=100) |
| | | @Length(max = 100) |
| | | @ApiModelProperty(value = "人员标签", hidden = false, example = "") |
| | | private String label; |
| | | |
| | |
| | | @ApiModelProperty("关联实有房屋(1.是 2.否)") |
| | | private Integer isHouse; |
| | | |
| | | @Length(max=100) |
| | | @Length(max = 100) |
| | | @ApiModelProperty(value = "关键词", hidden = false, example = "") |
| | | private String keyWord; |
| | | |