|
@@ -17,6 +17,46 @@
|
|
|
"application/json"
|
|
|
],
|
|
|
"paths": {
|
|
|
+ "/cityPackage/area/all-area-level-list": {
|
|
|
+ "post": {
|
|
|
+ "summary": "层级关系的所有地区列表",
|
|
|
+ "operationId": "CityPackageService_AllAreaLevelList",
|
|
|
+ "responses": {
|
|
|
+ "200": {
|
|
|
+ "description": "A successful response.",
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/apiAllAreaLevelListRes"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "default": {
|
|
|
+ "description": "An unexpected error response.",
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/rpcStatus"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "parameters": [
|
|
|
+ {
|
|
|
+ "name": "body",
|
|
|
+ "in": "body",
|
|
|
+ "required": true,
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/apiAllAreaLevelListReq"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "r",
|
|
|
+ "description": "接口地址",
|
|
|
+ "in": "query",
|
|
|
+ "required": true,
|
|
|
+ "example": "cityPackage/area/all-area-level-list"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "tags": [
|
|
|
+ "API接口/后台/城市套餐"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
"/cityPackage/area/area-list": {
|
|
|
"post": {
|
|
|
"summary": "地区列表",
|
|
@@ -337,6 +377,46 @@
|
|
|
]
|
|
|
}
|
|
|
},
|
|
|
+ "/cityPackage/city-package/edit-package": {
|
|
|
+ "post": {
|
|
|
+ "summary": "编辑套餐",
|
|
|
+ "operationId": "CityPackageService_EditPackage",
|
|
|
+ "responses": {
|
|
|
+ "200": {
|
|
|
+ "description": "A successful response.",
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/apiEditPackageRes"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "default": {
|
|
|
+ "description": "An unexpected error response.",
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/rpcStatus"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "parameters": [
|
|
|
+ {
|
|
|
+ "name": "body",
|
|
|
+ "in": "body",
|
|
|
+ "required": true,
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/apiEditPackageReq"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "r",
|
|
|
+ "description": "接口地址",
|
|
|
+ "in": "query",
|
|
|
+ "required": true,
|
|
|
+ "example": "cityPackage/city-package/edit-package"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "tags": [
|
|
|
+ "API接口/后台/城市套餐"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
"/cityPackage/city-package/list-package": {
|
|
|
"post": {
|
|
|
"summary": "套餐列表",
|
|
@@ -525,6 +605,18 @@
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "apiAllAreaLevelListReq": {
|
|
|
+ "type": "object"
|
|
|
+ },
|
|
|
+ "apiAllAreaLevelListRes": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "list": {
|
|
|
+ "$ref": "#/definitions/apiAreaLevelEnt",
|
|
|
+ "title": "省列表"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
"apiAreaEnt": {
|
|
|
"type": "object",
|
|
|
"properties": {
|
|
@@ -558,6 +650,23 @@
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "apiAreaLevelEnt": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "area_info": {
|
|
|
+ "$ref": "#/definitions/apiAreaEnt",
|
|
|
+ "title": "区域信息"
|
|
|
+ },
|
|
|
+ "children": {
|
|
|
+ "type": "array",
|
|
|
+ "items": {
|
|
|
+ "type": "object",
|
|
|
+ "$ref": "#/definitions/apiAreaLevelEnt"
|
|
|
+ },
|
|
|
+ "title": "子级区域"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
"apiAreaListReq": {
|
|
|
"type": "object",
|
|
|
"properties": {
|
|
@@ -568,6 +677,25 @@
|
|
|
"package_area_arg": {
|
|
|
"$ref": "#/definitions/apiPackageAreaEnt",
|
|
|
"title": "筛选参数"
|
|
|
+ },
|
|
|
+ "is_child_query": {
|
|
|
+ "type": "boolean",
|
|
|
+ "title": "子门店查询 默认false"
|
|
|
+ },
|
|
|
+ "min_level": {
|
|
|
+ "type": "integer",
|
|
|
+ "format": "int32",
|
|
|
+ "title": "最小层级 1省级 2市级 3县级"
|
|
|
+ },
|
|
|
+ "level": {
|
|
|
+ "type": "integer",
|
|
|
+ "format": "int32",
|
|
|
+ "title": "查询的层级"
|
|
|
+ },
|
|
|
+ "admin_id": {
|
|
|
+ "type": "integer",
|
|
|
+ "format": "int32",
|
|
|
+ "title": "门店"
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -709,11 +837,32 @@
|
|
|
"$ref": "#/definitions/apiCityPackageEnt"
|
|
|
},
|
|
|
"title": "套餐数组列表"
|
|
|
+ },
|
|
|
+ "package_category": {
|
|
|
+ "$ref": "#/definitions/apiDEVICE_USE_TYPE",
|
|
|
+ "title": "套餐分类 1租电套餐 2车电一体 3租车套餐"
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
"apiCityPackageAddRes": {
|
|
|
- "type": "object"
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "fail_count": {
|
|
|
+ "type": "integer",
|
|
|
+ "format": "int32",
|
|
|
+ "title": "失败的数量"
|
|
|
+ },
|
|
|
+ "success_count": {
|
|
|
+ "type": "integer",
|
|
|
+ "format": "int32",
|
|
|
+ "title": "成功的数量"
|
|
|
+ },
|
|
|
+ "total_count": {
|
|
|
+ "type": "integer",
|
|
|
+ "format": "int32",
|
|
|
+ "title": "总请求添加数量"
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
"apiCityPackageCarModelEnt": {
|
|
|
"type": "object",
|
|
@@ -754,6 +903,10 @@
|
|
|
"car_model_info": {
|
|
|
"$ref": "#/definitions/apiCarModelEnt",
|
|
|
"title": "车型信息"
|
|
|
+ },
|
|
|
+ "shop_info": {
|
|
|
+ "$ref": "#/definitions/apiEntAdmin",
|
|
|
+ "title": "门店信息"
|
|
|
}
|
|
|
},
|
|
|
"title": "城市套餐的信息"
|
|
@@ -795,6 +948,10 @@
|
|
|
"type": "string"
|
|
|
},
|
|
|
"title": "地区CODE列表"
|
|
|
+ },
|
|
|
+ "is_child_opt": {
|
|
|
+ "type": "boolean",
|
|
|
+ "title": "是否子门店操作关闭 默认false"
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -834,6 +991,18 @@
|
|
|
},
|
|
|
"title": "数据的创建时间、更新时间、删除时间"
|
|
|
},
|
|
|
+ "apiEditPackageReq": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "data": {
|
|
|
+ "$ref": "#/definitions/apiCityPackageEnt",
|
|
|
+ "title": "套餐数据"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "apiEditPackageRes": {
|
|
|
+ "type": "object"
|
|
|
+ },
|
|
|
"apiEntAdmin": {
|
|
|
"type": "object",
|
|
|
"properties": {
|
|
@@ -932,6 +1101,26 @@
|
|
|
"code": {
|
|
|
"type": "string",
|
|
|
"title": "套餐code"
|
|
|
+ },
|
|
|
+ "stock": {
|
|
|
+ "type": "integer",
|
|
|
+ "format": "int32",
|
|
|
+ "title": "库存"
|
|
|
+ },
|
|
|
+ "ctime": {
|
|
|
+ "type": "integer",
|
|
|
+ "format": "int32",
|
|
|
+ "title": "创建时间 时间戳 秒"
|
|
|
+ },
|
|
|
+ "utime": {
|
|
|
+ "type": "integer",
|
|
|
+ "format": "int32",
|
|
|
+ "title": "更新时间 时间戳 秒"
|
|
|
+ },
|
|
|
+ "dtime": {
|
|
|
+ "type": "integer",
|
|
|
+ "format": "int32",
|
|
|
+ "title": "删除时间 时间戳 秒"
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -986,6 +1175,10 @@
|
|
|
"package_category": {
|
|
|
"$ref": "#/definitions/apiDEVICE_USE_TYPE",
|
|
|
"title": "套餐分类"
|
|
|
+ },
|
|
|
+ "listed_status": {
|
|
|
+ "$ref": "#/definitions/apiLISTED_STATUS",
|
|
|
+ "title": "上下架状态"
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -1016,6 +1209,10 @@
|
|
|
"type": "string"
|
|
|
},
|
|
|
"title": "地区CODE列表"
|
|
|
+ },
|
|
|
+ "is_child_opt": {
|
|
|
+ "type": "boolean",
|
|
|
+ "title": "是否子门店操作开通 默认false"
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -1093,6 +1290,22 @@
|
|
|
"open_status": {
|
|
|
"$ref": "#/definitions/apiYES_NO",
|
|
|
"title": "开通状态"
|
|
|
+ },
|
|
|
+ "is_can_select": {
|
|
|
+ "type": "boolean",
|
|
|
+ "title": "是否可以选中"
|
|
|
+ },
|
|
|
+ "is_selected": {
|
|
|
+ "type": "boolean",
|
|
|
+ "title": "是否已经选中"
|
|
|
+ },
|
|
|
+ "children": {
|
|
|
+ "type": "array",
|
|
|
+ "items": {
|
|
|
+ "type": "object",
|
|
|
+ "$ref": "#/definitions/apiPackageAreaEnt"
|
|
|
+ },
|
|
|
+ "title": "子级门店"
|
|
|
}
|
|
|
},
|
|
|
"title": "套餐开通的地区"
|