fwq
2024-02-07 a78be9d6f915c8d4c1e04884335f3d94add9b632
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package com.hz.phis.dt.user;
 
import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**用户详情数据返回实体*/
@Data
public class UserDt {
    /**标识*/
    private String id;
    /**ciq会员号*/
    private String CIQ;
    /**名称*/
    private String name;
    /**手机号*/
    private String tel;
    /**生日yyyy-MM-dd*/
    private String birthDay;
    /**领建系统的id*/
    private String apiId;
    /**用户会员名称*/
    private String userLevel;
    /**用户会员等级编码*/
    private String hisNo;
    /**用户会员等级id*/
    private String memberLevelId;
    /**用户会员等级名称*/
    private String memberName;
    /**用户会员等级图标*/
    private String memberImg;
    /**储值金*/
    private BigDecimal storedValueFund;
    /**增值金*/
    private BigDecimal valueAddedFund;
    /**积分*/
    private BigDecimal integral;
    /**来源id,顶级*/
    private String channelId;
    /**来源,顶级*/
    private String channelType;
    /**二级来源id,末级*/
    private String channel2Id;
    /**二级来源,末级*/
    private String channelType2;
    /**邀请人id */
    private String inviteeId;
    /**渠道来源类型(UserChannelType) */
    private String channelCategory;
    /**所属门店*/
    private String shopId;
    /**所属门店名称*/
    private String shopName;
    /**用户角色*/
    private String userRole;
    /**用户类型*/
    private String userType;
    /**所属顾问(销售顾问)*/
    private String hisCorpUserId;
    /**所属顾问(销售顾问)*/
    private String hisCorpUser;
    /**性别*/
    private Integer gender;
    /**职业类型名称*/
    private String professionTypeName;
    /**微信号*/
    private String wechat;
    /**邮箱*/
    private String email;
    /**头像*/
    private String imgUrl;
    private String hisId;
    private String userBelongingType;
     //电网咨询顾问(TMK) (Employee id)
    private String internetCorpUserId;
    //所属护士
    private String nurseCorpUserId;
    //第一次到店时间
    private Date firstArriveTime;
    //第一次下单时间(结账成功的时间)
    private Date firstPayOrderTime;
    //最后一次执行时间
    private Date lastDeductionTime;
    //openId
    private String openId;
    //公众号openId
    private String gzhOpenId;
    //是否含有热玛吉项目
    private Boolean isHaveRmj = false;
 
}