plat_task_handle.go 2.0 KB

12345678910111213141516171819202122232425262728293031
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. import (
  6. "github.com/gogf/gf/os/gtime"
  7. )
  8. // PlatTaskHandle is the golang structure for table plat_task_handle.
  9. type PlatTaskHandle struct {
  10. ID int `orm:"ID,primary" json:"iD"` // 主键
  11. TaskId int `orm:"task_id" json:"taskId"` // 任务ID
  12. TaskStatus string `orm:"task_status" json:"taskStatus"` // 任务状态(10打开20关闭)
  13. Step int `orm:"step" json:"step"` // 步骤号(10接收 15暂存 20提交 30审批(督办人) 40评价(监办人))
  14. MainUserId int `orm:"main_user_id" json:"mainUserId"` // 处理人ID
  15. OwnerUserId string `orm:"owner_user_id" json:"ownerUserId"` // 团队成员ID
  16. HandleUserId int `orm:"handle_user_id" json:"handleUserId"` // 处理人ID
  17. HandleDate *gtime.Time `orm:"handle_date" json:"handleDate"` // 处理时间
  18. HandleStatus string `orm:"handle_status" json:"handleStatus"` // 处理结果(10接收20提交30审批通过40审批退回)
  19. HandleDesc string `orm:"handle_desc" json:"handleDesc"` // 处理说明
  20. Remark string `orm:"remark" json:"remark"` // 备注
  21. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建者
  22. CreatedName string `orm:"created_name" json:"createdName"` // 创建人
  23. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  24. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新者
  25. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
  26. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  27. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
  28. }