{ "openapi": "3.0.1", "info": { "title": "默认模块", "description": "", "version": "1.0.0" }, "tags": [], "paths": { "/admin/payNotify/page": { "get": { "summary": "分页查询列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "appId", "in": "query", "description": "", "required": true, "schema": { "type": "string" } }, { "name": "orderId", "in": "query", "description": "", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RPayNotifyRO", "description": "通知记录" }, "example": { "code": 0, "msg": "", "data": { "id": 0, "orderId": "", "status": 0, "nextNotifyTime": "", "lastExecuteTime": "", "notifyTimes": 0, "maxNotifyTimes": 0, "notifyUrl": "", "errorMsg": "", "payNotifyLogs": [ { "notifyTimes": 0, "response": "", "status": 0, "createTime": "" } ] } } } }, "headers": {} } }, "security": [] } } }, "components": { "schemas": { "PayNotifyLogRO": { "type": "object", "properties": { "notifyTimes": { "type": "integer", "description": "第几次被通知\n\n对应到{@link MchPayNotifyTask#getNotifyTimes()}" }, "response": { "type": "string", "description": "HTTP 响应结果" }, "status": { "type": "integer", "description": "支付通知状态\n\n枚举{@link PayNotifyStatusEnum}" }, "createTime": { "type": "string", "description": "创建时间" } } }, "PayNotifyRO": { "type": "object", "properties": { "id": { "type": "integer", "description": "", "format": "int64" }, "orderId": { "type": "string", "description": "平台订单ID" }, "status": { "type": "integer", "description": "通知状态\n\n枚举{@link PayNotifyStatusEnum}" }, "nextNotifyTime": { "type": "string", "description": "下一次通知时间" }, "lastExecuteTime": { "type": "string", "description": "最后一次执行时间" }, "notifyTimes": { "type": "integer", "description": "当前通知次数" }, "maxNotifyTimes": { "type": "integer", "description": "最大可通知次数" }, "notifyUrl": { "type": "string", "description": "通知地址" }, "errorMsg": { "type": "string", "description": "失败原因" }, "payNotifyLogs": { "type": "array", "items": { "$ref": "#/components/schemas/PayNotifyLogRO", "description": "com.mw.bridging.open.ro.PayNotifyLogRO" }, "description": "通知日志" } } }, "RPayNotifyRO": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "$ref": "#/components/schemas/PayNotifyRO", "description": "数据" } } } }, "securitySchemes": {} }, "servers": [], "security": [] }