parent
fa1da2274c
commit
1fc874a8ed
@ -0,0 +1,43 @@
|
|||||||
|
package org.jeecg.modules.demo.erp.vo;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author NH-LHG
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel(value="订单状态统计", description="订单状态统计")
|
||||||
|
public class OrderStateVo {
|
||||||
|
/**总数*/
|
||||||
|
@Excel(name = "总数", width = 15)
|
||||||
|
@ApiModelProperty(value = "总数")
|
||||||
|
private java.lang.String totalNum;
|
||||||
|
/**未付款*/
|
||||||
|
@Excel(name = "未付款", width = 15)
|
||||||
|
@ApiModelProperty(value = "未付款")
|
||||||
|
private java.lang.String unpaid;
|
||||||
|
/**未发货*/
|
||||||
|
@Excel(name = "未发货", width = 15)
|
||||||
|
@ApiModelProperty(value = "未发货")
|
||||||
|
private java.lang.String notSend;
|
||||||
|
/**已发货*/
|
||||||
|
@Excel(name = "已发货", width = 15)
|
||||||
|
@ApiModelProperty(value = "已发货")
|
||||||
|
private java.lang.String send;
|
||||||
|
/**完结*/
|
||||||
|
@Excel(name = "完结", width = 15)
|
||||||
|
@ApiModelProperty(value = "完结")
|
||||||
|
private java.lang.String complete;
|
||||||
|
/**其他*/
|
||||||
|
@Excel(name = "其他", width = 15)
|
||||||
|
@ApiModelProperty(value = "其他")
|
||||||
|
private java.lang.String other;
|
||||||
|
/**取消*/
|
||||||
|
@Excel(name = "取消", width = 15)
|
||||||
|
@ApiModelProperty(value = "取消")
|
||||||
|
private java.lang.String cancel;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue