MrShi
9 小时以前 777bcb6c5660c0ed14d85207377b62b779d81dde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.doumee.dao.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ApiModel("趋势查询条件")
public class TrendQueryDTO implements Serializable {
 
    @ApiModelProperty(value = "查询年月,格式yyyy-MM(按月查询)")
    private String month;
 
    @ApiModelProperty(value = "查询年份,格式yyyy(按年查询)")
    private String year;
}