package com.iplatform.model.vo;
|
|
import java.io.Serializable;
|
|
/**
|
* 返回移动端的订单统计信息,我的界面中呈现。
|
* @author 时克英
|
* @date 2023-06-30
|
*/
|
public class OrderCenterNumVo implements Serializable {
|
|
public Integer getAwaitPayCount() {
|
return awaitPayCount;
|
}
|
|
public void setAwaitPayCount(Integer awaitPayCount) {
|
this.awaitPayCount = awaitPayCount;
|
}
|
|
public Integer getAwaitShippedCount() {
|
return awaitShippedCount;
|
}
|
|
public void setAwaitShippedCount(Integer awaitShippedCount) {
|
this.awaitShippedCount = awaitShippedCount;
|
}
|
|
public Integer getVerificationCount() {
|
return verificationCount;
|
}
|
|
public void setVerificationCount(Integer verificationCount) {
|
this.verificationCount = verificationCount;
|
}
|
|
public Integer getReceiptCount() {
|
return receiptCount;
|
}
|
|
public void setReceiptCount(Integer receiptCount) {
|
this.receiptCount = receiptCount;
|
}
|
|
public Integer getAwaitReplyCount() {
|
return awaitReplyCount;
|
}
|
|
public void setAwaitReplyCount(Integer awaitReplyCount) {
|
this.awaitReplyCount = awaitReplyCount;
|
}
|
|
public Integer getRefundCount() {
|
return refundCount;
|
}
|
|
public void setRefundCount(Integer refundCount) {
|
this.refundCount = refundCount;
|
}
|
|
// @ApiModelProperty(value = "未支付订单数量")
|
private Integer awaitPayCount = 0;
|
|
// @ApiModelProperty(value = "待发货订单数量")
|
private Integer awaitShippedCount = 0;
|
|
// @ApiModelProperty(value = "待核销订单数量")
|
private Integer verificationCount = 0;
|
|
// @ApiModelProperty(value = "待收货订单数量")
|
private Integer receiptCount = 0;
|
|
// @ApiModelProperty(value = "待评价数量")
|
private Integer awaitReplyCount = 0;
|
|
// @ApiModelProperty(value = "退款中数量")
|
private Integer refundCount = 0;
|
}
|