package com.ishop.model.vo;
|
|
import java.util.List;
|
|
public class PreOrderVo {
|
|
public Double getProTotalFee() {
|
return proTotalFee;
|
}
|
|
public void setProTotalFee(Double proTotalFee) {
|
this.proTotalFee = proTotalFee;
|
}
|
|
public Integer getOrderProNum() {
|
return orderProNum;
|
}
|
|
public void setOrderProNum(Integer orderProNum) {
|
this.orderProNum = orderProNum;
|
}
|
|
public Double getFreightFee() {
|
return freightFee;
|
}
|
|
public void setFreightFee(Double freightFee) {
|
this.freightFee = freightFee;
|
}
|
|
public Double getCouponFee() {
|
return couponFee;
|
}
|
|
public void setCouponFee(Double couponFee) {
|
this.couponFee = couponFee;
|
}
|
|
public Double getPayFee() {
|
return payFee;
|
}
|
|
public void setPayFee(Double payFee) {
|
this.payFee = payFee;
|
}
|
|
public Integer getAddressId() {
|
return addressId;
|
}
|
|
public void setAddressId(Integer addressId) {
|
this.addressId = addressId;
|
}
|
|
public Integer getUserIntegral() {
|
return userIntegral;
|
}
|
|
public void setUserIntegral(Integer userIntegral) {
|
this.userIntegral = userIntegral;
|
}
|
|
public Double getUserBalance() {
|
return userBalance;
|
}
|
|
public void setUserBalance(Double userBalance) {
|
this.userBalance = userBalance;
|
}
|
|
public List<PreMerchantOrderVo> getMerchantOrderVoList() {
|
return merchantOrderVoList;
|
}
|
|
public void setMerchantOrderVoList(List<PreMerchantOrderVo> merchantOrderVoList) {
|
this.merchantOrderVoList = merchantOrderVoList;
|
}
|
|
public List<Long> getCartIdList() {
|
return cartIdList;
|
}
|
|
public void setCartIdList(List<Long> cartIdList) {
|
this.cartIdList = cartIdList;
|
}
|
|
public Boolean getIntegralDeductionSwitch() {
|
return integralDeductionSwitch;
|
}
|
|
public void setIntegralDeductionSwitch(Boolean integralDeductionSwitch) {
|
this.integralDeductionSwitch = integralDeductionSwitch;
|
}
|
|
public Boolean getIsUseIntegral() {
|
return isUseIntegral;
|
}
|
|
public void setIsUseIntegral(Boolean useIntegral) {
|
isUseIntegral = useIntegral;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
/**
|
* 是否:虚拟商品,无需发货,直接完成订单?
|
* @return
|
* @date 2023-09-09
|
*/
|
public Boolean getAutoShippingDone() {
|
return autoShippingDone;
|
}
|
|
public void setAutoShippingDone(Boolean autoShippingDone) {
|
this.autoShippingDone = autoShippingDone;
|
}
|
|
private Boolean autoShippingDone = false;
|
// @ApiModelProperty(value = "商品总计金额")
|
private Double proTotalFee = 0d;
|
|
// @ApiModelProperty(value = "订单商品数量")
|
private Integer orderProNum;
|
|
// @ApiModelProperty(value = "运费金额")
|
private Double freightFee;
|
|
// @ApiModelProperty(value = "优惠金额")
|
private Double couponFee = 0d;
|
|
// @ApiModelProperty(value = "实际支付金额")
|
private Double payFee;
|
|
// @ApiModelProperty(value = "地址id")
|
private Integer addressId;
|
|
// @ApiModelProperty(value = "用户剩余积分")
|
private Integer userIntegral;
|
|
// @ApiModelProperty(value = "用户可用余额")
|
private Double userBalance;
|
|
// @ApiModelProperty(value = "商户订单数组")
|
private List<PreMerchantOrderVo> merchantOrderVoList;
|
|
// @ApiModelProperty(value = "秒杀商品Id")
|
// private Integer seckillId = 0;
|
//
|
// @ApiModelProperty(value = "砍价商品Id")
|
// private Integer bargainId = 0;
|
//
|
// @ApiModelProperty(value = "用户砍价活动id")
|
// private Integer bargainUserId;
|
//
|
// @ApiModelProperty(value = "拼团商品Id")
|
// private Integer combinationId = 0;
|
//
|
// @ApiModelProperty(value = "拼团团长Id")
|
// private Integer pinkId = 0;
|
|
// @ApiModelProperty(value = "购物车编号列表")
|
private List<Long> cartIdList;
|
|
// @ApiModelProperty(value = "积分抵扣开关")
|
private Boolean integralDeductionSwitch;
|
|
// @ApiModelProperty(value = "用户是否使用积分抵扣")
|
private Boolean isUseIntegral;
|
|
// @ApiModelProperty(value = "订单类型:0-普通订单,1-视频号订单,2-秒杀订单")
|
private Integer type = 0;
|
}
|