liujiandao
2023-10-09 2716487d13f3521adeb25a48aa07a89f885d32c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package request
 
type GetInventoryForms struct {
    PageInfo
    CategoryIds   []int  `json:"categoryIds"`   //产品类型id
    WarehouseCode string `json:"warehouseCode"` //仓库缩写
}
 
type GetInventoryHistory struct {
    PageInfo
    ProduceId   string `json:"produceId"`   //产品id
    ProductName string `json:"productName"` //产品名称
    Unit        string `json:"unit"`        //单位
}
 
type GetLocationForms struct {
    PageInfo
    KeyWord string `json:"keyWord"`
}