sys_post.go 929 B

1234567891011121314151617181920212223242526
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-04-07 23:26:21
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // SysPost is the golang structure of table sys_post for DAO operations like Where/Data.
  10. type SysPost struct {
  11. g.Meta `orm:"table:sys_post, do:true"`
  12. PostId interface{} // 岗位ID
  13. PostCode interface{} // 岗位编码
  14. PostName interface{} // 岗位名称
  15. PostSort interface{} // 显示顺序
  16. Status interface{} // 状态(0正常 1停用)
  17. Remark interface{} // 备注
  18. CreatedBy interface{} // 创建人
  19. UpdatedBy interface{} // 修改人
  20. CreatedAt *gtime.Time // 创建时间
  21. UpdatedAt *gtime.Time // 修改时间
  22. DeletedAt *gtime.Time // 删除时间
  23. }