mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-02-01 01:08:39 +08:00
29 lines
973 B
Go
29 lines
973 B
Go
|
// =================================================================================
|
||
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package dto
|
||
|
|
||
|
import (
|
||
|
"github.com/gogf/gf/v2/frame/g"
|
||
|
"github.com/gogf/gf/v2/os/gtime"
|
||
|
)
|
||
|
|
||
|
// 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, dto:true"`
|
||
|
Id interface{} // 部门id
|
||
|
Pid interface{} // 父部门id
|
||
|
Ancestors interface{} // 祖级列表
|
||
|
Name interface{} // 部门名称
|
||
|
Code interface{} // 部门编码
|
||
|
Type interface{} // 部门类型
|
||
|
Leader interface{} // 负责人
|
||
|
Phone interface{} // 联系电话
|
||
|
Email interface{} // 邮箱
|
||
|
Sort interface{} // 排序
|
||
|
Status interface{} // 部门状态
|
||
|
CreatedAt *gtime.Time // 创建时间
|
||
|
UpdatedAt *gtime.Time // 更新时间
|
||
|
}
|