6
0

repair.go 2.2 KB

123456789101112131415161718192021222324252627282930
  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. // Repair is the golang structure for table repair.
  9. type Repair 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. CurrentProcessorName string `orm:"CurrentProcessorName" json:"currentProcessorName"` // 当前处理人姓名
  16. ProcessedAt *gtime.Time `orm:"ProcessedAt" json:"processedAt"` // 处理时间
  17. ProcessType string `orm:"ProcessType" json:"processType"` // 创建者用户名
  18. CreatedById int `orm:"CreatedById" json:"createdById"` // 创建者 Id
  19. CreatedByName string `orm:"CreatedByName" json:"createdByName"` // 创建者用户名
  20. CreatedByMobile string `orm:"CreatedByMobile" json:"createdByMobile"` // 创建者联系方式
  21. CreatedByEmail string `orm:"CreatedByEmail" json:"createdByEmail"` // 创建者邮箱
  22. CreatedByDeptId int `orm:"CreatedByDeptId" json:"createdByDeptId"` // 创建者部门 Id
  23. CreatedByDeptName string `orm:"CreatedByDeptName" json:"createdByDeptName"` // 创建者部门名称
  24. CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
  25. UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
  26. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
  27. }