zhangqian
2024-06-21 9c7551a7a752c07db11b0fd23bfba8da1ad062e0
request/operation.go
@@ -18,7 +18,7 @@
   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-客户
   CompanyID         string              `json:"companyID"`                                           //公司ID-客户
   CompanyName       string              `json:"companyName" gorm:"type:varchar(127);comment:公司名称"`   //公司名称-客户名称
   Comment           string              `json:"comment" gorm:"type:text;comment:备注"`                 //备注
   LogisticCompanyId string              `json:"logisticCompanyId"   gorm:"type:varchar(191);comment:物流公司id"`
@@ -49,6 +49,12 @@
   ToLocationId     int             `json:"toLocationId"    gorm:"type:int;not null;comment:目标位置id"` //目标位置id
   TotalGrossWeight decimal.Decimal `json:"totalGrossWeight" gorm:"type:decimal(20,3);comment:总毛重"`  //总毛重
   TotalNetWeight   decimal.Decimal `json:"totalNetWeight" gorm:"type:decimal(20,3);comment:总净重"`    //总净重
   AuxiliaryAmount  decimal.Decimal `json:"auxiliaryAmount" gorm:"type:decimal(20,3);comment:辅助数量"`  //辅助数量
   AuxiliaryUnit    string          `json:"auxiliaryUnit" gorm:"type:varchar(191);comment:辅助单位"`     //辅助单位
   Remark           string          `gorm:"type:varchar(1024);comment:备注" json:"remark"`
   Cost      decimal.Decimal `json:"cost"`      //成本单价
   SalePrice decimal.Decimal `json:"salePrice"` //销售单价
}
type OperationList struct {
@@ -71,7 +77,7 @@
   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-客户
   CompanyID         string                     `json:"companyID"`                                           //公司ID-客户
   CompanyName       string                     `json:"companyName" gorm:"type:varchar(127);comment:公司名称"`   //公司名称-客户名称
   Comment           string                     `json:"comment" gorm:"type:text;comment:备注"`                 //备注
   BaseOperationType constvar.BaseOperationType `json:"baseOperationType"`                                   //基础作业类型
@@ -100,5 +106,8 @@
type OperationCondition struct {
   PageInfo
   Condition string `json:"condition"`
   Condition   string `json:"condition"`
   Keyword     string `json:"keyword" form:"keyword"`         //关键字搜索
   WarehouseId int    `json:"warehouseId" form:"warehouseId"` //仓库ID
   LocationId  int    `json:"locationId" form:"locationId"`   //位置ID
}