|
|
|
@@ -2,10 +2,12 @@ package com.iformall.domain.vo; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
|
|
|
import com.iformall.common.SortColumn; |
|
|
|
import com.iformall.domain.po.base.TenantEntity; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
@@ -109,4 +111,25 @@ public class WxOrderCouponVo extends TenantEntity { |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="组合订单编号",name="composeOrderId") |
|
|
|
private Long composeOrderId; |
|
|
|
|
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value="运费",name="freightPrice") |
|
|
|
private Integer freightPrice; |
|
|
|
|
|
|
|
@TableField(exist = false) |
|
|
|
@SortColumn(column = "freight_price") |
|
|
|
private String freightPriceStr; |
|
|
|
|
|
|
|
public String getFreightPriceStr() { |
|
|
|
if(freightPrice!=null) { |
|
|
|
freightPriceStr = new BigDecimal(freightPrice).divide(new BigDecimal(100)).toString(); |
|
|
|
} |
|
|
|
return freightPriceStr; |
|
|
|
} |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value="收货地址",name="shippingAddress") |
|
|
|
private String shippingAddress; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value="配送类型 0:默认(无) 1:自提 2:配送",name="shippingType") |
|
|
|
private Integer shippingType; |
|
|
|
|
|
|
|
} |