| | |
| | | package com.ycl.platform.domain.query; |
| | | |
| | | import com.ycl.platform.base.AbsQuery; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import org.springframework.lang.NonNull; |
| | | import jakarta.validation.constraints.NotBlank; |
| | |
| | | @Accessors(chain = true) |
| | | @ApiModel(value = "Report查询", description = "报备查询") |
| | | public class ReportQuery extends AbsQuery { |
| | | |
| | | private String reportType; |
| | | |
| | | // private Date beginCreateTime; |
| | | // |
| | | // private Date endCreateTime; |
| | | |
| | | private String pointId; |
| | | |
| | | private String peopleId; |
| | | |
| | | private List<Integer> pointIdList; |
| | | |
| | | private List<Integer> peopleIdList; |
| | | |
| | | @ApiModelProperty("状态") |
| | | private Integer status; |
| | | |
| | | } |
| | | |