zhangqian
2024-04-07 a8914a16b23e93f6bfd12bcfd5cbe8b24cf7eb84
request/report_forms_request.go
@@ -1,5 +1,7 @@
package request
import "wms/constvar"
type GetInventoryForms struct {
   PageInfo
   CategoryIds   []int  `json:"categoryIds"`   //产品类型id
@@ -9,13 +11,17 @@
type GetInventoryHistory struct {
   PageInfo
   ProduceId   string `json:"produceId"`   //产品id
   ProductName string `json:"productName"` //产品名称
   Unit        string `json:"unit"`        //单位
   KeyWord     string `json:"keyWord"`     //搜索条件
   ProduceId         string                     `json:"produceId"`         //产品id
   ProductName       string                     `json:"productName"`       //产品名称
   Unit              string                     `json:"unit"`              //单位
   KeyWord           string                     `json:"keyWord"`           //搜索条件
   BaseOperationType constvar.BaseOperationType `json:"baseOperationType"` //基础作业类型
}
type GetLocationForms struct {
   PageInfo
   KeyWord string `json:"keyWord"`
   KeyWord       string `json:"keyWord"`
   WareHouseCode string `json:"wareHouseCode"`
   ProductId     string `json:"productId"`
   LocationId    int    `json:"locationId"`
}