yujian
2019-08-27 d8359ddb48dab5cc797a9d552e11fde571f4920c
fanli/src/main/java/com/yeshi/fanli/entity/bus/msg/MsgMoneyDetail.java
@@ -19,7 +19,8 @@
@Table("yeshi_ec_msg_money")
public class MsgMoneyDetail {
   public enum MsgTypeMoneyTypeEnum {
      share("分享奖金"), invite("邀请奖金"), fanli("返利到账"), extract("提现"), extractValid("提现账号验证");
      share("分享奖金"), invite("邀请奖金"), fanli("返利到账"), extract("提现"), extractValid("提现账号验证"), shareWeiQuan(
            "分享奖金扣除"), inviteWeiQuan("邀请奖金扣除"), fanliWeiQuan("返利扣除"), orderReward("返利奖励"), systemEqualize("系统补齐");
      private final String desc;
      private MsgTypeMoneyTypeEnum(String desc) {
@@ -43,6 +44,8 @@
   private Integer goodsCount;// 商品数
   @Column(name = "mm_order_id")
   private String orderId;// 订单号(返利适用)
   @Column(name = "mm_order_type")
   private Integer orderType;
   @Column(name = "mm_source_id")
   private Extract extract;// 提现详情
   private AlipayAccountValidNormalHistory alipayAccountValid;// 提现账号验证详情
@@ -181,4 +184,12 @@
      this.alipayAccountValid = alipayAccountValid;
   }
   public Integer getOrderType() {
      return orderType;
   }
   public void setOrderType(Integer orderType) {
      this.orderType = orderType;
   }
}