move-config-suppliers #50

Merged
trunglam merged 2 commits from move-config-suppliers into master 2022-10-26 04:34:58 +00:00
1 changed files with 7 additions and 0 deletions
Showing only changes of commit 6293e62cb4 - Show all commits

View File

@ -26,6 +26,13 @@ type WarehouseConfiguration struct {
Delivery WarehouseDelivery `json:"delivery"` Delivery WarehouseDelivery `json:"delivery"`
Other WarehouseOther `json:"other"` Other WarehouseOther `json:"other"`
Food WarehouseFood `json:"food"` Food WarehouseFood `json:"food"`
AutoConfirmOrder WareOrderConfirm `json:"autoConfirmOrder"`
}
// WareOrderConfirm ...
type WareOrderConfirm struct {
IsEnable bool `json:"isEnable"`
ConfirmDelayInSeconds int64 `json:"confirmDelayInSeconds"`
} }
// WarehouseFood ... // WarehouseFood ...