package com.ishop.model.vo; import java.io.Serializable; import java.util.List; /** * 预下单商户订单Vo对象 * @date 2023-07-06 */ public class PreMerchantOrderVo implements Serializable { public Integer getMerId() { return merId; } public void setMerId(Integer merId) { this.merId = merId; } public String getMerName() { return merName; } public void setMerName(String merName) { this.merName = merName; } public Integer getProTotalNum() { return proTotalNum; } public void setProTotalNum(Integer proTotalNum) { this.proTotalNum = proTotalNum; } public Double getProTotalFee() { return proTotalFee; } public void setProTotalFee(Double proTotalFee) { this.proTotalFee = proTotalFee; } public Double getFreightFee() { return freightFee; } public void setFreightFee(Double freightFee) { this.freightFee = freightFee; } public Long getUserCouponId() { return userCouponId; } public void setUserCouponId(Long userCouponId) { this.userCouponId = userCouponId; } public Double getCouponFee() { return couponFee; } public void setCouponFee(Double couponFee) { this.couponFee = couponFee; } public Boolean getTakeTheirSwitch() { return takeTheirSwitch; } public void setTakeTheirSwitch(Boolean takeTheirSwitch) { this.takeTheirSwitch = takeTheirSwitch; } public Integer getShippingType() { return shippingType; } public void setShippingType(Integer shippingType) { this.shippingType = shippingType; } public String getRealName() { return realName; } public void setRealName(String realName) { this.realName = realName; } public String getUserPhone() { return userPhone; } public void setUserPhone(String userPhone) { this.userPhone = userPhone; } public String getUserAddress() { return userAddress; } public void setUserAddress(String userAddress) { this.userAddress = userAddress; } public Integer getUseIntegral() { return useIntegral; } public void setUseIntegral(Integer useIntegral) { this.useIntegral = useIntegral; } public Double getIntegralPrice() { return integralPrice; } public void setIntegralPrice(Double integralPrice) { this.integralPrice = integralPrice; } public List getOrderInfoList() { return orderInfoList; } public void setOrderInfoList(List orderInfoList) { this.orderInfoList = orderInfoList; } // @ApiModelProperty(value = "商户id") private Integer merId; // @ApiModelProperty(value = "商户名称") private String merName; // @ApiModelProperty(value = "商品总数") private Integer proTotalNum; // @ApiModelProperty(value = "商品总计金额") private Double proTotalFee; // @ApiModelProperty(value = "运费金额") private Double freightFee; // @ApiModelProperty(value = "优惠券编号(选择优惠券时有值,不选时为0") private Long userCouponId = 0L; // @ApiModelProperty(value = "优惠金额") private Double couponFee = 0d; // @ApiModelProperty(value = "自提开关:0-关闭,1-开启") private Boolean takeTheirSwitch; // @ApiModelProperty(value = "快递类型: 1-快递配送,2-到店自提") private Integer shippingType = 1; // @ApiModelProperty(value = "收货人姓名") private String realName; // @ApiModelProperty(value = "收货人电话") private String userPhone; // @ApiModelProperty(value = "收货详细地址") private String userAddress; // @ApiModelProperty(value = "使用积分") private Integer useIntegral = 0; // @ApiModelProperty(value = "积分抵扣金额") private Double integralPrice = 0d; // @ApiModelProperty(value = "商户订单详情数组") private List orderInfoList; }