fix
zhangqian
2024-06-15 9db65d2bb4937a1bdc6bfdb683479f33c2e37f3a
request/operation.go
@@ -51,6 +51,7 @@
   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"`
}
type OperationList struct {
@@ -102,5 +103,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
}