zxl
2025-12-22 cc4a3ff932b1e768914a4aff0eeaa866d08f9b91
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.ycl.domain.query;
 
import com.ycl.system.domain.base.AbsQuery;
 
import java.util.Date;
import java.util.List;
 
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.lang.NonNull;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 查询
 *
 * @author zxl
 * @since 2025-12-18
 */
@Data
@ApiModel(value = "Report查询参数", description = "查询参数")
public class ReportQuery extends AbsQuery {
 
    /**
     * 项目id all查询全部(属于当前用户的项目)
     */
    private String projectId;
 
    private List<Long> projectIds;
 
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date startTime;
 
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date endTime;
 
    private String projectName;
 
    private String status;
 
}