30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
// =================================================================================
|
||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
// =================================================================================
|
||
|
||
package do
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/frame/g"
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
)
|
||
|
||
// SystemDept is the golang structure of table system_dept for DAO operations like Where/Data.
|
||
type SystemDept struct {
|
||
g.Meta `orm:"table:system_dept, do:true"`
|
||
Id interface{} // 部门id
|
||
Name interface{} // 部门名称
|
||
ParentId interface{} // 父部门id
|
||
Sort interface{} // 显示顺序
|
||
LeaderUserId interface{} // 负责人
|
||
Phone interface{} // 联系电话
|
||
Email interface{} // 邮箱
|
||
Status interface{} // 部门状态(0正常 1停用)
|
||
Creator interface{} // 创建者
|
||
CreateTime *gtime.Time // 创建时间
|
||
Updater interface{} // 更新者
|
||
UpdateTime *gtime.Time // 更新时间
|
||
Deleted interface{} // 是否删除
|
||
TenantId interface{} // 租户编号
|
||
}
|