教育训练处考试制证系统后端
huangzhen
2023-09-12 4c3795f6f131b942d4c48b8351baafee19296976
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java
@@ -29,6 +29,10 @@
    @Excel(name = "部门编号", type = Type.IMPORT)
    private Long deptId;
    private Long districtId;
    private String unit;
    /** 用户账号 */
    @Excel(name = "登录名称")
    private String userName;
@@ -297,11 +301,29 @@
        this.roleId = roleId;
    }
    public Long getDistrictId() {
        return districtId;
    }
    public void setDistrictId(Long districtId) {
        this.districtId = districtId;
    }
    public String getUnit() {
        return unit;
    }
    public void setUnit(String unit) {
        this.unit = unit;
    }
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("userId", getUserId())
            .append("deptId", getDeptId())
            .append("unit", getUnit())
            .append("districtId", getDistrictId())
            .append("userName", getUserName())
            .append("nickName", getNickName())
            .append("email", getEmail())