无关风月
2025-06-17 9e2da8d29be2a513ceab812d279534814dc545bb
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java
@@ -33,7 +33,7 @@
    /** 部门ID */
    //@Excel(name = "部门编号", type = Type.IMPORT)
    @ApiModelProperty(value = "部门id")
    private String deptId;
    private Long deptId;
    /** 用户账号 */
    //@Excel(name = "登录名称")
@@ -41,9 +41,12 @@
    private String userName;
    @TableField("dept_type")
    @ApiModelProperty(value = "部门类型 1项目部 2部门")
    private String deptType;
    private Integer deptType;
    @TableField("code")
    @ApiModelProperty(value = "编号")
    private Integer code;
    @TableField("templateId")
    @ApiModelProperty(value = "部门类型 1项目部 2部门")
    @ApiModelProperty(value = "所属任务模板id")
    private String templateId;
    /** 用户昵称 */
@@ -188,12 +191,12 @@
        return userId != null && 1L == userId;
    }
    public String getDeptId()
    public Long getDeptId()
    {
        return deptId;
    }
    public void setDeptId(String deptId)
    public void setDeptId(Long deptId)
    {
        this.deptId = deptId;
    }