| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import javax.validation.constraints.Pattern; |
| | | |
| | | /** |
| | | * 高领老人分页查询条件 |
| | | * |
| | | * @author cedoo email:cedoo(a)qq.com |
| | | * @version 1.0 |
| | | * @since 1.0 |
| | | * */ |
| | | */ |
| | | @Data |
| | | @ApiModel("高领老人分页查询条件") |
| | | public class PageEldersAuthHistoryDTO { |
| | |
| | | @ApiModelProperty(value = "月份") |
| | | private Integer month; |
| | | |
| | | @ApiModelProperty(value = "年份") |
| | | private Integer year; |
| | | |
| | | @ApiModelProperty(value = "分页-当前页数,默认1", example = "1") |
| | | private Long pageNum = 1L; |
| | | |