|
@@ -17,6 +17,48 @@ const docTemplate = `{
|
|
|
"host": "{{.Host}}",
|
|
"host": "{{.Host}}",
|
|
|
"basePath": "{{.BasePath}}",
|
|
"basePath": "{{.BasePath}}",
|
|
|
"paths": {
|
|
"paths": {
|
|
|
|
|
+ "/Bank/QueryBankCusBankExtendConfigs": {
|
|
|
|
|
+ "get": {
|
|
|
|
|
+ "security": [
|
|
|
|
|
+ {
|
|
|
|
|
+ "ApiKeyAuth": []
|
|
|
|
|
+ }
|
|
|
|
|
+ ],
|
|
|
|
|
+ "produces": [
|
|
|
|
|
+ "application/json"
|
|
|
|
|
+ ],
|
|
|
|
|
+ "tags": [
|
|
|
|
|
+ "银行"
|
|
|
|
|
+ ],
|
|
|
|
|
+ "summary": "查询托管银行扩展配置信息",
|
|
|
|
|
+ "parameters": [
|
|
|
|
|
+ {
|
|
|
|
|
+ "type": "string",
|
|
|
|
|
+ "description": "托管银行编号",
|
|
|
|
|
+ "name": "cusbankid",
|
|
|
|
|
+ "in": "query",
|
|
|
|
|
+ "required": true
|
|
|
|
|
+ }
|
|
|
|
|
+ ],
|
|
|
|
|
+ "responses": {
|
|
|
|
|
+ "200": {
|
|
|
|
|
+ "description": "OK",
|
|
|
|
|
+ "schema": {
|
|
|
|
|
+ "type": "array",
|
|
|
|
|
+ "items": {
|
|
|
|
|
+ "$ref": "#/definitions/models.Bankcusbankextendconfig"
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ "500": {
|
|
|
|
|
+ "description": "Internal Server Error",
|
|
|
|
|
+ "schema": {
|
|
|
|
|
+ "$ref": "#/definitions/app.Response"
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
"/CPTrade/QueryCPTradeMyBidInfos": {
|
|
"/CPTrade/QueryCPTradeMyBidInfos": {
|
|
|
"get": {
|
|
"get": {
|
|
|
"security": [
|
|
"security": [
|
|
@@ -26878,6 +26920,50 @@ const docTemplate = `{
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ "models.Bankcusbankextendconfig": {
|
|
|
|
|
+ "type": "object",
|
|
|
|
|
+ "required": [
|
|
|
|
|
+ "cusbankid"
|
|
|
|
|
+ ],
|
|
|
|
|
+ "properties": {
|
|
|
|
|
+ "cusbankid": {
|
|
|
|
|
+ "description": "托管银行编号",
|
|
|
|
|
+ "type": "string"
|
|
|
|
|
+ },
|
|
|
|
|
+ "extendbiztype": {
|
|
|
|
|
+ "description": "扩展业务类型 - 1:签约 2:入金 3:出金 4:签约信息修改",
|
|
|
|
|
+ "type": "integer"
|
|
|
|
|
+ },
|
|
|
|
|
+ "fieldcode": {
|
|
|
|
|
+ "description": "字段代码",
|
|
|
|
|
+ "type": "string"
|
|
|
|
|
+ },
|
|
|
|
|
+ "fieldid": {
|
|
|
|
|
+ "description": "字段ID",
|
|
|
|
|
+ "type": "integer"
|
|
|
|
|
+ },
|
|
|
|
|
+ "fieldname": {
|
|
|
|
|
+ "description": "字段名称",
|
|
|
|
|
+ "type": "string"
|
|
|
|
|
+ },
|
|
|
|
|
+ "fieldtype": {
|
|
|
|
|
+ "description": "字段类型 - 1:扩展字段 2:协议字段",
|
|
|
|
|
+ "type": "integer"
|
|
|
|
|
+ },
|
|
|
|
|
+ "ismandatory": {
|
|
|
|
|
+ "description": "是否必填 - 0:不必填 1:必填",
|
|
|
|
|
+ "type": "integer"
|
|
|
|
|
+ },
|
|
|
|
|
+ "status": {
|
|
|
|
|
+ "description": "状态 - 0:正常 1:注销",
|
|
|
|
|
+ "type": "integer"
|
|
|
|
|
+ },
|
|
|
|
|
+ "usabletype": {
|
|
|
|
|
+ "description": "可用类型 - 1:通用 2:机构专用 3:投资者专用",
|
|
|
|
|
+ "type": "integer"
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
"models.Bscinoutorder": {
|
|
"models.Bscinoutorder": {
|
|
|
"type": "object",
|
|
"type": "object",
|
|
|
"required": [
|
|
"required": [
|