mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-31 00:38:37 +08:00
24 lines
780 B
Go
24 lines
780 B
Go
// =================================================================================
|
|
// 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"
|
|
)
|
|
|
|
// AdminPost is the golang structure of table hg_admin_post for DAO operations like Where/Data.
|
|
type AdminPost struct {
|
|
g.Meta `orm:"table:hg_admin_post, do:true"`
|
|
Id interface{} // 岗位ID
|
|
Code interface{} // 岗位编码
|
|
Name interface{} // 岗位名称
|
|
Remark interface{} // 备注
|
|
Sort interface{} // 显示顺序
|
|
Status interface{} // 状态
|
|
CreatedAt *gtime.Time // 创建时间
|
|
UpdatedAt *gtime.Time // 更新时间
|
|
}
|