doum
10 天以前 f4d592f3626f94117d8a4eb22176a28290931980
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
package com.doumee.dao.business.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class YwConditionerReportQueryDTO {
 
    @ApiModelProperty("报表类型:day/month")
    private String reportType;
 
    @ApiModelProperty("月份 yyyy-MM")
    private String month;
 
    @ApiModelProperty("日报表开始日期 yyyy-MM-dd")
    private String startTime;
 
    @ApiModelProperty("日报表结束日期 yyyy-MM-dd")
    private String endTime;
 
    @ApiModelProperty("公司ID")
    private Integer gsId;
 
    @ApiModelProperty("设备关键字")
    private String devKeyword;
 
    private Integer page;
    private Integer capacity;
}