wlzboy
6 天以前 09e6dc3fb7266620fafb5e341808a8eb36e080a1
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java
@@ -104,6 +104,12 @@
    /** 微信昵称 */
    private String wechatNickname;
    
    /** 企业微信用户ID */
    private String qyWechatUserId;
    /** 企业微信用户ID更新时间 */
    private Date qyWechatUpdateTime;
    /** 是否可查看所有咨询单(0否 1是) */
    @Excel(name = "可查看所有咨询单", readConverterExp = "0=否,1=是")
    private String canViewAllConsult;
@@ -368,6 +374,26 @@
        this.wechatNickname = wechatNickname;
    }
    
    public String getQyWechatUserId()
    {
        return qyWechatUserId;
    }
    public void setQyWechatUserId(String qyWechatUserId)
    {
        this.qyWechatUserId = qyWechatUserId;
    }
    public Date getQyWechatUpdateTime()
    {
        return qyWechatUpdateTime;
    }
    public void setQyWechatUpdateTime(Date qyWechatUpdateTime)
    {
        this.qyWechatUpdateTime = qyWechatUpdateTime;
    }
    public String getCanViewAllConsult()
    {
        return canViewAllConsult;
@@ -406,6 +432,8 @@
            .append("openId", getOpenId())
            .append("unionId", getUnionId())
            .append("wechatNickname", getWechatNickname())
            .append("qyWechatUserId", getQyWechatUserId())
            .append("qyWechatUpdateTime", getQyWechatUpdateTime())
            .append("canViewAllConsult", getCanViewAllConsult())
            .toString();