sys_post.go 1.1 KB

123456789101112131415161718192021222324
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-04-07 23:26:21
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // SysPost is the golang structure for table sys_post.
  9. type SysPost struct {
  10. PostId uint64 `json:"postId" description:"岗位ID"`
  11. PostCode string `json:"postCode" description:"岗位编码"`
  12. PostName string `json:"postName" description:"岗位名称"`
  13. PostSort int `json:"postSort" description:"显示顺序"`
  14. Status uint `json:"status" description:"状态(0正常 1停用)"`
  15. Remark string `json:"remark" description:"备注"`
  16. CreatedBy uint64 `json:"createdBy" description:"创建人"`
  17. UpdatedBy uint64 `json:"updatedBy" description:"修改人"`
  18. CreatedAt *gtime.Time `json:"createdAt" description:"创建时间"`
  19. UpdatedAt *gtime.Time `json:"updatedAt" description:"修改时间"`
  20. DeletedAt *gtime.Time `json:"deletedAt" description:"删除时间"`
  21. }