wangrenhuang
2023-05-16 c23ebf450afd7d605eec4c1593b473ef7b44acf4
phis-feign/src/main/java/com/hz/phis/dt/user/UserDt.java
@@ -1,16 +1,21 @@
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;
/**查询用户详情数据*/
/**用户详情数据返回实体*/
@Data
public class UserDt {
    /**标识*/
    private String id;
    /**ciq会员号*/
    private String CIQ;
    /**名称*/
    private String name;
    /**手机号*/
    private String tel;
    /**生日yyyy-MM-dd*/
    private String birthDay;
@@ -46,8 +51,31 @@
    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;
}