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/CtUnit.java |   33 ++++++++++++++++++++++++++++++++-
 1 files changed, 32 insertions(+), 1 deletions(-)

diff --git a/dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/domain/po/CtUnit.java b/dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/domain/po/CtUnit.java
index cec1cd6..ef27bae 100644
--- a/dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/domain/po/CtUnit.java
+++ b/dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/domain/po/CtUnit.java
@@ -7,13 +7,14 @@
 import lombok.Data;
 
 import java.util.Date;
+import java.util.List;
 
 /**
  * @title: 客户组织信息表数据库对应关系类
  * @description: PO中的属性与数据表是一一对应关系,如需根据业务处理不同,请使用BO对象。
  * @company:hugeinfo
  * @author: liyj
- * @time: 2024-08-17 15:30:57
+ * @time: 2024-08-19 20:04:19
  * @version 1.0.0
  */
 @TableName(value = "dyh_ct_unit")
@@ -231,4 +232,34 @@
     @TableField(value = "update_time")
     private Date updateTime;
 
+    /**
+     * 子部门
+     */
+    @TableField(exist = false)
+    private List<CtDept> ctDepts;
+
+    /**
+     * 部门数量
+     */
+    @TableField(exist = false)
+    private Integer countCtDept;
+
+    /**
+     * 人员数量
+     */
+    @TableField(exist = false)
+    private Integer countCtUser;
+
+    /**
+     * 子组织
+     */
+    @TableField(exist = false)
+    private List<CtUnit> children;
+
+    /**
+     * 组织下未配岗人员
+     */
+    @TableField(exist = false)
+    private List<CtUser> unMatchUsers;
+
 }

--
Gitblit v1.8.0