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