puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
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
package com.stylefeng.guns.modular.system.controller.resp;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.io.Serializable;
 
@ApiModel(value = "首页数据统计(查询每年每月订单数量)")
public class DataStatisticsOrderYearResp implements Serializable {
 
    @ApiModelProperty(value = "月份")
    private String month;
 
    @ApiModelProperty(value = "数量")
    private Integer orderCount;
 
    public String getMonth() {
        return month;
    }
 
    public void setMonth(String month) {
        this.month = month;
    }
 
    public Integer getOrderCount() {
        return orderCount;
    }
 
    public void setOrderCount(Integer orderCount) {
        this.orderCount = orderCount;
    }
}