package com.ishop.model.vo;
|
|
public class PlatformOrderVo {
|
|
public String getOrderNo() {
|
return orderNo;
|
}
|
|
public void setOrderNo(String orderNo) {
|
this.orderNo = orderNo;
|
}
|
|
public Double getPayPrice() {
|
return payPrice;
|
}
|
|
public void setPayPrice(Double payPrice) {
|
this.payPrice = payPrice;
|
}
|
|
public String getPayType() {
|
return payType;
|
}
|
|
public void setPayType(String payType) {
|
this.payType = payType;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public Integer getRefundStatus() {
|
return refundStatus;
|
}
|
|
public void setRefundStatus(Integer refundStatus) {
|
this.refundStatus = refundStatus;
|
}
|
|
public Integer getCancelStatus() {
|
return cancelStatus;
|
}
|
|
public void setCancelStatus(Integer cancelStatus) {
|
this.cancelStatus = cancelStatus;
|
}
|
|
public Boolean getIsUserDel() {
|
return isUserDel;
|
}
|
|
public void setIsUserDel(Boolean userDel) {
|
isUserDel = userDel;
|
}
|
|
public Boolean getIsMerchantDel() {
|
return isMerchantDel;
|
}
|
|
public void setIsMerchantDel(Boolean merchantDel) {
|
isMerchantDel = merchantDel;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public Integer getLevel() {
|
return level;
|
}
|
|
public void setLevel(Integer level) {
|
this.level = level;
|
}
|
|
public String getUserRemark() {
|
return userRemark;
|
}
|
|
public void setUserRemark(String userRemark) {
|
this.userRemark = userRemark;
|
}
|
|
public String getMerRemark() {
|
return merRemark;
|
}
|
|
public void setMerRemark(String merRemark) {
|
this.merRemark = merRemark;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public Integer getShippingType() {
|
return shippingType;
|
}
|
|
public void setShippingType(Integer shippingType) {
|
this.shippingType = shippingType;
|
}
|
|
public String getNickName() {
|
return nickName;
|
}
|
|
public void setNickName(String nickName) {
|
this.nickName = nickName;
|
}
|
|
public Boolean getIsLogoff() {
|
return isLogoff;
|
}
|
|
public void setIsLogoff(Boolean logoff) {
|
isLogoff = logoff;
|
}
|
|
public String getMerName() {
|
return merName;
|
}
|
|
public void setMerName(String merName) {
|
this.merName = merName;
|
}
|
|
// @ApiModelProperty(value = "订单号")
|
private String orderNo;
|
|
// @ApiModelProperty(value = "实际支付金额")
|
private Double payPrice;
|
|
// @ApiModelProperty(value = "支付方式:weixin,alipay,yue")
|
private String payType;
|
|
// @ApiModelProperty(value = "订单状态(0:待支付,1:待发货,2:部分发货, 3:待核销,4:待收货,5:已收货,6:已完成,9:已取消)")
|
private Integer status;
|
|
// @ApiModelProperty(value = "退款状态:0 未退款 1 申请中 2 部分退款 3 已退款")
|
private Integer refundStatus;
|
|
// @ApiModelProperty(value = "取消状态:0-未取消,1-系统取消,2-用户取消")
|
private Integer cancelStatus;
|
|
// @ApiModelProperty(value = "用户是否删除")
|
private Boolean isUserDel;
|
|
// @ApiModelProperty(value = "商户是否删除")
|
private Boolean isMerchantDel;
|
|
// @ApiModelProperty(value = "订单类型:0-普通订单,1-视频号订单")
|
private Integer type;
|
|
// @ApiModelProperty(value = "订单等级:0-主订单,1-商户订单,2-商户子订单")
|
private Integer level;
|
|
// @ApiModelProperty(value = "用户备注")
|
private String userRemark;
|
|
// @ApiModelProperty(value = "商户备注")
|
private String merRemark;
|
|
// @ApiModelProperty(value = "创建时间")
|
private String createTime;
|
|
// @ApiModelProperty(value = "配送方式 1=快递 ,2=门店自提")
|
private Integer shippingType;
|
|
// @ApiModelProperty(value = "用户昵称")
|
private String nickName;
|
|
// @ApiModelProperty(value = "用户是否注销")
|
private Boolean isLogoff;
|
|
// @ApiModelProperty(value = "商户名称")
|
private String merName;
|
}
|