|
@@ -1,5 +1,6 @@
|
|
|
package cn.ezhizao.project.system.domain;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import cn.ezhizao.common.xss.Xss;
|
|
|
import cn.ezhizao.framework.aspectj.lang.annotation.Excel;
|
|
@@ -134,12 +135,24 @@ public class SysUser extends BaseEntity {
|
|
|
private Integer isFormman;
|
|
|
private Integer isYardman;
|
|
|
private Integer isEdit;
|
|
|
-
|
|
|
+ /**
|
|
|
+ * 部门ID
|
|
|
+ */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Long deptId;
|
|
|
@Override
|
|
|
public Long getTenantId() {
|
|
|
return tenantId;
|
|
|
}
|
|
|
|
|
|
+ public Long getDeptId() {
|
|
|
+ return deptId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDeptId(Long deptId) {
|
|
|
+ this.deptId = deptId;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public void setTenantId(Long tenantId) {
|
|
|
this.tenantId = tenantId;
|