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; }