admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
fanli/src/main/java/com/yeshi/fanli/entity/order/CommonOrder.java
@@ -36,6 +36,9 @@
   public final static String TYPE_INVITE = "http://ec-1255749512.file.myqcloud.com/resource/order/icon_invite.png";
   public final static String TYPE_SHARE = "http://ec-1255749512.file.myqcloud.com/resource/order/icon_share.png";
   public final static int ORDER_TYPE_ZIGOU = 1;// 自购
   public final static int ORDER_TYPE_SHARE = 20;// 分享
   @Column(name = "co_id")
   private Long id;
@@ -106,6 +109,10 @@
   @Column(name = "co_trade_id")
   private String tradeId;
   // 状态说明
   @Column(name = "co_state_desc")
   private String stateDesc;
   // 创建时间
   @Column(name = "co_create_time")
   private Date createTime;
@@ -113,6 +120,28 @@
   // 更新时间
   @Column(name = "co_update_time")
   private Date updateTime;
   @Column(name = "co_urank")
   private Integer urank;// 用户等级 100-为超级会员
   @Column(name = "co_child_source_type")
   private String childSourceType;// 子来源类型
   public String getChildSourceType() {
      return childSourceType;
   }
   public void setChildSourceType(String childSourceType) {
      this.childSourceType = childSourceType;
   }
   public Integer getUrank() {
      return urank;
   }
   public void setUrank(Integer urank) {
      this.urank = urank;
   }
   public CommonOrder() {
@@ -274,4 +303,12 @@
      this.tradeId = tradeId;
   }
   public String getStateDesc() {
      return stateDesc;
   }
   public void setStateDesc(String stateDesc) {
      this.stateDesc = stateDesc;
   }
}