zhangqian
2024-07-01 73b6baf6af3d88cdcb0e2df7932a9bd96b0b85c5
request/warehouse.go
@@ -2,7 +2,7 @@
type GetWarehouseList struct {
   PageInfo
   Keyword string `json:"keyword"`
   Keyword string `json:"keyword" form:"keyword"`
}
type AddWarehouse struct {
@@ -16,6 +16,7 @@
   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
   Contacts               string   `json:"contacts" gorm:"type:varchar(255);comment:联系人"`                                             //联系人
}
type UpdateWarehouse struct {