1
This commit is contained in:
30
internal/app/system/model/do/sys_dept.go
Normal file
30
internal/app/system/model/do/sys_dept.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user