liujiandao
2024-01-22 19212a001fa6f64abbf042a781ff0f18acb61fcc
request/warehouse.go
@@ -2,7 +2,7 @@
type GetWarehouseList struct {
   PageInfo
   Keyword string `json:"keyword"`
   Keyword string `json:"keyword" form:"keyword"`
}
type AddWarehouse struct {
@@ -15,6 +15,7 @@
   Address                string   `json:"address" gorm:"type:varchar(512);comment:地址"`                                               //地址
   InboundTransportation  int      `json:"inboundTransportation" gorm:"type:int;comment:入向运输"`                                        //入向运输
   OutboundTransportation int      `json:"outboundTransportation" gorm:"type:int;comment:出库运输"`                                       //出库运输
   LocationId             int      `json:"locationId" gorm:"type:int;comment:位置id"`                                                   //位置id
}
type UpdateWarehouse struct {