This commit is contained in:
邹宗楠
2022-09-20 16:25:46 +08:00
parent c7cfd615cb
commit cc6a1c5c1e
14 changed files with 393 additions and 62 deletions

View File

@@ -12,6 +12,10 @@ type ShopBatchCreateStoreRequest struct {
}
type ShopBatchCreateStoreParam struct {
StoreList []*StoreList `json:"store_list"`
}
type StoreList struct {
RowID int64 `json:"row_id"`
Name string `json:"name"`
StoreCode string `json:"store_code"` //门店编码
@@ -25,6 +29,7 @@ type ShopBatchCreateStoreParam struct {
OpenTime OpenTime `json:"open_time"` //营业时间
StoreID int64 `json:"store_id"` //创建成功的门店ID
}
type OpenTime struct {
DayMap map[string]string `json:"day_map"`
Custom string `json:"custom"` //暂时不使用