jiangshuai
2023-10-20 96844c22ef3fba86a55e0af1b51bc1009d6fa950
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package request
 
type AddLocationProduct struct {
    LocationId        int    `json:"locationId"`        //位置id
    ProductId         string `json:"productId"`         //产品id
    ProductCategoryId int    `json:"productCategoryId"` //产品种类id
    AreaId            int    `json:"areaId"`            //区域id
}
 
type UpdateLocationProduct struct {
    Id                int    `json:"id"`
    LocationId        int    `json:"locationId"`        //位置id
    ProductId         string `json:"productId"`         //产品id
    ProductCategoryId int    `json:"productCategoryId"` //产品种类id
    AreaId            int    `json:"areaId"`            //区域id
}