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; }