|
|
@@ -707,6 +707,52 @@ const docTemplate = `{
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "/Bank/QueryAmtInByPaid": {
|
|
|
+ "get": {
|
|
|
+ "security": [
|
|
|
+ {
|
|
|
+ "ApiKeyAuth": []
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "produces": [
|
|
|
+ "application/json"
|
|
|
+ ],
|
|
|
+ "tags": [
|
|
|
+ "银行"
|
|
|
+ ],
|
|
|
+ "summary": "获取银行待支付地址",
|
|
|
+ "parameters": [
|
|
|
+ {
|
|
|
+ "type": "integer",
|
|
|
+ "description": "资金账户",
|
|
|
+ "name": "accountid",
|
|
|
+ "in": "query",
|
|
|
+ "required": true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "type": "string",
|
|
|
+ "description": "银行服务流水号",
|
|
|
+ "name": "exchticket",
|
|
|
+ "in": "query",
|
|
|
+ "required": true
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "responses": {
|
|
|
+ "200": {
|
|
|
+ "description": "OK",
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/models.Chillpayamtinrec"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "500": {
|
|
|
+ "description": "Internal Server Error",
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/definitions/app.Response"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
"/Bank/QueryBankBranChnumInfo": {
|
|
|
"get": {
|
|
|
"security": [
|
|
|
@@ -30164,6 +30210,111 @@ const docTemplate = `{
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "models.Chillpayamtinrec": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "accountid": {
|
|
|
+ "description": "账户ID",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "amount": {
|
|
|
+ "description": "入金金额,需要X100才能给接口调用",
|
|
|
+ "type": "number"
|
|
|
+ },
|
|
|
+ "channelcode": {
|
|
|
+ "description": "Reference code for the bank that received payment.",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "chillpay_desc": {
|
|
|
+ "description": "Payment information.",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "created_at": {
|
|
|
+ "description": "创建时间",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "currency": {
|
|
|
+ "description": "Currency data code such as \"764\".",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "customerid": {
|
|
|
+ "description": "End User’s reference code (accountid)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "customername": {
|
|
|
+ "description": "Payer Name(For QR Payment only)",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "deal_desc": {
|
|
|
+ "description": "状态描述",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "deal_status": {
|
|
|
+ "description": "入金状态 0-成功 1-失败 2-已发送 3-初始化",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "exch_date": {
|
|
|
+ "description": "交易日",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "exch_no": {
|
|
|
+ "description": "交易所编号",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "exch_seq": {
|
|
|
+ "description": "交易所流水号",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "id": {
|
|
|
+ "description": "自增ID",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "ipaddress": {
|
|
|
+ "description": "End user’s IP Address.",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "langcode": {
|
|
|
+ "description": "Language code to be displayed on the payment website of the bank.",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "merchantcode": {
|
|
|
+ "description": "Merchant ID.",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "orderno": {
|
|
|
+ "description": "Order number",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "paymentstatus": {
|
|
|
+ "description": "Payment result code from the bank.",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "paymenturl": {
|
|
|
+ "description": "URL to be redirected to the bank's payment page.",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "rec_version": {
|
|
|
+ "description": "乐观锁",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "returnurl": {
|
|
|
+ "description": "The URL that will be displayed when the End user completes the transaction.",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "token": {
|
|
|
+ "description": "Token code for reference list.",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "transactionid": {
|
|
|
+ "description": "Transaction Reference number for merchant.",
|
|
|
+ "type": "integer"
|
|
|
+ },
|
|
|
+ "updated_at": {
|
|
|
+ "description": "修改时间",
|
|
|
+ "type": "string"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
"models.Clientfixedadconfig": {
|
|
|
"type": "object",
|
|
|
"required": [
|