This commit is contained in:
孟帅
2025-10-25 00:35:30 +08:00
parent 5ebc33f28b
commit 7313d22cdb
168 changed files with 2349 additions and 1455 deletions

View File

@@ -12,18 +12,18 @@ import (
// AdminDept is the golang structure of table hg_admin_dept for DAO operations like Where/Data.
type AdminDept struct {
g.Meta `orm:"table:hg_admin_dept, do:true"`
Id interface{} // 部门ID
Pid interface{} // 父部门ID
Name interface{} // 部门名称
Code interface{} // 部门编码
Type interface{} // 部门类型
Leader interface{} // 负责人
Phone interface{} // 联系电话
Email interface{} // 邮箱
Level interface{} // 关系树等级
Tree interface{} // 关系树
Sort interface{} // 排序
Status interface{} // 部门状态
Id any // 部门ID
Pid any // 父部门ID
Name any // 部门名称
Code any // 部门编码
Type any // 部门类型
Leader any // 负责人
Phone any // 联系电话
Email any // 邮箱
Level any // 关系树等级
Tree any // 关系树
Sort any // 排序
Status any // 部门状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}