|
|
@@ -11,11 +11,12 @@ import (
|
|
|
// 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
|
|
|
+ FeedbackId int `orm:"FeedbackId" json:"feedbackId"` // 反馈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"` // 处理人名称
|
|
|
+ ProcessType string `orm:"ProcessType" json:"processType"` // 处理方式,流程节点为 2 时存在处理方式
|
|
|
Note string `orm:"Note" json:"note"` // 备注
|
|
|
CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
|
|
|
UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
|