用户表添加教职工关联

This commit is contained in:
cjw 2024-05-31 09:46:14 +08:00
parent 36a7b6e8fb
commit 7c8281a35e
3 changed files with 15 additions and 0 deletions

View File

@ -32,6 +32,11 @@ public class SysUser extends TenantEntity {
*/
private Long deptId;
/**
* 教职工ID
*/
private Long teacherId;
/**
* 用户账号
*/

View File

@ -34,6 +34,11 @@ public class SysUserBo extends BaseEntity {
*/
private Long deptId;
/**
* 教职工ID
*/
private Long teacherId;
/**
* 用户账号
*/

View File

@ -43,6 +43,11 @@ public class SysUserVo implements Serializable {
*/
private Long deptId;
/**
* 教职工ID
*/
private Long teacherId;
/**
* 用户账号
*/