problem_info.go 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // 自动生成模板ProblemInfo
  2. package autocode
  3. import (
  4. "github.com/flipped-aurora/gin-vue-admin/server/global"
  5. "github.com/flipped-aurora/gin-vue-admin/server/model/system"
  6. )
  7. // ProblemInfo 结构体
  8. // 如果含有time.Time 请自行import time包
  9. type ProblemInfo struct {
  10. global.GVA_MODEL
  11. Oper uint `json:"oper" form:"oper" gorm:"column:oper;comment:发布人;type:bigint"`
  12. Handler *int `json:"handler" form:"handler" gorm:"column:handler;comment:处理人;type:bigint"`
  13. Imgs string `json:"imgs" form:"imgs" gorm:"column:imgs;comment:关联图片;type:varchar(2000);"`
  14. Video string `json:"video" form:"video" gorm:"column:video;comment:关联视频;type:varchar(255);"`
  15. SiteId uint `json:"siteId" form:"siteId" gorm:"column:site_id;comment:站点id;type:bigint"`
  16. SiteName string `json:"siteName" form:"siteName" gorm:"column:site_name;comment:站点id;type:bigint"`
  17. Position string `json:"position" form:"position" gorm:"column:position;comment:经纬度;type:varchar(255);"`
  18. Matter string `json:"matter" form:"matter" gorm:"column:matter;comment:问题列表;type:varchar(255);"`
  19. SiteType string `json:"siteType" form:"siteType" gorm:"column:site_type;comment:站点类型;type:varchar(255);"`
  20. Status string `json:"status" form:"status" gorm:"column:status;comment:处理状态;type:varchar(255);"`
  21. Region string `json:"region" form:"region" gorm:"column:region;comment:区域;type:varchar(255);"`
  22. HandImgs string `json:"handImgs" form:"handImgs" gorm:"column:hand_imgs;comment:处理图片;type:varchar(255);"`
  23. HandText string `json:"handText" form:"handText" gorm:"column:hand_text;comment:处理内容;type:varchar(255);"`
  24. Department string `json:"department" form:"department" gorm:"column:department;comment:责任部门;type:varchar(255);"`
  25. Remark string `json:"remark" form:"remark" gorm:"column:remark;comment:问题备注;type:varchar(600);"`
  26. MatterList system.SysDictionary `json:"matterList" gorm:"-"`
  27. }
  28. type ProblemInfo1 struct {
  29. global.GVA_MODEL
  30. Oper uint `json:"oper" form:"oper" gorm:"column:oper;comment:发布人;type:bigint"`
  31. Handler *int `json:"handler" form:"handler" gorm:"column:handler;comment:处理人;type:bigint"`
  32. Imgs string `json:"imgs" form:"imgs" gorm:"column:imgs;comment:关联图片;type:varchar(2000);"`
  33. Video string `json:"video" form:"video" gorm:"column:video;comment:关联视频;type:varchar(255);"`
  34. SiteId uint `json:"siteId" form:"siteId" gorm:"column:site_id;comment:站点id;type:bigint"`
  35. SiteName string `json:"siteName" form:"siteName" gorm:"column:site_name;comment:站点id;type:bigint"`
  36. Position string `json:"position" form:"position" gorm:"column:position;comment:经纬度;type:varchar(255);"`
  37. Matter string `json:"matter" form:"matter" gorm:"column:matter;comment:问题列表;type:varchar(255);"`
  38. SiteType string `json:"siteType" form:"siteType" gorm:"column:site_type;comment:站点类型;type:varchar(255);"`
  39. Status string `json:"status" form:"status" gorm:"column:status;comment:处理状态;type:varchar(255);"`
  40. Region string `json:"region" form:"region" gorm:"column:region;comment:区域;type:varchar(255);"`
  41. HandImgs string `json:"handImgs" form:"handImgs" gorm:"column:hand_imgs;comment:处理图片;type:varchar(255);"`
  42. HandText string `json:"handText" form:"handText" gorm:"column:hand_text;comment:处理内容;type:varchar(255);"`
  43. Department string `json:"department" form:"department" gorm:"column:department;comment:责任部门;type:varchar(255);"`
  44. Remark string `json:"remark" form:"remark" gorm:"column:remark;comment:问题备注;type:varchar(600);"`
  45. }
  46. // TableName ProblemInfo 表名
  47. func (ProblemInfo) TableName() string {
  48. return "problem_info"
  49. }
  50. func (ProblemInfo1) TableName() string {
  51. return "problem_info"
  52. }