jiangshuai
2023-10-20 96844c22ef3fba86a55e0af1b51bc1009d6fa950
request/operation.go
@@ -6,20 +6,21 @@
)
type AddOperation struct {
   Id              int                      `json:"id" gorm:"column:id;primary_key;AUTO_INCREMENT"`
   Number          string                   `json:"number" gorm:"column:number;type:varchar(255)"`           //单号
   SourceNumber    string                   `json:"sourceNumber" gorm:"type:varchar(255)"`                   //源单号
   OperationTypeId int                      `json:"operationTypeId" gorm:"type:int;not null;comment:作业类型id"` //作业类型id
   Status          constvar.OperationStatus `json:"status" gorm:"type:int(11);not null;comment:状态"`          //状态
   FromLocationId  int                      `json:"fromLocationId"   gorm:"type:int;not null;comment:源位置id"` //源位置id
   ToLocationId    int                      `json:"toLocationId"    gorm:"type:int;not null;comment:目标位置id"` //目标位置id
   OperationDate   string                   `json:"operationDate" gorm:"type:varchar(31);comment:安排日期"`      //安排日期
   Details         []*OperationDetails      `json:"details"`
   ContacterID     int                      `json:"contacterID" gorm:"type:int;comment:联系人ID"`           //联系人ID-非必填
   ContacterName   string                   `json:"contacterName" gorm:"type:varchar(63);comment:联系人姓名"` //联系人姓名-非必填
   CompanyID       int                      `json:"companyID" gorm:"type:int;comment:公司ID"`              //公司ID-客户
   CompanyName     string                   `json:"companyName" gorm:"type:varchar(127);comment:公司名称"`   //公司名称-客户名称
   Comment         string                   `json:"comment" gorm:"type:text;comment:备注"`
   ID                int                      `json:"id" gorm:"column:id;primary_key;AUTO_INCREMENT"`
   Number            string                   `json:"number" gorm:"column:number;type:varchar(255)"`             //单号
   SourceNumber      string                   `json:"sourceNumber" gorm:"type:varchar(255)"`                     //源单号
   OperationTypeId   int                      `json:"operationTypeId" gorm:"type:int;not null;comment:作业类型id"`   //作业类型id
   OperationTypeName string                   `json:"operationTypeName" gorm:"type:varchar(127);comment:作业类型名称"` //作业类型名称
   Status            constvar.OperationStatus `json:"status" gorm:"type:int(11);not null;comment:状态"`            //状态
   FromLocationId    int                      `json:"fromLocationId"   gorm:"type:int;not null;comment:源位置id"`   //源位置id
   ToLocationId      int                      `json:"toLocationId"    gorm:"type:int;not null;comment:目标位置id"`   //目标位置id
   OperationDate     string                   `json:"operationDate" gorm:"type:varchar(31);comment:安排日期"`        //安排日期
   Details           []*OperationDetails      `json:"details"`
   ContacterID       int                      `json:"contacterID" gorm:"type:int;comment:联系人ID"`           //联系人ID-非必填
   ContacterName     string                   `json:"contacterName" gorm:"type:varchar(63);comment:联系人姓名"` //联系人姓名-非必填
   CompanyID         int                      `json:"companyID" gorm:"type:int;comment:公司ID"`              //公司ID-客户
   CompanyName       string                   `json:"companyName" gorm:"type:varchar(127);comment:公司名称"`   //公司名称-客户名称
   Comment           string                   `json:"comment" gorm:"type:text;comment:备注"`                 //备注
   //Weight          decimal.Decimal          `json:"weight" gorm:"type:decimal(20,2);comment:重量(kg)"`           //重量(kg)-非必填
   //TransferWeight  decimal.Decimal          `json:"transferWeight" gorm:"type:decimal(20,2);comment:物流重量(kg)"` //物流重量(kg)-非必填
@@ -29,34 +30,41 @@
}
type OperationDetails struct {
   ProductId   int             `json:"productId" gorm:"type:int;not null;comment:产品id"`            //产品id
   ProductName string          `json:"productName" gorm:"type:varchar(255);not null;comment:产品名称"` //产品名称
   Quantity    decimal.Decimal `json:"quantity" gorm:"type:decimal(20,2);not null;comment:数量"`     //数量
   Unit        string          `json:"unit" gorm:"type:varchar(31);comment:单位"`
   OperationId int    `json:"OperationId" gorm:"type:int;not null;comment:操作记录id"`      //操作id
   ProductId   string `json:"productId" gorm:"type:varchar(191);not null;comment:产品id"` //产品id
   //ProductName string          `json:"productName" gorm:"type:varchar(255);not null;comment:产品名称"` //产品名称
   Amount decimal.Decimal `json:"amount" gorm:"type:decimal(20,2);not null;comment:数量"` //数量
   //Unit        string          `json:"unit" gorm:"type:varchar(31);comment:单位"`                    //单位
   //Product models.Material `json:"product" gorm:"foreignKey:ProductId;references:ID"`
}
type OperationList struct {
   PageInfo
   OperationTypeId int `json:"operationTypeId" form:"operationTypeId"`
   OperationTypeId int    `json:"operationTypeId" form:"operationTypeId"`
   Number          string `json:"number"`
}
type UpdateOperation struct {
   Id              int                      `json:"id" gorm:"column:id;primary_key;AUTO_INCREMENT"`
   Number          string                   `json:"number" gorm:"column:number;type:varchar(255)"`           //单号
   SourceNumber    string                   `json:"sourceNumber" gorm:"type:varchar(255)"`                   //源单号
   OperationTypeId int                      `json:"operationTypeId" gorm:"type:int;not null;comment:作业类型id"` //作业类型id
   Status          constvar.OperationStatus `json:"status" gorm:"type:int(11);not null;comment:状态"`          //状态
   FromLocationId  int                      `json:"fromLocationId"   gorm:"type:int;not null;comment:源位置id"` //源位置id
   ToLocationId    int                      `json:"toLocationId"    gorm:"type:int;not null;comment:目标位置id"` //目标位置id
   OperationDate   string                   `json:"operationDate" gorm:"type:varchar(31);comment:安排日期"`      //安排日期
   Details         []*OperationDetails      `json:"details"`
   CarrierID       int                      `json:"carrierID" gorm:"type:int;comment:承运商ID"`                   //承运商ID-非必填
   CarrierName     string                   `json:"carrierName" gorm:"type:varchar(63);comment:承运商名称"`         //承运商名称-非必填
   Tracking        string                   `json:"tracking" gorm:"type:varchar(127);comment:追踪参考"`            //追踪参考-非必填
   ContacterID     int                      `json:"contacterID" gorm:"type:int;comment:联系人ID"`                 //联系人ID-非必填
   ContacterName   string                   `json:"contacterName" gorm:"type:varchar(63);comment:联系人姓名"`       //联系人姓名-非必填
   Weight          decimal.Decimal          `json:"weight" gorm:"type:decimal(20,2);comment:重量(kg)"`           //重量(kg)-非必填
   TransferWeight  decimal.Decimal          `json:"transferWeight" gorm:"type:decimal(20,2);comment:物流重量(kg)"` //物流重量(kg)-非必填
   CompanyID       int                      `json:"companyID" gorm:"type:int;comment:公司ID"`                    //公司ID-客户
   CompanyName     string                   `json:"companyName" gorm:"type:varchar(127);comment:公司名称"`         //公司名称-客户名称
   ID                int                        `json:"id" gorm:"column:id;primary_key;AUTO_INCREMENT"`
   Number            string                     `json:"number" gorm:"column:number;type:varchar(255)"`             //单号
   SourceNumber      string                     `json:"sourceNumber" gorm:"type:varchar(255)"`                     //源单号
   OperationTypeId   int                        `json:"operationTypeId" gorm:"type:int;not null;comment:作业类型id"`   //作业类型id
   OperationTypeName string                     `json:"operationTypeName" gorm:"type:varchar(127);comment:作业类型名称"` //作业类型名称
   Status            constvar.OperationStatus   `json:"status" gorm:"type:int(11);not null;comment:状态"`            //状态
   FromLocationId    int                        `json:"fromLocationId"   gorm:"type:int;not null;comment:源位置id"`   //源位置id
   ToLocationId      int                        `json:"toLocationId"    gorm:"type:int;not null;comment:目标位置id"`   //目标位置id
   OperationDate     string                     `json:"operationDate" gorm:"type:varchar(31);comment:安排日期"`        //安排日期
   Details           []*OperationDetails        `json:"details"`
   ContacterID       int                        `json:"contacterID" gorm:"type:int;comment:联系人ID"`           //联系人ID-非必填
   ContacterName     string                     `json:"contacterName" gorm:"type:varchar(63);comment:联系人姓名"` //联系人姓名-非必填
   CompanyID         int                        `json:"companyID" gorm:"type:int;comment:公司ID"`              //公司ID-客户
   CompanyName       string                     `json:"companyName" gorm:"type:varchar(127);comment:公司名称"`   //公司名称-客户名称
   Comment           string                     `json:"comment" gorm:"type:text;comment:备注"`                 //备注
   BaseOperationType constvar.BaseOperationType `json:"baseOperationType"`                                   //基础作业类型
}
type OperationAllList struct {
   PageInfo
   Number       string `json:"number"`
   SourceNumber string `json:"sourceNumber"`
}