|  |  |  | 
|---|
|  |  |  | public static final String MONTH = "2"; | 
|---|
|  |  |  | public static final String YEAR = "3"; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "数据类型 1-销售 2-消耗") | 
|---|
|  |  |  | @ApiModelProperty(value = "数据类型 1-销售 2-消耗", example = "1") | 
|---|
|  |  |  | private String dataType; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "排行榜类型 1-日榜 2-月榜 3-年榜") | 
|---|
|  |  |  | @ApiModelProperty(value = "排行榜类型 1-日榜 2-月榜 3-年榜", example = "1") | 
|---|
|  |  |  | private String type; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "时间") | 
|---|
|  |  |  | private String time; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getDataType() { | 
|---|
|  |  |  | return dataType; | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setType(String type) { | 
|---|
|  |  |  | this.type = type; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getTime() { | 
|---|
|  |  |  | return time; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setTime(String time) { | 
|---|
|  |  |  | this.time = time; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|