feedback_flow.go 1.2 KB

1234567891011121314151617181920212223
  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:"feebackId"` // 反馈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. Note string `orm:"Note" json:"note"` // 备注
  17. CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
  18. UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
  19. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
  20. }