From f974bf528f0fd1f7316bdb3f06be8004e8db9f15 Mon Sep 17 00:00:00 2001
From: wangwh <2397901735@qq.com>
Date: Wed, 21 Aug 2024 17:24:07 +0800
Subject: [PATCH] 用户中心部分迁移1
---
dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/domain/po/CtDept.java | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/domain/po/CtDept.java b/dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/domain/po/CtDept.java
index 37b788a..3203b86 100644
--- a/dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/domain/po/CtDept.java
+++ b/dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/domain/po/CtDept.java
@@ -7,6 +7,7 @@
import lombok.Data;
import java.util.Date;
+import java.util.List;
/**
* @title: 客户部门表数据库对应关系类
@@ -105,4 +106,22 @@
@TableField(value = "update_time")
private Date updateTime;
+ /**
+ * 人员数量
+ */
+ @TableField(exist = false)
+ private Integer countCtUser;
+
+ /**
+ * 部门下的人员
+ */
+ @TableField(exist = false)
+ private List<CtUser> matchUsers;
+
+ /**
+ * 子部门
+ */
+ @TableField(exist = false)
+ private List<CtDept> children;
+
}
--
Gitblit v1.8.0