ops_operation_event.go 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. TotalWorkHour float64 `orm:"total_work_hour" json:"totalWorkHour"` // 累计工时(小时)
  17. ContractId int `orm:"contract_id" json:"contractId"` // 关联合同
  18. ContractName string `orm:"contract_name" json:"contractName"` // 合同名称
  19. CustId int `orm:"cust_id" json:"custId"` // 关联客户
  20. CustName string `orm:"cust_name" json:"custName"` // 客户名称
  21. ProductLine string `orm:"product_line" json:"productLine"` // 产品线(10 Biobank 20 LIMS 30 CellLbank)
  22. IsBig string `orm:"is_big" json:"isBig"` // 是否重点项目(10是 20否)
  23. IsOps string `orm:"is_ops" json:"isOps"` // 是否在运维期(10是 20否)
  24. PriorityLevel string `orm:"priority_level" json:"priorityLevel"` // 优先级(P1 紧急 P2 一般 P3 低优)
  25. FeedbackSource string `orm:"feedback_source" json:"feedbackSource"` // 反馈来源(10 客户 20 销售 30 交付)
  26. FeedbackReporter string `orm:"feedback_reporter" json:"feedbackReporter"` // 反馈人
  27. FeedbackDate *gtime.Time `orm:"feedback_date" json:"feedbackDate"` // 反馈时间
  28. OpsUserId int `orm:"ops_user_id" json:"opsUserId"` // 运维人员ID
  29. OpsUserName string `orm:"ops_user_name" json:"opsUserName"` // 运维人员姓名
  30. AssignTime *gtime.Time `orm:"assign_time" json:"assignTime"` // 接单时间
  31. CompleteTime *gtime.Time `orm:"complete_time" json:"completeTime"` // 处理完成时间
  32. CompleteDesc string `orm:"complete_desc" json:"completeDesc"` // 处理结果说明
  33. Attribute1 string `orm:"attribute1" json:"attribute1"` // 增强字段1
  34. Attribute2 string `orm:"attribute2" json:"attribute2"` // 增强字段2
  35. Attribute3 string `orm:"attribute3" json:"attribute3"` // 增强字段3
  36. Attribute4 float64 `orm:"attribute4" json:"attribute4"` // 增强字段4
  37. Attribute5 float64 `orm:"attribute5" json:"attribute5"` // 增强字段5
  38. Attribute6 *gtime.Time `orm:"attribute6" json:"attribute6"` // 增强字段6
  39. Attribute7 *gtime.Time `orm:"attribute7" json:"attribute7"` // 增强字段7
  40. Attribute8 string `orm:"attribute8" json:"attribute8"` // 增强字段8
  41. Attribute9 string `orm:"attribute9" json:"attribute9"` // 增强字段9
  42. Remark string `orm:"remark" json:"remark"` // 备注
  43. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建者
  44. CreatedName string `orm:"created_name" json:"createdName"` // 创建人
  45. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  46. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新者
  47. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
  48. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  49. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
  50. }