6
0

feedback_result.go 1.1 KB

12345678910111213141516171819202122
  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. // FeedbackResult is the golang structure for table feedback_result.
  9. type FeedbackResult struct {
  10. Id int `orm:"Id,primary" json:"id"` // Id
  11. FeedbackId int `orm:"FeedbackId" json:"feebackId"` // 反馈Id
  12. ProcessById int `orm:"ProcessById" json:"processById"` // 处理人 Id
  13. ProcessByName string `orm:"ProcessByName" json:"processByName"` // 处理人名称
  14. ProcessType int `orm:"ProcessType" json:"processType"` // 处理方式
  15. ProcessNote string `orm:"ProcessNote" json:"processNote"` // 处理描述
  16. CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
  17. UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
  18. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
  19. }