| 1234567891011121314151617181920212223 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // FeedbackFlow is the golang structure for table feedback_flow.
- type FeedbackFlow struct {
- Id int `orm:"Id,primary" json:"id"` // Id
- FeedbackId int `orm:"FeedbackId" json:"feebackId"` // 反馈Id
- Type int `orm:"Type" json:"type"` // 流程节点 1 发起 2 转交 3 处理 4 重新激活
- Status int `orm:"Status" json:"status"` // 处理结果 1 成功
- ProcessById int `orm:"ProcessById" json:"processById"` // 处理人 Id
- ProcessByName string `orm:"ProcessByName" json:"processByName"` // 处理人名称
- Note string `orm:"Note" json:"note"` // 备注
- CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
- UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
- }
|