admin
2019-11-16 a6f34b99ee20e528b766c8ed5a61bd9c5aa0e7ae
fanli/src/main/java/com/yeshi/fanli/vo/order/CommonOrderVO.java
@@ -9,6 +9,7 @@
import com.google.gson.annotations.Expose;
import com.yeshi.fanli.entity.order.CommonOrder;
import com.yeshi.fanli.vo.msg.ClientTextStyleVO;
/**
 * 订单-简版
@@ -40,7 +41,7 @@
    // 券红包金额
    @Expose
    private BigDecimal couponMoney;
    //   1 淘宝 2 天猫
    // 1 淘宝 2 天猫
     @Expose
    private Integer orderType;
    // 红包状态
@@ -52,7 +53,7 @@
   // 红包类型图片链接
    @Expose
    private String hongBaoTypePic;
    // 订单: 自购 分享 邀请
    // 订单产生的方式: 自购 分享 邀请
     @Expose
    private String orderOrigin;
   // 订单状态
@@ -84,6 +85,16 @@
    @Expose
    private Map<String, Object> rewardDetail;
    
    // 维权信息
    @Expose
    private WeiQuanInfo weiQuanInfo;
    // 补贴信息
    @Expose
    private ClientTextStyleVO subsidy;
    // 补贴解释信息
    @Expose
    private List<String> subsidyList;
    
    
    // 直接收益人-ID
@@ -109,6 +120,8 @@
    private String weiQuanState;//维权状态
    
    private String weiQuanBackMoney;//维权资金
    private Integer otherState; // 1免单
    
   public String getWeiQuanState() {
      return weiQuanState;
@@ -369,4 +382,35 @@
      this.hongbaoId = hongbaoId;
   }
   public Integer getOtherState() {
      return otherState;
   }
   public void setOtherState(Integer otherState) {
      this.otherState = otherState;
   }
   public WeiQuanInfo getWeiQuanInfo() {
      return weiQuanInfo;
   }
   public void setWeiQuanInfo(WeiQuanInfo weiQuanInfo) {
      this.weiQuanInfo = weiQuanInfo;
   }
   public ClientTextStyleVO getSubsidy() {
      return subsidy;
   }
   public void setSubsidy(ClientTextStyleVO subsidy) {
      this.subsidy = subsidy;
   }
   public List<String> getSubsidyList() {
      return subsidyList;
   }
   public void setSubsidyList(List<String> subsidyList) {
      this.subsidyList = subsidyList;
   }
}