|
|
@@ -10,34 +10,34 @@ import (
|
|
|
|
|
|
// DeliverOrder is the golang structure for table deliver_order.
|
|
|
type DeliverOrder struct {
|
|
|
- Id int `orm:"id,primary" json:"id"` // 主键
|
|
|
- OrderCode string `orm:"order_code" json:"orderCode"` // 交付订单号
|
|
|
- OrderStatus string `orm:"order_status" json:"orderStatus"` // 交付状态(10项目立项 20 完成)
|
|
|
- OrderType string `orm:"order_type" json:"orderType"` // 交付类型(10 软件 20 硬件)
|
|
|
- CustId int `orm:"cust_id" json:"custId"` // 关联客户ID
|
|
|
- CustName string `orm:"cust_name" json:"custName"` // 关联客户名称
|
|
|
- ProjectId int `orm:"project_id" json:"projectId"` // 关联项目ID
|
|
|
- ProjectName string `orm:"project_name" json:"projectName"` // 关联项目名称
|
|
|
- ContractId int `orm:"contract_id" json:"contractId"` // 关联合同ID
|
|
|
- ContractCode string `orm:"contract_code" json:"contractCode"` // 关联合同编号
|
|
|
- ProjectManId int `orm:"project_man_id" json:"projectManId"` // 项目经理
|
|
|
- ProjectManName string `orm:"project_man_name" json:"projectManName"` // 项目经理
|
|
|
- DeliverManId int `orm:"deliver_man_id" json:"deliverManId"` // 交付经理
|
|
|
- DeliverManName string `orm:"deliver_man_name" json:"deliverManName"` // 交付经理
|
|
|
- Product string `orm:"product" json:"product"` // 产品线
|
|
|
- FinishRemark string `orm:"finish_remark" json:"finishRemark"` // 完成信息
|
|
|
- FinishTime *gtime.Time `orm:"finish_time" json:"finishTime"` // 完成时间
|
|
|
- FinishBy int `orm:"finish_by" json:"finishBy"` // 完成操作人
|
|
|
- FinishByName string `orm:"finish_by_name" json:"finishByName"` // 完成操作人
|
|
|
+ Id int `orm:"id,primary" json:"id"` // 主键
|
|
|
+ OrderCode string `orm:"order_code" json:"orderCode"` // 交付订单号
|
|
|
+ OrderStatus string `orm:"order_status" json:"orderStatus"` // 交付状态(10项目立项 20 完成)
|
|
|
+ OrderType string `orm:"order_type" json:"orderType"` // 交付类型(10 软件 20 硬件)
|
|
|
+ CustId int `orm:"cust_id" json:"custId"` // 关联客户ID
|
|
|
+ CustName string `orm:"cust_name" json:"custName"` // 关联客户名称
|
|
|
+ ProjectId int `orm:"project_id" json:"projectId"` // 关联项目ID
|
|
|
+ ProjectName string `orm:"project_name" json:"projectName"` // 关联项目名称
|
|
|
+ ContractId int `orm:"contract_id" json:"contractId"` // 关联合同ID
|
|
|
+ ContractCode string `orm:"contract_code" json:"contractCode"` // 关联合同编号
|
|
|
+ ProjectManId int `orm:"project_man_id" json:"projectManId"` // 项目经理
|
|
|
+ ProjectManName string `orm:"project_man_name" json:"projectManName"` // 项目经理
|
|
|
+ DeliverManId int `orm:"deliver_man_id" json:"deliverManId"` // 交付经理
|
|
|
+ DeliverManName string `orm:"deliver_man_name" json:"deliverManName"` // 交付经理
|
|
|
+ Product string `orm:"product" json:"product"` // 产品线
|
|
|
+ FinishRemark string `orm:"finish_remark" json:"finishRemark"` // 完成信息
|
|
|
+ FinishTime *gtime.Time `orm:"finish_time" json:"finishTime"` // 完成时间
|
|
|
+ FinishBy int `orm:"finish_by" json:"finishBy"` // 完成操作人
|
|
|
+ FinishByName string `orm:"finish_by_name" json:"finishByName"` // 完成操作人
|
|
|
RequiredDeliveryTime *gtime.Time `orm:"required_delivery_time" json:"requiredDeliveryTime"` // 要求发货时间
|
|
|
ReceivingInfo string `orm:"receiving_info" json:"receivingInfo"` // 收货信息
|
|
|
SpecialRequirements string `orm:"special_requirements" json:"specialRequirements"` // 特殊要求说明
|
|
|
- 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"` // 删除时间
|
|
|
+ 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"` // 删除时间
|
|
|
}
|