refactor-location #134

Closed
trunglam wants to merge 270 commits from refactor-location into master
2 changed files with 8 additions and 8 deletions
Showing only changes of commit c95d28870f - Show all commits

View File

@ -23,14 +23,6 @@ type SupplierRequestPayload struct {
ContractStatus string
}
type SyncSupplierWarehousePayload struct {
Supplier string `json:"supplier"`
Warehouse string `json:"warehouse"`
ProvinceCode int `json:"provinceCode"`
DistrictCode int `json:"districtCode"`
WardCode int `json:"wardCode"`
}
// SupplierCashflowCreatePayload ...
type SupplierCashflowCreatePayload struct {
Supplier string `json:"supplier"`

View File

@ -72,3 +72,11 @@ type SupplierUpdateBalanceRes struct {
type SupplierGetCurrentBalanceRes struct {
CurrentCash float64 `json:"currentCash"`
}
type SyncSupplierWarehousePayload struct {
Supplier string `json:"supplier"`
Warehouse string `json:"warehouse"`
ProvinceCode int `json:"provinceCode"`
DistrictCode int `json:"districtCode"`
WardCode int `json:"wardCode"`
}