chenjiahe
2022-07-13 7c680b3e59d8b46fa4797f283101476917fa44c6
提交 | 用户 | age
7c680b 1 package com.hz.phis.dt.user;
C 2
3 import lombok.Data;
4
5 import java.math.BigDecimal;
6
7 /**查询用户详情数据*/
8 @Data
9 public class UserDt {
10
11     private String id;
12     private String CIQ;
13     private String name;
14     private String tel;
15     /**生日yyyy-MM-dd*/
16     private String birthDay;
17     /**领建系统的id*/
18     private String apiId;
19     /**用户会员名称*/
20     private String userLevel;
21     /**用户会员等级编码*/
22     private String hisNo;
23     /**用户会员等级id*/
24     private String memberLevelId;
25     /**用户会员等级名称*/
26     private String memberName;
27     /**用户会员等级图标*/
28     private String memberImg;
29     /**储值金*/
30     private BigDecimal storedValueFund;
31     /**增值金*/
32     private BigDecimal valueAddedFund;
33     /**积分*/
34     private BigDecimal integral;
35     /**来源id,顶级*/
36     private String channelId;
37     /**来源,顶级*/
38     private String channelType;
39     /**二级来源id,末级*/
40     private String channel2Id;
41     /**二级来源,末级*/
42     private String channelType2;
43     /**邀请人id */
44     private String inviteeId;
45     /**渠道来源类型(UserChannelType) */
46     private String channelCategory;
47     /**所属门店*/
48     private String shopId;
49     /**用户角色*/
50     private String userRole;
51     /**用户类型*/
52     private String userType;
53 }