| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package work
- import (
- "dashoo.cn/micro/app/model/work/internal"
- "dashoo.cn/opms_libary/request"
- )
- // DeliverOrder is the golang structure for table deliver_order.
- type DeliverOrder internal.DeliverOrder
- // Fill with you ideas below.
- type DeliverOrderGetRsp struct {
- DeliverOrder
- Plan []*DeliverOrderImpPlan `json:"plan"`
- Product []*DeliverOrderProduct `json:"product"`
- }
- type DeliverOrderListReq struct {
- request.PageReq
- OrderCode string `json:"orderCode"` // 交付订单号
- OrderStatus string `json:"orderStatus"` // 交付状态(10项目立项 )
- OrderType string `json:"orderType"` // 交付类型(10 软件 20 硬件)
- CustId int `json:"custId"` // 关联客户ID
- CustName string `json:"custName"` // 关联客户名称
- ProjectId int `json:"projectId"` // 关联项目ID
- ProjectName string `json:"projectName"` // 关联项目名称
- ContractId int `json:"contractId"` // 关联合同ID
- ContractCode string `json:"contractCode"` // 关联合同编号
- ProjectManId int `json:"projectManId"` // 项目经理
- ProjectManName string `json:"projectManName"` // 项目经理
- DeliverManId int `json:"deliverManId"` // 交付经理
- DeliverManName string `json:"deliverManName"` // 交付经理
- Product string `json:"product"` // 产品线
- }
- type DeliverOrderAddReq struct {
- ContractId int `json:"contractId" v:"required#请输入合同ID"` // 关联合同ID
- }
- type DeliverOrderUpdateReq struct {
- Id int `json:"id" v:"required#请输入Id"`
- OrderStatus string `json:"orderStatus"` // 交付状态(10项目立项 )
- ProjectManId int `json:"projectManId"` // 项目经理
- ProjectManName string `json:"projectManName"` // 项目经理
- DeliverManId int `json:"deliverManId"` // 交付经理
- DeliverManName string `json:"deliverManName"` // 交付经理
- }
- type DeliverOrderFinishReq struct {
- OrderId int `json:"orderId" v:"min:1#工单不能为空"` //
- FinishRemark string `json:"finishRemark"` // 完成信息
- }
|