6
0

feedback.go 1.8 KB

123456789101112131415161718192021222324252627
  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. // Feedback is the golang structure for table feedback.
  9. type Feedback struct {
  10. Id int `orm:"Id,primary" json:"id"` // Id
  11. Type string `orm:"Type" json:"type"` // 反馈类型
  12. Status int `orm:"Status" json:"status"` // 反馈状态 1 未处理 2 已处理
  13. Content string `orm:"Content" json:"content"` // 反馈内容
  14. CurrentProcessorId int `orm:"CurrentProcessorId" json:"currentProcessorId"` // 当前处理人 Id
  15. CreatedById int `orm:"CreatedById" json:"createdById"` // 创建者 Id
  16. CreatedByName string `orm:"CreatedByName" json:"createdByName"` // 创建者用户名
  17. CreatedByMobile string `orm:"CreatedByMobile" json:"createdByMobile"` // 创建者联系方式
  18. CreatedByEmail string `orm:"CreatedByEmail" json:"createdByEmail"` // 创建者邮箱
  19. CreatedByDeptId int `orm:"CreatedByDeptId" json:"createdByDeptId"` // 创建者部门 Id
  20. CreatedByDeptName string `orm:"CreatedByDeptName" json:"createdByDeptName"` // 创建者部门名称
  21. CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
  22. UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
  23. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
  24. }