// ========================================================================== // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY. // ========================================================================== package internal import ( "github.com/gogf/gf/os/gtime" ) // OpsDeliveryProject is the golang structure for table ops_delivery_project. type OpsDeliveryProject struct { Id int `orm:"id,primary" json:"id"` // 主键 ProjectName string `orm:"project_name" json:"projectName"` // 项目名称 ProjectStatus string `orm:"project_status" json:"projectStatus"` // 项目状态(10 待指派 20 交付中 30 暂停 40交付完成 50 验收 90作废) ContractId int `orm:"contract_id" json:"contractId"` // 合同ID ContractNo string `orm:"contract_no" json:"contractNo"` // 合同编号 CustId string `orm:"cust_id" json:"custId"` // 客户ID CustName string `orm:"cust_name" json:"custName"` // 客户名称 ProductLine string `orm:"product_line" json:"productLine"` // 产品线(10 Biobank 20 LIMS 30 CellLbank 40MCS ) DeliveryUserId int `orm:"delivery_user_id" json:"deliveryUserId"` // 交付负责人ID DeliveryUserName string `orm:"delivery_user_name" json:"deliveryUserName"` // 交付负责人 SalesUserId int `orm:"sales_user_id" json:"salesUserId"` // 销售ID SalesUserName string `orm:"sales_user_name" json:"salesUserName"` // 销售 SalesRegionId int `orm:"sales_region_id" json:"salesRegionId"` // 销售区域ID PlanDeliveryTime *gtime.Time `orm:"plan_delivery_time" json:"planDeliveryTime"` // 计划交付时间 PlanAcceptTime *gtime.Time `orm:"plan_accept_time" json:"planAcceptTime"` // 计划验收时间 DeliveryNode string `orm:"delivery_node" json:"deliveryNode"` // 交付节点(05 已指派10内部启动会 15 外部启动会 20 制定计划 30项目实施 40完成部署 50试运行 60交付完成) AssignedTime string `orm:"assigned_time" json:"assignedTime"` // 指派时间 InternalKickoffTime *gtime.Time `orm:"internal_kickoff_time" json:"internalKickoffTime"` // 内部启动会时间 ExternalKickoffTime *gtime.Time `orm:"external_kickoff_time" json:"externalKickoffTime"` // 外部启动会时间 DeliveryPlanSubmitTime *gtime.Time `orm:"delivery_plan_submit_time" json:"deliveryPlanSubmitTime"` // 交付计划提交时间 DeploymentTime *gtime.Time `orm:"deployment_time" json:"deploymentTime"` // 部署时间 TrialRunTime *gtime.Time `orm:"trial_run_time" json:"trialRunTime"` // 试运行时间 GoLiveTime *gtime.Time `orm:"go_live_time" json:"goLiveTime"` // 上线时间 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"` // 删除时间 }