This commit is contained in:
2026-03-18 10:19:42 +08:00
parent 2526ad4414
commit e58dd3529d
267 changed files with 25279 additions and 2 deletions

View File

@@ -0,0 +1,30 @@
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// SysDept is the golang structure of table sys_dept for DAO operations like Where/Data.
type SysDept struct {
g.Meta `orm:"table:sys_dept, do:true"`
DeptId interface{} // 部门id
ParentId interface{} // 父部门id
Ancestors interface{} // 祖级列表
DeptName interface{} // 部门名称
OrderNum interface{} // 显示顺序
Leader interface{} // 负责人
Phone interface{} // 联系电话
Email interface{} // 邮箱
Status interface{} // 部门状态0正常 1停用
CreatedBy interface{} // 创建人
UpdatedBy interface{} // 修改人
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 修改时间
DeletedAt *gtime.Time // 删除时间
TenantId interface{} // 租户id
}