yujian
2019-08-27 d8359ddb48dab5cc797a9d552e11fde571f4920c
fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgOrderDetail.java
@@ -22,7 +22,7 @@
   public final static int STATE_SX = 4;// 未付款/已退款
   public enum MsgTypeOrderTypeEnum {
      fanli("返利订单"), share("分享订单"), invite("邀请订单");
      fanli("返利订单"), share("分享订单"), invite("邀请订单"), found("订单找回");
      private final String desc;
      private MsgTypeOrderTypeEnum(String desc) {
@@ -42,6 +42,8 @@
   private MsgTypeOrderTypeEnum type;// 消息类型
   @Column(name = "mo_order_id")
   private String orderId;// 订单号
   @Column(name = "mo_order_type")
   private Integer orderType;// 订单类型
   @Column(name = "mo_state")
   private Integer state;// 状态
   @Column(name = "mo_goods_count")
@@ -50,6 +52,8 @@
   private BigDecimal payMoney;// 付款金额
   @Column(name = "mo_hongbao_money")
   private BigDecimal hongBaoMoney;// 佣金
   @Column(name = "mo_happen_date")
   private Date happendDate;// 发生时间
   @Column(name = "mo_beizhu")
   private String beiZhu;
   @Column(name = "mo_read")
@@ -155,4 +159,20 @@
      this.updateTime = updateTime;
   }
   public Date getHappendDate() {
      return happendDate;
   }
   public void setHappendDate(Date happendDate) {
      this.happendDate = happendDate;
   }
   public Integer getOrderType() {
      return orderType;
   }
   public void setOrderType(Integer orderType) {
      this.orderType = orderType;
   }
}