push
This commit is contained in:
parent
42a6d04413
commit
f731be7b62
|
@ -22,3 +22,11 @@ type SupplierRequestPayload struct {
|
|||
PIC string
|
||||
ContractStatus string
|
||||
}
|
||||
|
||||
type CreateSupplierWarehousePayload struct {
|
||||
Supplier string `json:"supplier"`
|
||||
Warehouse string `json:"warehouse"`
|
||||
ProvinceCode int `json:"provinceCode"`
|
||||
DistrictCode int `json:"districtCode"`
|
||||
WardCode int `json:"wardCode"`
|
||||
}
|
||||
|
|
|
@ -120,11 +120,3 @@ type WarehouseNatsResponse struct {
|
|||
CreatedAt time.Time `json:"createdAt"`
|
||||
UpdatedAt time.Time `json:"updatedAt"`
|
||||
}
|
||||
|
||||
type CreateSupplierWarehouseResponse struct {
|
||||
Supplier string `json:"supplier"`
|
||||
Warehouse string `json:"warehouse"`
|
||||
ProvinceCode int `json:"provinceCode"`
|
||||
DistrictCode int `json:"districtCode"`
|
||||
WardCode int `json:"wardCode"`
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue