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