ops_operation_event.go 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. // OpsOperationEvent is the golang structure for table ops_operation_event.
  9. type OpsOperationEvent struct {
  10. Id int `orm:"id,primary" json:"id"` // 主键
  11. EventNo string `orm:"event_no" json:"eventNo"` // 事件编号
  12. EventTitle string `orm:"event_title" json:"eventTitle"` // 事件标题
  13. EventDesc string `orm:"event_desc" json:"eventDesc"` // 事件描述
  14. EventType string `orm:"event_type" json:"eventType"` // 事件类型(10-操作咨询 20-数据处理 30-系统BUG 40-功能调整 50-二开需求 90-其他问题)
  15. EventStatus string `orm:"event_status" json:"eventStatus"` // 事件状态(10 待处理、20处理中、30 转研发、70 已完成、80已关闭)
  16. ContractId int `orm:"contract_id" json:"contractId"` // 关联合同
  17. ContractName string `orm:"contract_name" json:"contractName"` // 合同名称
  18. CustId int `orm:"cust_id" json:"custId"` // 关联客户
  19. CustName string `orm:"cust_name" json:"custName"` // 客户名称
  20. ProductLine string `orm:"product_line" json:"productLine"` // 产品线(10 Biobank 20 LIMS 30 CellLbank)
  21. IsBig string `orm:"is_big" json:"isBig"` // 是否重点项目(10是 20否)
  22. IsOps string `orm:"is_ops" json:"isOps"` // 是否在运维期(10是 20否)
  23. PriorityLevel string `orm:"priority_level" json:"priorityLevel"` // 优先级(P1 紧急 P2 一般 P3 低优)
  24. FeedbackSource string `orm:"feedback_source" json:"feedbackSource"` // 反馈来源(10 客户 20 销售 30 交付)
  25. FeedbackReporter string `orm:"feedback_reporter" json:"feedbackReporter"` // 反馈人
  26. FeedbackDate *gtime.Time `orm:"feedback_date" json:"feedbackDate"` // 反馈时间
  27. OpsUserId int `orm:"ops_user_id" json:"opsUserId"` // 运维人员ID
  28. OpsUserName string `orm:"ops_user_name" json:"opsUserName"` // 运维人员姓名
  29. AssignTime *gtime.Time `orm:"assign_time" json:"assignTime"` // 接单时间
  30. CompleteTime *gtime.Time `orm:"complete_time" json:"completeTime"` // 处理完成时间
  31. CompleteDesc string `orm:"complete_desc" json:"completeDesc"` // 处理结果说明
  32. Attribute1 string `orm:"attribute1" json:"attribute1"` // 增强字段1
  33. Attribute2 string `orm:"attribute2" json:"attribute2"` // 增强字段2
  34. Attribute3 string `orm:"attribute3" json:"attribute3"` // 增强字段3
  35. Attribute4 float64 `orm:"attribute4" json:"attribute4"` // 增强字段4
  36. Attribute5 float64 `orm:"attribute5" json:"attribute5"` // 增强字段5
  37. Attribute6 *gtime.Time `orm:"attribute6" json:"attribute6"` // 增强字段6
  38. Attribute7 *gtime.Time `orm:"attribute7" json:"attribute7"` // 增强字段7
  39. Attribute8 string `orm:"attribute8" json:"attribute8"` // 增强字段8
  40. Attribute9 string `orm:"attribute9" json:"attribute9"` // 增强字段9
  41. Remark string `orm:"remark" json:"remark"` // 备注
  42. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建者
  43. CreatedName string `orm:"created_name" json:"createdName"` // 创建人
  44. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  45. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新者
  46. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
  47. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  48. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
  49. }