1
This commit is contained in:
122784
swagger/param_parser.go.txt
122784
swagger/param_parser.go.txt
File diff suppressed because it is too large
Load Diff
@@ -12557,8 +12557,8 @@
|
||||
"tags": [
|
||||
"order"
|
||||
],
|
||||
"description": "批量更新店铺开票申请",
|
||||
"operationId": "OrderController.批量更新店铺开票申请",
|
||||
"description": "查询打印机列表",
|
||||
"operationId": "OrderController.查询打印机列表",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "header",
|
||||
@@ -18583,6 +18583,64 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/store/GetCitySettlementInfo": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"store"
|
||||
],
|
||||
"description": "根据城市code统计京西收益",
|
||||
"operationId": "StoreController.根据城市code统计京西收益",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "query",
|
||||
"name": "cityCode",
|
||||
"description": "京西门店城市列表[1,2,3],缺省不限制",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "vendorIds",
|
||||
"description": "京西门店ID列表[1,2,3],缺省不限制",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "start",
|
||||
"description": "起始时间1970-01-01 00:00:00",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "end",
|
||||
"description": "结束时间1970-01-01 23:59:59",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "size",
|
||||
"description": "每页最大数",
|
||||
"required": true,
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "offset",
|
||||
"description": "跳过数量",
|
||||
"required": true,
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{object} controllers.CallResult"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/store/GetCorporationInfo": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -19517,6 +19575,64 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/store/GetStoreSettlementInfo": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"store"
|
||||
],
|
||||
"description": "统计门店订单结算以及京西收益,与美团订单对比",
|
||||
"operationId": "StoreController.统计门店订单结算以及京西收益,与美团订单对比",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "query",
|
||||
"name": "storeIDs",
|
||||
"description": "京西门店ID列表[1,2,3],缺省不限制",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "vendorIds",
|
||||
"description": "京西门店ID列表[1,2,3],缺省不限制",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "start",
|
||||
"description": "起始时间1970-01-01 00:00:00",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "end",
|
||||
"description": "结束时间1970-01-01 23:59:59",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "size",
|
||||
"description": "每页最大数",
|
||||
"required": true,
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "offset",
|
||||
"description": "跳过数量",
|
||||
"required": true,
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{object} controllers.CallResult"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/store/GetStoreTotalScoreList": {
|
||||
"post": {
|
||||
"tags": [
|
||||
|
||||
@@ -8510,8 +8510,8 @@ paths:
|
||||
get:
|
||||
tags:
|
||||
- order
|
||||
description: 批量更新店铺开票申请
|
||||
operationId: OrderController.批量更新店铺开票申请
|
||||
description: 查询打印机列表
|
||||
operationId: OrderController.查询打印机列表
|
||||
parameters:
|
||||
- in: header
|
||||
name: token
|
||||
@@ -12613,6 +12613,46 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{object} controllers.CallResult'
|
||||
/store/GetCitySettlementInfo:
|
||||
get:
|
||||
tags:
|
||||
- store
|
||||
description: 根据城市code统计京西收益
|
||||
operationId: StoreController.根据城市code统计京西收益
|
||||
parameters:
|
||||
- in: query
|
||||
name: cityCode
|
||||
description: 京西门店城市列表[1,2,3],缺省不限制
|
||||
type: string
|
||||
- in: query
|
||||
name: vendorIds
|
||||
description: 京西门店ID列表[1,2,3],缺省不限制
|
||||
type: string
|
||||
- in: query
|
||||
name: start
|
||||
description: 起始时间1970-01-01 00:00:00
|
||||
required: true
|
||||
type: string
|
||||
- in: query
|
||||
name: end
|
||||
description: 结束时间1970-01-01 23:59:59
|
||||
required: true
|
||||
type: string
|
||||
- in: query
|
||||
name: size
|
||||
description: 每页最大数
|
||||
required: true
|
||||
type: integer
|
||||
format: int64
|
||||
- in: query
|
||||
name: offset
|
||||
description: 跳过数量
|
||||
required: true
|
||||
type: integer
|
||||
format: int64
|
||||
responses:
|
||||
"200":
|
||||
description: '{object} controllers.CallResult'
|
||||
/store/GetCorporationInfo:
|
||||
get:
|
||||
tags:
|
||||
@@ -13247,6 +13287,46 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{object} controllers.CallResult'
|
||||
/store/GetStoreSettlementInfo:
|
||||
get:
|
||||
tags:
|
||||
- store
|
||||
description: 统计门店订单结算以及京西收益,与美团订单对比
|
||||
operationId: StoreController.统计门店订单结算以及京西收益,与美团订单对比
|
||||
parameters:
|
||||
- in: query
|
||||
name: storeIDs
|
||||
description: 京西门店ID列表[1,2,3],缺省不限制
|
||||
type: string
|
||||
- in: query
|
||||
name: vendorIds
|
||||
description: 京西门店ID列表[1,2,3],缺省不限制
|
||||
type: string
|
||||
- in: query
|
||||
name: start
|
||||
description: 起始时间1970-01-01 00:00:00
|
||||
required: true
|
||||
type: string
|
||||
- in: query
|
||||
name: end
|
||||
description: 结束时间1970-01-01 23:59:59
|
||||
required: true
|
||||
type: string
|
||||
- in: query
|
||||
name: size
|
||||
description: 每页最大数
|
||||
required: true
|
||||
type: integer
|
||||
format: int64
|
||||
- in: query
|
||||
name: offset
|
||||
description: 跳过数量
|
||||
required: true
|
||||
type: integer
|
||||
format: int64
|
||||
responses:
|
||||
"200":
|
||||
description: '{object} controllers.CallResult'
|
||||
/store/GetStoreTotalScoreList:
|
||||
post:
|
||||
tags:
|
||||
|
||||
Reference in New Issue
Block a user