| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import javax.validation.constraints.Max; |
| | | |
| | | /** |
| | | * 居民列表筛选下级-请求参数 |
| | |
| | | * @version 1.0 |
| | | * @since 1.0 |
| | | * @date 2021-05-26 |
| | | * */ |
| | | */ |
| | | @Data |
| | | @ApiModel("居民列表筛选下级-请求参数") |
| | | public class ComMngPopulationSubordinateDTO { |
| | | |
| | | @ApiModelProperty(value = "1.楼栋 2.单元 3.门牌号",required = true) |
| | | @ApiModelProperty(value = "1.楼栋 2.单元 3.门牌号", required = true) |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "小区id",required = true) |
| | | @ApiModelProperty(value = "小区id", required = true) |
| | | private Long villageId; |
| | | |
| | | @ApiModelProperty(value = "房屋id") |