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