You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// =================================================================================
|
|
|
|
// 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 // 删除时间
|
|
|
|
}
|