|
@@ -14,6 +14,31 @@
|
|
|
},
|
|
|
"basePath": "/api",
|
|
|
"paths": {
|
|
|
+ "/chart/change": {
|
|
|
+ "post": {
|
|
|
+ "tags": [
|
|
|
+ "chart"
|
|
|
+ ],
|
|
|
+ "description": "图表变更通知的插入点接口\n\u003cbr\u003e",
|
|
|
+ "operationId": "ChartController.图表变更通知的插入点接口",
|
|
|
+ "parameters": [
|
|
|
+ {
|
|
|
+ "in": "body",
|
|
|
+ "name": "request",
|
|
|
+ "description": "type json string",
|
|
|
+ "required": true,
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/chart.CreatChartCeluePushReq"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "responses": {
|
|
|
+ "200": {
|
|
|
+ "description": "创建成功"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
"/company_user/user_report_list": {
|
|
|
"get": {
|
|
|
"tags": [
|
|
@@ -77,6 +102,33 @@
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "/day_new/refresh": {
|
|
|
+ "get": {
|
|
|
+ "tags": [
|
|
|
+ "day_new"
|
|
|
+ ],
|
|
|
+ "description": "手动刷新\n\u003cbr\u003e",
|
|
|
+ "operationId": "DayNewController.手动刷新企业微信群消息"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "/day_new/translate": {
|
|
|
+ "get": {
|
|
|
+ "tags": [
|
|
|
+ "day_new"
|
|
|
+ ],
|
|
|
+ "description": "手动翻译内容\n\u003cbr\u003e",
|
|
|
+ "operationId": "DayNewController.手动翻译内容"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "/en/report/notify": {
|
|
|
+ "get": {
|
|
|
+ "tags": [
|
|
|
+ "en/report"
|
|
|
+ ],
|
|
|
+ "description": "策略报告发布通知\n\u003cbr\u003e",
|
|
|
+ "operationId": "EnglishReportController.策略报告发布通知"
|
|
|
+ }
|
|
|
+ },
|
|
|
"/quanshi/callback": {
|
|
|
"post": {
|
|
|
"tags": [
|
|
@@ -466,7 +518,23 @@
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- "/yidong/activity/examine": {
|
|
|
+ "/wework/notify": {
|
|
|
+ "get": {
|
|
|
+ "tags": [
|
|
|
+ "wework"
|
|
|
+ ],
|
|
|
+ "description": "企业微信通知\n\u003cbr\u003e",
|
|
|
+ "operationId": "WeworkController.企业微信通知"
|
|
|
+ },
|
|
|
+ "post": {
|
|
|
+ "tags": [
|
|
|
+ "wework"
|
|
|
+ ],
|
|
|
+ "description": "企业微信通知\n\u003cbr\u003e",
|
|
|
+ "operationId": "WeworkController.企业微信通知"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "/yidong/activity/examine/signup": {
|
|
|
"post": {
|
|
|
"tags": [
|
|
|
"yidong"
|
|
@@ -490,6 +558,31 @@
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ },
|
|
|
+ "/yidong/activity/user/signup": {
|
|
|
+ "post": {
|
|
|
+ "tags": [
|
|
|
+ "yidong"
|
|
|
+ ],
|
|
|
+ "description": "易董提交报名时,获取用户信息接口\n\u003cbr\u003e",
|
|
|
+ "operationId": "YiDongController.易董提交报名时,获取用户信息接口",
|
|
|
+ "parameters": [
|
|
|
+ {
|
|
|
+ "in": "body",
|
|
|
+ "name": "request",
|
|
|
+ "description": "type json string",
|
|
|
+ "required": true,
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/yidong.ActivityExamineReq"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "responses": {
|
|
|
+ "200": {
|
|
|
+ "description": "创建成功"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
"definitions": {
|
|
@@ -531,6 +624,25 @@
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "chart.CreatChartCeluePushReq": {
|
|
|
+ "title": "CreatChartCeluePushReq",
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "action": {
|
|
|
+ "description": "操作方式 add:新增、edit:修改、move:删除",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "appid": {
|
|
|
+ "description": "APPID",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "chart_id": {
|
|
|
+ "description": "图表ID",
|
|
|
+ "type": "integer",
|
|
|
+ "format": "int64"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
"classify.ClassifyList": {
|
|
|
"title": "ClassifyList",
|
|
|
"type": "object",
|
|
@@ -1429,12 +1541,25 @@
|
|
|
"description": "文章ID",
|
|
|
"type": "string"
|
|
|
},
|
|
|
+ "appid": {
|
|
|
+ "description": "开放平台给分配的appid",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
"list": {
|
|
|
"description": "审核结果",
|
|
|
"type": "array",
|
|
|
"items": {
|
|
|
"$ref": "#/definitions/yidong.ExamineStatusReq"
|
|
|
}
|
|
|
+ },
|
|
|
+ "sign": {
|
|
|
+ "description": "签名",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "time": {
|
|
|
+ "description": "时间戳",
|
|
|
+ "type": "integer",
|
|
|
+ "format": "int64"
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -1442,8 +1567,12 @@
|
|
|
"title": "ExamineStatusReq",
|
|
|
"type": "object",
|
|
|
"properties": {
|
|
|
+ "create_time": {
|
|
|
+ "description": "报名时间",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
"examine_status": {
|
|
|
- "description": "审核状态 1,通过、2:未通过",
|
|
|
+ "description": "审核状态 1,通过、2:未通过、3:取消报名",
|
|
|
"type": "integer",
|
|
|
"format": "int64"
|
|
|
},
|
|
@@ -1478,6 +1607,14 @@
|
|
|
{
|
|
|
"name": "yidong",
|
|
|
"description": "易董\n"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "wework",
|
|
|
+ "description": "用户\n"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "chart",
|
|
|
+ "description": "图表模块\n"
|
|
|
}
|
|
|
]
|
|
|
}
|