feedback_flow.go 1.4 KB

123456789101112131415161718192021222324
  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. // FeedbackFlow is the golang structure for table feedback_flow.
  9. type FeedbackFlow struct {
  10. Id int `orm:"Id,primary" json:"id"` // Id
  11. FeedbackId int `orm:"FeedbackId" json:"feedbackId"` // 反馈Id
  12. Type int `orm:"Type" json:"type"` // 流程节点 1 发起 2 转交 3 处理 4 重新激活
  13. Status int `orm:"Status" json:"status"` // 处理结果 1 成功
  14. ProcessById int `orm:"ProcessById" json:"processById"` // 处理人 Id
  15. ProcessByName string `orm:"ProcessByName" json:"processByName"` // 处理人名称
  16. ProcessType string `orm:"ProcessType" json:"processType"` // 处理方式,流程节点为 2 时存在处理方式
  17. Note string `orm:"Note" json:"note"` // 备注
  18. CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
  19. UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
  20. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
  21. }