|
@@ -1030,6 +1030,31 @@ paths:
|
|
|
success:
|
|
success:
|
|
|
$ref: "#/components/examples/success"
|
|
$ref: "#/components/examples/success"
|
|
|
|
|
|
|
|
|
|
+ /Feedback.Delete:
|
|
|
|
|
+ post:
|
|
|
|
|
+ tags:
|
|
|
|
|
+ - 反馈
|
|
|
|
|
+ operationId: FeedbackDelete
|
|
|
|
|
+ summary: 删除反馈
|
|
|
|
|
+ requestBody:
|
|
|
|
|
+ required: true
|
|
|
|
|
+ content:
|
|
|
|
|
+ application/json:
|
|
|
|
|
+ schema:
|
|
|
|
|
+ oneOf:
|
|
|
|
|
+ - $ref: '#/components/schemas/IdsReq'
|
|
|
|
|
+ examples:
|
|
|
|
|
+ FeedbackDelete:
|
|
|
|
|
+ $ref: '#/components/examples/FeedbackDelete'
|
|
|
|
|
+ responses:
|
|
|
|
|
+ 200:
|
|
|
|
|
+ description: 请求成功
|
|
|
|
|
+ content:
|
|
|
|
|
+ application/json:
|
|
|
|
|
+ examples:
|
|
|
|
|
+ success:
|
|
|
|
|
+ $ref: "#/components/examples/success"
|
|
|
|
|
+
|
|
|
/Repair.List:
|
|
/Repair.List:
|
|
|
post:
|
|
post:
|
|
|
tags:
|
|
tags:
|
|
@@ -1183,9 +1208,9 @@ paths:
|
|
|
/Repair.Export:
|
|
/Repair.Export:
|
|
|
post:
|
|
post:
|
|
|
tags:
|
|
tags:
|
|
|
- - 反馈
|
|
|
|
|
|
|
+ - 报修
|
|
|
operationId: RepairExport
|
|
operationId: RepairExport
|
|
|
- summary: 导出反馈
|
|
|
|
|
|
|
+ summary: 导出报修
|
|
|
requestBody:
|
|
requestBody:
|
|
|
required: true
|
|
required: true
|
|
|
content:
|
|
content:
|
|
@@ -1230,6 +1255,31 @@ paths:
|
|
|
success:
|
|
success:
|
|
|
$ref: "#/components/examples/success"
|
|
$ref: "#/components/examples/success"
|
|
|
|
|
|
|
|
|
|
+ /Repair.Delete:
|
|
|
|
|
+ post:
|
|
|
|
|
+ tags:
|
|
|
|
|
+ - 报修
|
|
|
|
|
+ operationId: RepairDelete
|
|
|
|
|
+ summary: 删除报修
|
|
|
|
|
+ requestBody:
|
|
|
|
|
+ required: true
|
|
|
|
|
+ content:
|
|
|
|
|
+ application/json:
|
|
|
|
|
+ schema:
|
|
|
|
|
+ oneOf:
|
|
|
|
|
+ - $ref: '#/components/schemas/IdsReq'
|
|
|
|
|
+ examples:
|
|
|
|
|
+ RepairDelete:
|
|
|
|
|
+ $ref: '#/components/examples/RepairDelete'
|
|
|
|
|
+ responses:
|
|
|
|
|
+ 200:
|
|
|
|
|
+ description: 请求成功
|
|
|
|
|
+ content:
|
|
|
|
|
+ application/json:
|
|
|
|
|
+ examples:
|
|
|
|
|
+ success:
|
|
|
|
|
+ $ref: "#/components/examples/success"
|
|
|
|
|
+
|
|
|
# 添加这个 swagger ui 会显示授权按钮
|
|
# 添加这个 swagger ui 会显示授权按钮
|
|
|
security:
|
|
security:
|
|
|
- bearerAuth: []
|
|
- bearerAuth: []
|
|
@@ -2365,3 +2415,9 @@ components:
|
|
|
RepairExport:
|
|
RepairExport:
|
|
|
value:
|
|
value:
|
|
|
createdAtStart: "2022-04-29 11:00:00"
|
|
createdAtStart: "2022-04-29 11:00:00"
|
|
|
|
|
+ FeedbackDelete:
|
|
|
|
|
+ value:
|
|
|
|
|
+ id: [1]
|
|
|
|
|
+ RepairDelete:
|
|
|
|
|
+ value:
|
|
|
|
|
+ id: [1]
|