| package com.matrix.system.fenxiao.vo; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.Date; | 
|   | 
| @Data | 
| public class ShopSalesmanApplyVo { | 
|   | 
|     /** | 
|      * 审核状态-1、待审核 | 
|      */ | 
|     public static final int APPLY_STATUS_DSH = 1; | 
|     /** | 
|      * 审核状态-2通过 | 
|      */ | 
|     public static final int APPLY_STATUS_TG= 2; | 
|     /** | 
|      * 审核状态-3未通过 | 
|      */ | 
|     public static final int APPLY_STATUS_WTG = 3; | 
|     /** | 
|      * 审核状态-4系统删除 | 
|      */ | 
|     public static final int APPLY_STATUS_XTQX = 4; | 
|   | 
|   | 
|     /** | 
|      * 申请方式1、自主申请 | 
|      */ | 
|     public static  final  int APPLY_WAY_SELF=1; | 
|     /** | 
|      * 申请方式2、自动添加 | 
|      */ | 
|     public static  final  int APPLY_WAY_AUTO_ADD=2; | 
|     /** | 
|      * 申请方式3上级邀请 | 
|      */ | 
|     public static  final  int APPLY_WAY_INVITATION=3; | 
|     /** | 
|      * 申请方式 4、手动添加 | 
|      */ | 
|     public static  final  int APPLY_WAY_HAND_ADD=4; | 
|   | 
|     @ApiModelProperty(value = "申请记录ID") | 
|     private Long id; | 
|   | 
|     @ApiModelProperty(value = "申请方式1、自主申请,2、自动添加,3上级邀请,4、手动添加(来源)") | 
|     private Integer  applyWay; | 
|   | 
|     @ApiModelProperty(value = "申请用户id") | 
|     private String  userId; | 
|      | 
|   | 
|     @ApiModelProperty(value = "邀请用户ID") | 
|     private String  parentUserId; | 
|      | 
|   | 
|     @ApiModelProperty(value = "申请状态1、待审核,2通过,3未通过") | 
|     private Integer  applyStatus; | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     private String  remark; | 
|      | 
|     /** | 
|      * 公司ID | 
|      */ | 
|     @ApiModelProperty(hidden = true) | 
|     private Long  companyId; | 
|      | 
|     @ApiModelProperty(value = "分销员") | 
|     private String nickname; | 
|     @ApiModelProperty(value = "头像") | 
|     private String avatarUrl; | 
|     @ApiModelProperty(value = "注册邀请人") | 
|     private String parentUser; | 
|     @ApiModelProperty(value = "当前上级") | 
|     private String parentUserNow; | 
|     @ApiModelProperty(value = "推广客户") | 
|     private Integer lowerLevelNum; | 
|     @ApiModelProperty(value = "邀请下级") | 
|     private Integer invitedNum; | 
|   | 
|     @ApiModelProperty(value = "累计收益") | 
|     private BigDecimal totalRevenue; | 
|     @ApiModelProperty(value = "待结算") | 
|     private BigDecimal balance; | 
|     @ApiModelProperty(value = "等级") | 
|     private String grade; | 
|      | 
|     @ApiModelProperty(value = "加入时间") | 
|     private Date createTime; | 
|     @ApiModelProperty(value = "状态") | 
|     private Integer state; | 
| } |