| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- {
- "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": []
- }
|