// GENERATED BY THE COMMAND ABOVE; DO NOT EDIT // This file was generated by swaggo/swag package docs import ( "bytes" "encoding/json" "strings" "github.com/alecthomas/template" "github.com/swaggo/swag" ) var doc = `{ "schemes": {{ marshal .Schemes }}, "swagger": "2.0", "info": { "description": "{{.Description}}", "title": "{{.Title}}", "termsOfService": "http://muchinfo.cn", "contact": {}, "version": "{{.Version}}" }, "host": "{{.Host}}", "basePath": "{{.BasePath}}", "paths": { "/CPTrade/QueryCPTradeMyBidInfos": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "产能预售" ], "summary": "查询产能预售我的出价信息", "parameters": [ { "type": "integer", "description": "资金账户", "name": "accountid", "in": "query", "required": true }, { "type": "integer", "description": "预售市场ID", "name": "marketid", "in": "query" }, { "type": "integer", "description": "预售商品ID", "name": "goodsid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/cptrade.QueryCPTradeMyBidRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/CPTrade/QueryCPTradeOrderDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "产能预售" ], "summary": "查询产能预售委托单信息", "parameters": [ { "type": "integer", "description": "预售商品ID", "name": "goodsid", "in": "query" }, { "type": "integer", "description": "预售市场ID", "name": "marketid", "in": "query" }, { "type": "string", "description": "预售商品ID列表 - 格式:1,2,3", "name": "goodsids", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/cptrade.QueryCPTradeOrderDetailRsq" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/CPTrade/QueryMyCPTradeGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "产能预售" ], "summary": "查询我的预售信息", "parameters": [ { "type": "integer", "description": "资金账户", "name": "accountid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/cptrade.QueryMyCPTradeGoodsRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/CPTrade/QueryPositionCancel": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "产能预售" ], "summary": "查询远期订单注销申请信息", "parameters": [ { "type": "integer", "description": "账户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "注销ID", "name": "cancelid", "in": "query" }, { "type": "integer", "description": "资金账户ID", "name": "accountid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/cptrade.Cptradepositioncancel" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/CPTrade/QueryPreasleApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "产能预售" ], "summary": "查询产能预售申请信息", "parameters": [ { "type": "integer", "description": "账户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "申请ID", "name": "applyid", "in": "query" }, { "type": "integer", "description": "资金账户ID", "name": "accountid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/cptrade.Cptradepresaleapply" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/CPTrade/QueryPresaleGoodsEx": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "产能预售" ], "summary": "查询产能预售商品扩展信息", "parameters": [ { "type": "integer", "description": "预售商品ID", "name": "goodsid", "in": "query" }, { "type": "integer", "description": "预售市场ID", "name": "marketid", "in": "query" }, { "type": "integer", "description": "预售模式 - 1:一口价 2:大宗式竞拍", "name": "presalemode", "in": "query" }, { "type": "string", "description": "预售商品ID列表 - 格式:1,2,3", "name": "goodsids", "in": "query" }, { "type": "string", "description": "预售商品代码", "name": "goodscode", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/cptrade.QueryPresaleGoodsExRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/CPTrade/QueryUserGoodsData": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "产能预售" ], "summary": "查询远期订单信息", "parameters": [ { "type": "integer", "description": "资金账户ID", "name": "accountid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/cptrade.Cptradeusergoodsdata" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/GetAllEnums": { "get": { "description": "autoid传入后则返回这个ID之后的数据;如不传则返回所有", "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "获取所有枚举信息", "parameters": [ { "type": "integer", "description": "起始自增ID", "name": "autoid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Enumdicitem" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/GetDivisions": { "get": { "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "查询区域信息", "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Division" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/GetServerTime": { "get": { "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "获取服务器时间", "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/NoticeReaded": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "通知公告设置已读请求", "parameters": [ { "type": "integer", "description": "登录账号", "name": "loginID", "in": "query", "required": true }, { "type": "integer", "description": "通知公告ID", "name": "noticeID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/QueryErrorInfos": { "get": { "description": "如果传入rowNumber,则返回此rowNumber后的数据", "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "获取数据库错误信息", "parameters": [ { "type": "string", "description": "起始行号前索引", "name": "rowNumber", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.QueryErrorInfosRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/QueryImageConfigs": { "get": { "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "查询轮播图配置信息", "parameters": [ { "type": "integer", "description": "类型 - 1:App首页轮播 2:我的", "name": "imageType", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Szdz2imageconfig" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/QueryNotice": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "通知公告系统消息查询", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "登录账号", "name": "loginID", "in": "query", "required": true }, { "type": "integer", "description": "消息类型 - 1:公告通知 2:系统消息", "name": "msgType", "in": "query" }, { "type": "boolean", "description": "是否只获取未读信息", "name": "onlyUnRead", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/common.QueryNoticeRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/QueryProvincesAndCities": { "get": { "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "查询省市信息(不包括区)", "parameters": [ { "type": "integer", "description": "省ID", "name": "provinceID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/common.QueryProvincesAndCitiesRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/QueryTableDefine": { "get": { "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "查询交易端列表头信息", "parameters": [ { "type": "string", "description": "表key", "name": "tableKey", "in": "query" }, { "type": "integer", "description": "列表类型 - 1:管理端 2:H5终端 3:移动终端", "name": "tableType", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/common.QueryTableDefineRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/QueryTraderMenu": { "get": { "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "查询交易端菜单", "parameters": [ { "type": "integer", "description": "登录账号", "name": "loginid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/common.QueryTraderMenuRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Delivery/QueryDeliveryRelation": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "交割服务" ], "summary": "查询商品交割关系表", "parameters": [ { "type": "integer", "description": "商品ID", "name": "goodsid", "in": "query" }, { "type": "integer", "description": "品种ID", "name": "deliverygoodsid", "in": "query" }, { "type": "integer", "description": "市场ID", "name": "marketid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/delivery.QueryDeliveryRelationRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/GetErmcpGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询企业风管期货商品信息", "parameters": [ { "type": "integer", "description": "已存末尾商品编号", "name": "lastID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Goods" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QryReportDayExposure": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询敞口日报表(菜单:报表查询/敞口报表/敞口日报表)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "交易日(格式:yyyyMMdd)", "name": "tradedate", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryReportExposureDayRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QryReportDayFinance": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询财务日报表(菜单:报表查询/财务报表/日报表)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "交易日(格式:yyyyMMdd)", "name": "tradedate", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryReportFinanceDayRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QryReportDayFinanceFp": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询财务日报表发票(菜单:报表查询/财务报表/日报表/发票)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "交易日(格式:yyyyMMdd)", "name": "tradedate", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryReportFinanceKxRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QryReportDayFinanceKx": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询财务日报表款项(菜单:报表查询/财务报表/日报表/款项)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "交易日(格式:yyyyMMdd)", "name": "tradedate", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryReportFinanceKxRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QryReportDaySpot": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询现货日报表(菜单:报表查询/现货报表/现货日报表)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "交易日(格式:yyyyMMdd)", "name": "tradedate", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryReportSpotDayRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QryReportDaySpotDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询现货日报表详情(菜单:报表查询/现货报表/现货日报表详情)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "现货商品id", "name": "wrstandardid", "in": "query", "required": true }, { "type": "string", "description": "交易日(格式:yyyyMMdd)", "name": "tradedate", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryReportDaySpotDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QryReportMonthFinance": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询财务月报表(菜单:报表查询/财务报表/月报表)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "周期时间:月(格式:yyyyMM)", "name": "cycletime", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryReportFinanceMonRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QryReportMonthSpot": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询现货月报表(菜单:报表查询/现货报表/现货月报表)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "周期时间:月(格式:yyyyMM)", "name": "cycletime", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryReportSpotMonRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QryReportMonthSpotDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询现货月报表详情(菜单:报表查询/现货月报表/现货月报表详情)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "现货商品id", "name": "wrstandardid", "in": "query", "required": true }, { "type": "string", "description": "周期时间:月(格式:yyyyMM)", "name": "cycletime", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryReportSpotMonthDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryAvaildGoodsGroup": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询可配置期货品种(菜单:商品信息/现货商品/新增现货商品/新增套保品种)", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryAvalidGPRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryBusinessDj": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询业务管理(点价)(对应菜单:业务管理/点价)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "UserId", "in": "query", "required": true }, { "type": "string", "description": "现货合同ID, 不填则查所有", "name": "relatedid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryBusinessDjRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryBusinessFp": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询财务管理(发票)(对应菜单:财务管理/发票)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "UserId", "in": "query", "required": true }, { "type": "string", "description": "现货合同ID, 不填则查所有", "name": "relatedid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryBussinessFpRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryBusinessJs": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询业务管理(结算)(对应菜单:业务管理/结算)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "UserId", "in": "query", "required": true }, { "type": "string", "description": "现货合同ID, 不填则查所有", "name": "relatedid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryBussinessJsRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryBusinessJsEx": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询业务管理(结算)(对应菜单:业务管理/结算[拆分记录])", "parameters": [ { "type": "integer", "description": "用户ID", "name": "UserId", "in": "query", "required": true }, { "type": "string", "description": "现货合同ID, 不填则查所有", "name": "relatedid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryBussinessJsExRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryBusinessKx": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询财务管理(款项)(对应菜单:财务管理/款项)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "UserId", "in": "query", "required": true }, { "type": "string", "description": "现货合同ID, 不填则查所有", "name": "relatedid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryBussinessKxRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryChangeLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询变更记录", "parameters": [ { "type": "string", "description": "用户ID", "name": "RelatedId", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryOPLogRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryContract": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询合同(采购和销售)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userId", "in": "query", "required": true }, { "type": "integer", "description": "合同类型 1-采购, -1-销售", "name": "contracttype", "in": "query", "required": true }, { "type": "integer", "description": "查询类型 1-全部 2-待点价 3-履约结算", "name": "querytype", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryErmcpRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryExposureDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询敞口现货明细", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "areaUserId", "in": "query", "required": true }, { "type": "integer", "description": "套保商品", "name": "middleGoodsId", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.ExposureDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryExposureHedgePosition": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询敞口期货头寸(菜单:敞口/期货头寸)", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "areaUserId", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.ExposureHedgePositionRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryExposureHedgePositionDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询敞口期货头寸期货明细(菜单:敞口/期货头寸/期货明细)", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "areaUserId", "in": "query", "required": true }, { "type": "integer", "description": "商品id", "name": "goodsId", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.ExposureHedgePosDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryExposureSpot": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询敞口现货头寸(敞口/现货头寸)", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "areaUserId", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.ExposureSpotRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryExposureSpotDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询敞口现货头寸明细(敞口/现货头寸/现货明细)", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "areaUserId", "in": "query", "required": true }, { "type": "integer", "description": "现货品种ID", "name": "wrstandardId", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.ExposureSpotDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryGGConvertConfig": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询期货品种配置(菜单:商品信息/期货品种)", "parameters": [ { "type": "integer", "description": "品种id(不填则查所有)", "name": "goodsgroupid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryGGCovertCfgRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryHedgePlan": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询套保计划", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userId", "in": "query", "required": true }, { "type": "string", "description": "套保计划状态(允许多个,逗号隔开) - 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "name": "HedgePlanStatus", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryHedgePlanRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryHisExposure": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询历史敞口(菜单:敞口/历史敞口)", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "areaUserId", "in": "query", "required": true }, { "type": "integer", "description": "每个品种记录数", "name": "lastNum", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.HisExposureRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryMiddleGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询套保品种(菜单:套保品种)", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "状态 0-停用 1-正常", "name": "status", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryMiddleGoodsRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryMiddleGoodsChangeLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询套保品种变更记录(菜单:套保品种/商品详情/变更记录)", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "套保品种id", "name": "middlegoodsid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryMGChangeLogRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryMiddleGoodsDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询套保品种详情(菜单:套保品种/商品详情)", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "套保品种id", "name": "middlegoodsid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryMiddleGoodsDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryRealtimeExposure": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询实时敞口", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "AreaUserID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.RealtimeExposureRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryRealtimeExposurePosition": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询实时敞口期货头寸明细(菜单:实时敞口/期货明细)", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "areaUserId", "in": "query", "required": true }, { "type": "integer", "description": "套保商品ID", "name": "middleGoodsId", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.RealtimeExposurePositionRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QuerySpotContract": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询现货合同(对应现货合同菜单)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userId", "in": "query", "required": true }, { "type": "integer", "description": "查询类型 1-未提交 2-待审核 3-履约中 4-已完成", "name": "QueryType", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QrySpotContractRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryUserInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询客户资料", "parameters": [ { "type": "integer", "description": "所属机构用户ID", "name": "MemberUserID", "in": "query", "required": true }, { "type": "integer", "description": "查询类型(1:未提交 2:待审核 3:正常 4:停用)", "name": "queryType", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryUserInfoRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryWrStandard": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询现货商品", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "状态 0-停用 1-正常", "name": "status", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryWrStandardRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryWrStandardDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询现货商品详情(菜单:现货品种/现货品种详情)", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "现货商品ID", "name": "wrstandardid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryWrStandardDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms2/QueryArbitrageStrategy": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理" ], "summary": "查询期现套利策略表信息(指定资金账户、未结束的)", "parameters": [ { "type": "integer", "description": "账户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "商品组ID(品种ID)", "name": "goodsgroupid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/erms2.QueryArbitrageStrategyRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms2/QueryInnerTradeDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理" ], "summary": "查询内部成交单信息", "parameters": [ { "type": "integer", "description": "资金账户", "name": "accountid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/erms2.QueryInnerTradeDetailRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms2/QuerySpotContract": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理" ], "summary": "查询现货合同表信息(指定策略ID、未结束的)", "parameters": [ { "type": "integer", "description": "策略申请ID", "name": "asapplyid", "in": "query", "required": true }, { "type": "integer", "description": "现货合同ID", "name": "spotcontractid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/erms2.QuerySpotContractRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms3/AddErms2ASApply": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "summary": "新增期现套利业务申请", "parameters": [ { "description": "申请参数", "name": "jsonBody", "in": "body", "required": true, "schema": { "$ref": "#/definitions/erms3.AddErms2ASApplyReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms3/AddErms2SpotTradeApply": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "summary": "新增现货贸易业务申请", "parameters": [ { "description": "申请参数", "name": "jsonBody", "in": "body", "required": true, "schema": { "$ref": "#/definitions/erms3.AddErms2SpotTradeApplyReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms3/AddSpotContractApply": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "summary": "新增现货合同申请", "parameters": [ { "description": "申请参数", "name": "jsonBody", "in": "body", "required": true, "schema": { "$ref": "#/definitions/erms3.AddSpotContractApplyReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/erms3.AddSpotContractApplyRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms3/AddUserInfoApply": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "summary": "新增客户申请", "parameters": [ { "description": "用户信息", "name": "jsonBody", "in": "body", "required": true, "schema": { "$ref": "#/definitions/erms3.AddUserInfoApplyReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms3/ModifyUserInfoApply": { "post": { "security": [ { "ApiKeyAuth": [] } ], "description": "保存草稿(撤回)- { \"userid\": int, \"userstate\": 1 } 提交审核 - { \"userid\": int, \"userstate\": 2 }", "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "summary": "修改客户申请", "parameters": [ { "description": "用户信息", "name": "jsonBody", "in": "body", "required": true, "schema": { "$ref": "#/definitions/erms3.ModifyUserInfoApplyReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms3/QueryBusinessInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "summary": "查询业务表单数据", "parameters": [ { "type": "string", "description": "资金账号ID列表,用逗号分隔", "name": "accountids", "in": "query", "required": true }, { "type": "integer", "description": "状态,0为未结束 1为已结束", "name": "status", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/erms3.QueryBusinessInfoRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms3/QueryPendingAuditContract": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "summary": "查询待审核合同", "parameters": [ { "type": "string", "description": "资金账号ID列表,逗号隔开", "name": "accountids", "in": "query", "required": true }, { "type": "integer", "description": "合同类型 1-采购 -1-销售", "name": "contracttype", "in": "query", "required": true }, { "type": "integer", "description": "合同模式 1-普通 2-回购", "name": "contractmode", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/erms3.QryAuditContractRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms3/QueryPendingBusiness": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "summary": "查询待审核基差贸易业务", "parameters": [ { "type": "string", "description": "资金账号ID列表,逗号隔开", "name": "accountids", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/erms3.QryPendingBizRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms3/QuerySpotContractAppleForm": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "summary": "查询合同申请表单数据", "parameters": [ { "type": "integer", "description": "登录账号", "name": "loginID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/erms3.QuerySpotContractAppleFormRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms3/QuerySpotContractDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "summary": "查询合同详细信息", "parameters": [ { "type": "string", "description": "资金账号ID列表,用逗号分隔", "name": "accountids", "in": "query", "required": true }, { "type": "integer", "description": "合同类型,1为采购合同 -1为销售合同", "name": "contracttype", "in": "query", "required": true }, { "type": "integer", "description": "合同模式,1为普通合同 2为回购销售合同", "name": "contractmode", "in": "query", "required": true }, { "type": "integer", "description": "状态,0为履约中 1为已完成", "name": "status", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/erms3.QuerySpotContractInfoRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms3/QueryUserInfoApplies": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "summary": "客户申请信息查询", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "客户名称,支持模糊查询", "name": "userName", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/erms3.QueryUserInfoAppliesRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Erms3/QueryUserInfos": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "summary": "客户信息查询", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "客户名称,支持模糊查询", "name": "userName", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/erms3.QueryUserInfosRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/GetHsbyMyCount": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明: 不包括已完成的数量。", "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "获取我的订单与包裹数量", "parameters": [ { "type": "string", "description": "资金账户列表,格式:1,2,3", "name": "accountIDs", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/hsby.GetHsbyMyCountRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryClientFixedADConfigs": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "获取终端固定广告配置", "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Clientfixedadconfig" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyBuyMyTradeDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询\"我的订单 - 已完成\"单据信息", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "资金账户列表,格式:1,2,3", "name": "accountIDs", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyBuyMyTradeDetail" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyGoodsOrderDetails": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明:查询结果已按委托价格和委托时间排序", "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询二级市场(挂牌点选)商品对应的挂牌委托单信息", "parameters": [ { "type": "integer", "description": "商品ID", "name": "goodsID", "in": "query", "required": true }, { "type": "string", "description": "摘牌方资金账户列表,格式:1,2,3。主要用于过滤自己的挂牌单", "name": "accountIDs", "in": "query" }, { "type": "integer", "description": "挂牌委托单方向(对手单方向),0:买 1:卖", "name": "buyOrSell", "in": "query" }, { "type": "number", "description": " 参考价格。对手单买方向委托单则价格大于等于(站在摘牌人的角度,摘牌方面是卖,我的闲置下单);对手单卖方向委托单则价格小于等于(站在摘牌人的角度,摘牌方面是买,热门商品下单)", "name": "price", "in": "query" }, { "type": "integer", "description": "档位,不传则默认为3档", "name": "speed", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyGoodsOrderDetail" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyListingGoodsDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明:“我的商品”详情中,二级(挂牌点选)和三级(商城)的商品详情都使用此接口", "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询二级市场(挂牌点选)商品信息详情", "parameters": [ { "type": "integer", "description": "商品ID", "name": "goodsID", "in": "query", "required": true }, { "type": "integer", "description": "资金账户,主要用于获取交易规则。不传则获取通用规则。", "name": "accountID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyListingGoodsDetail" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyMarketGoodsDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询三级市场(商城)商品信息详情", "parameters": [ { "type": "integer", "description": "委托单号", "name": "orderID", "in": "query", "required": true }, { "type": "integer", "description": "资金账户,主要用于判断商品最大开仓手数;如未登录可不传。", "name": "accountID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyMarketGoodsDetail" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyMarketGoodses": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询特卖商品列表(三级商城)", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "市场ID列表,格式:1,2,3", "name": "marketIDs", "in": "query", "required": true }, { "type": "integer", "description": "资金账户,用于判断商品是否有可用的优惠卷;同时只显示此账户所属机构下的商城委托单。", "name": "accountID", "in": "query", "required": true }, { "type": "integer", "description": "类别ID", "name": "categoryID", "in": "query" }, { "type": "string", "description": "商品ID列表,格式:1,2,3。主要用于商品搜索。", "name": "goodsIDs", "in": "query" }, { "type": "integer", "description": "优惠券类型ID,主要用于显示优惠卷对应的商品列表。", "name": "couponTypeID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyMarketGoods" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyMarkets": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询海商报业相关市场信息", "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyMarketInfo" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyMyBuyOrderDetails": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明: myBuyStatus: 1,2 - 待成交;3 - 已提交;4 - 已撤消;5 - 委托失败", "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询“我的订单”信息", "parameters": [ { "type": "string", "description": "资金账户列表,格式:1,2,3", "name": "accountIDs", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HybsMyBuyOrderDetail" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyMyGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明: 挂牌点选(tradeMode = 16)价格取last; 商城(tradeMode = 70)价格取goodsprice", "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询“我的商品”信息", "parameters": [ { "type": "string", "description": "资金账户列表,格式:1,2,3", "name": "accountIDs", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyMyGoods" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyMyPackages": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询我的包裹信息", "parameters": [ { "type": "string", "description": "资金账户列表,格式:1,2,3", "name": "accountIDs", "in": "query", "required": true }, { "type": "integer", "description": "提货状态 - 1:待发货 2:已发货 3:已收货", "name": "takeOrderStatus", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyMyPackage" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyPreGoodsDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询一级市场(预售)商品信息详情", "parameters": [ { "type": "integer", "description": "商品ID", "name": "goodsID", "in": "query", "required": true }, { "type": "integer", "description": "资金账户,主要用于获取预售商品购买上限", "name": "accountID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyPreGoodsDetail" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyPreGoodses": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明:结果已先显示已开始商品(按结束时间顺序排),再显示未开始商品(按开始时间顺序排)", "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询新品上市商品列表(一级市场预售)", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "市场ID列表,格式:1,2,3", "name": "marketIDs", "in": "query", "required": true }, { "type": "integer", "description": "目的地(省)ID", "name": "descProvinceID", "in": "query" }, { "type": "integer", "description": "目的地(市)ID", "name": "descCityID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyPreGoods" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbySellMyDetails": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明:发布中 - 二级市场卖挂,3:委托成功、7:部分成交; 已完成 - 二级市场成交单,包括历史数据。查询结果已按时间从近到远排序", "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询\"我的闲置\"单据信息", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "资金账户列表,格式:1,2,3", "name": "accountIDs", "in": "query", "required": true }, { "type": "integer", "description": "单据类型:0 - 发布中(默认), 1 - 已完成", "name": "orderType", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbySellMyDetail" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyTopGoodses": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明:查询结果已按Hotindex(景点热度)从大到小排序", "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询热卖商品列表(二级市场挂牌点选)", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "市场ID列表,格式:1,2,3", "name": "marketIDs", "in": "query", "required": true }, { "type": "integer", "description": "目的地(省)ID", "name": "descProvinceID", "in": "query" }, { "type": "integer", "description": "目的地(市)ID", "name": "descCityID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyTopGoods" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyVisitorMarketGoodsDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明:使用于未登录状态查询商城商品详情,登录后请使用QueryHsbyMarketGoodsDetail接口进行查询。", "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询游客三级市场(商城)商品信息详情", "parameters": [ { "type": "integer", "description": "商品ID", "name": "goodsID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyMarketGoodsDetail" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryHsbyVisitorMarketGoodses": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明:使用于未登录状态查询商城商品列表,登录后请使用QueryHsbyMarketGoodses接口进行查询。", "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询游客特卖商品列表(三级商城)", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "市场ID列表,格式:1,2,3", "name": "marketIDs", "in": "query", "required": true }, { "type": "integer", "description": "类别ID", "name": "categoryID", "in": "query" }, { "type": "string", "description": "商品ID列表,格式:1,2,3。主要用于商品搜索。", "name": "goodsIDs", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyMarketGoods" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryMyCollectionOrders": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "我的闲置中收款信息查询", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "资金账户,格式:1,2,3", "name": "accountIDs", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbySellCollectionOrder" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryMyCouponHolds": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明:当holdStatus传入4(已过期)后,会从历史表中查询已过期的优惠卷数据。", "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "我的优惠卷持仓查询", "parameters": [ { "type": "string", "description": "资金账户列表,格式:1,2,3", "name": "accountIDs", "in": "query", "required": true }, { "type": "string", "description": "持仓状态 - 1:未生效 2:已生效 3:已使用 4:已过期,格式:1,2,3", "name": "holdStatus", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.MyCouponHold" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryMyCoupons": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "我的优惠卷查询", "parameters": [ { "type": "string", "description": "资金账户列表,格式:1,2,3", "name": "accountIDs", "in": "query", "required": true }, { "type": "integer", "description": "商品ID, 一般与sellUserID配套传入", "name": "goodsID", "in": "query" }, { "type": "integer", "description": "卖方UserID", "name": "sellUserID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.MyCoupon" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryMyPayOrders": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "获取我的订单中待付款信息", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "资金账户列表,格式:1,2,3", "name": "accountIDs", "in": "query", "required": true }, { "type": "integer", "description": "买方委托单号", "name": "buyOrderID", "in": "query" }, { "type": "integer", "description": "卖方委托单号", "name": "sellOrderID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.HsbyBuyMyPayOrder" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryMyUsedCoupon": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "已使用优惠卷查询", "parameters": [ { "type": "string", "description": "资金账户列表,格式:1,2,3", "name": "accountIDs", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.MyUsedCoupon" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/QueryProvincesAndCities": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "查询结果只包括二级市场商品已关连的省市信息。", "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "查询省市信息(不包括区)", "parameters": [ { "type": "integer", "description": "省ID", "name": "provinceID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/hsby.QueryProvincesAndCitiesRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/HSBY/SetHsbyMyPackagesStatus": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【海商报业】" ], "summary": "设置我的包裹已收货状态", "parameters": [ { "type": "string", "description": "提货单号", "name": "takeOrderID", "in": "query", "required": true }, { "type": "integer", "description": "资金账号", "name": "accountID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Market/QueryGoodsesByLoginID": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用市场" ], "summary": "获取登录账号有权限的商品信息", "parameters": [ { "type": "integer", "description": "登录账号", "name": "loginID", "in": "query", "required": true }, { "type": "string", "description": "市场ID列表,格式:1,2,3", "name": "marketIDs", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Goods" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Market/QueryMarketRun": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用市场" ], "summary": "查询市场运行信息", "parameters": [ { "type": "integer", "description": "市场ID,不传返回所有", "name": "marketID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Marketrun" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Market/QueryMarketsByLoginID": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用市场" ], "summary": "获取登录账号有权限的市场信息", "parameters": [ { "type": "integer", "description": "登录账号", "name": "loginID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Market" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Order/QueryHisTradeDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用单据" ], "summary": "历史成交单查询(合约市场)", "parameters": [ { "type": "string", "description": "资金账户 - 格式:1,2,3", "name": "accountID", "in": "query", "required": true }, { "type": "integer", "description": "成交单号", "name": "tradeID", "in": "query" }, { "type": "integer", "description": "委托单号", "name": "orderID", "in": "query" }, { "type": "string", "description": "交易模式 - 格式:1,2,3", "name": "tradeMode", "in": "query" }, { "type": "integer", "description": "委托单据类型", "name": "buildType", "in": "query" }, { "type": "string", "description": "成交类别 - 格式:1,2,3", "name": "tradeType", "in": "query" }, { "type": "string", "description": "开始时间 - 闭区间,格式:yyyy-MM-dd", "name": "startDate", "in": "query" }, { "type": "string", "description": "结束时间 - 闭区间,格式:yyyy-MM-dd", "name": "endDate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/order.QueryHisTradeDetailRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Order/QueryHisTradeOrderDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用单据" ], "summary": "历史委托单查询请求(合约市场)", "parameters": [ { "type": "string", "description": "资金账户 - 格式:1,2,3", "name": "accountID", "in": "query", "required": true }, { "type": "string", "description": "交易模式 - 格式:1,2,3", "name": "tradeMode", "in": "query" }, { "type": "string", "description": "委托状态 - 格式:1,2,3", "name": "orderStatus", "in": "query" }, { "type": "integer", "description": "委托单号", "name": "orderID", "in": "query" }, { "type": "string", "description": "开始时间 - 闭区间,格式:yyyy-MM-dd", "name": "startDate", "in": "query" }, { "type": "string", "description": "结束时间 - 闭区间,格式:yyyy-MM-dd", "name": "endDate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/order.QueryHisTradeOrderDetailRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Order/QueryTradeDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用单据" ], "summary": "成交单查询(合约市场)", "parameters": [ { "type": "string", "description": "资金账户 - 格式:1,2,3", "name": "accountID", "in": "query", "required": true }, { "type": "integer", "description": "成交单号", "name": "tradeID", "in": "query" }, { "type": "integer", "description": "委托单号", "name": "orderID", "in": "query" }, { "type": "string", "description": "交易模式 - 格式:1,2,3", "name": "tradeMode", "in": "query" }, { "type": "integer", "description": "委托单据类型", "name": "buildType", "in": "query" }, { "type": "string", "description": "成交类别 - 格式:1,2,3", "name": "tradeType", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/order.QueryTradeDetailRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Order/QueryTradeOrderDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用单据" ], "summary": "委托单查询请求(合约市场)", "parameters": [ { "type": "string", "description": "资金账户 - 格式:1,2,3", "name": "accountID", "in": "query", "required": true }, { "type": "string", "description": "交易模式 - 格式:1,2,3", "name": "tradeMode", "in": "query" }, { "type": "string", "description": "委托状态 - 格式:1,2,3", "name": "orderStatus", "in": "query" }, { "type": "integer", "description": "委托单号", "name": "orderID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/order.QueryTradeOrderDetailRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Order/QueryTradePosition": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用单据" ], "summary": "持仓汇总查询(合约市场)", "parameters": [ { "type": "string", "description": "资金账户 - 格式:1,2,3", "name": "accountID", "in": "query", "required": true }, { "type": "string", "description": "交易模式 - 格式:1,2,3", "name": "tradeMode", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/order.QueryTradePositionRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Quote/QueryHistoryDatas": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "行情服务" ], "summary": "查询行情历史数据", "parameters": [ { "type": "integer", "description": "周期类型, 0-秒 1: 1分钟 2: 5分钟 3: 30分钟 4: 60分钟 120: 2小时 240: 4小时 11: 日线 10: Tik", "name": "cycleType", "in": "query", "required": true }, { "type": "string", "description": "商品代码", "name": "goodsCode", "in": "query", "required": true }, { "type": "string", "description": "开始时间,格式:yyyy-MM-dd HH:mm:ss", "name": "startTime", "in": "query" }, { "type": "string", "description": "结束时间,格式:yyyy-MM-dd HH:mm:ss", "name": "endTime", "in": "query" }, { "type": "integer", "description": "条数", "name": "count", "in": "query" }, { "type": "boolean", "description": "是否按时间顺序排序(默认为时间倒序排序)", "name": "isAsc", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/quote.HistoryData" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Quote/QueryTSData": { "get": { "produces": [ "application/json" ], "tags": [ "行情服务" ], "summary": "分时图数据查询", "parameters": [ { "type": "string", "description": "商品代码", "name": "goodsCode", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/quote.QueryTSDataRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/SZDZ/QueryConvertConfig": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【尚志大宗】" ], "summary": "查询交易系统转换设置", "parameters": [ { "type": "integer", "description": "转换类型 - 1:金点赞转交易 2:金点拍转交易 3:交易转金点赞(不设置) 4:交易转金点拍(不设置) 5:花生米转交易 6:交易转花生米(不设置)", "name": "convertType", "in": "query" }, { "type": "string", "description": "外部商品代码[JD\\PD]", "name": "outerGoodsCode", "in": "query" }, { "type": "string", "description": "内部商品ID列表[交易],格式:1,2,3", "name": "innerGoodsIDs", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Szdz3convertconfig" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/SZDZ/QueryConvertLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【尚志大宗】" ], "summary": "交易系统转换流水查询", "parameters": [ { "type": "string", "description": "资金账户 - 格式:1,2,3", "name": "accountID", "in": "query", "required": true }, { "type": "string", "description": "开始时间 - 闭区间,格式:yyyy-MM-dd HH:mm:ss", "name": "startDate", "in": "query" }, { "type": "string", "description": "结束时间 - 闭区间,格式:yyyy-MM-dd HH:mm:ss", "name": "endDate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/szdz.QueryConvertLogRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/SZDZ/QueryGoodsPickup": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【尚志大宗】" ], "summary": "商品提货单查询", "parameters": [ { "type": "string", "description": "资金账户 - 格式:1,2,3", "name": "accountID", "in": "query", "required": true }, { "type": "integer", "description": "提货状态 - 1:待发货 2:已发货 3:已收货", "name": "takeOrderStatus", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/szdz.QueryGoodsPickupRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/SZDZ/QueryRecieptOrder": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明:pagesize参数赋值不为0时表示需要分页;page参数从0开始计算", "produces": [ "application/json" ], "tags": [ "定制【尚志大宗】" ], "summary": "点选挂牌委托单据查询(摘牌大厅)", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "商品ID", "name": "goodsID", "in": "query", "required": true }, { "type": "string", "description": "所属账户名称", "name": "accountName", "in": "query" }, { "type": "integer", "description": "市场ID", "name": "marketID", "in": "query" }, { "type": "integer", "description": "方向 - 0:买 1:卖", "name": "buyorsell", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/szdz.QueryRecieptOrderRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/SZDZ/QuerySZDZTradePosition": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【尚志大宗】" ], "summary": "持仓汇总查询(尚志大宗)", "parameters": [ { "type": "integer", "description": "资金账户", "name": "accountID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/szdz.QuerySZDZTradePositionRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/SZDZ/SearchWhite": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "定制【尚志大宗】" ], "summary": "搜索白名单", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Szdz3searchwhitelist" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Search/SearchGoodses": { "get": { "description": "说明:使用检索内容模糊匹配商品代码和商品名称", "produces": [ "application/json" ], "tags": [ "检索服务" ], "summary": "检索商品信息", "parameters": [ { "type": "string", "description": "检索内容", "name": "content", "in": "query", "required": true }, { "type": "string", "description": "交易模式,格式:1,2,3", "name": "tradeModes", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.SearchGoods" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/TaAccount/GetTaAccounts": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "资金账户" ], "summary": "获取资金账户信息", "parameters": [ { "type": "integer", "description": "登录账户", "name": "loginID", "in": "query", "required": true }, { "type": "integer", "description": "账号类型 - 1:外部账号 2:内部账号 3:内部做市自营账号 4:内部做市接单账号", "name": "taAccountType", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Taaccount" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/TaAccount/QueryAmountLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "资金账户" ], "summary": "资金流水查询(当前)", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "资金账户 - 格式:1,2,3", "name": "accountID", "in": "query", "required": true }, { "type": "string", "description": "资金操作类型 - 格式:1,2,3", "name": "OperateType", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/taaccount.QueryAmountLogRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/TaAccount/QueryHisAmountLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "资金账户" ], "summary": "资金流水查询(历史)", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "资金账户 - 格式:1,2,3", "name": "accountID", "in": "query", "required": true }, { "type": "string", "description": "资金操作类型 - 格式:1,2,3", "name": "OperateType", "in": "query" }, { "type": "string", "description": "开始时间 - 闭区间,格式:yyyy-MM-dd", "name": "startDate", "in": "query" }, { "type": "string", "description": "结束时间 - 闭区间,格式:yyyy-MM-dd", "name": "endDate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/taaccount.QueryHisAmountLogRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Trade/QueryRecieptOrder": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "说明:pagesize参数赋值不为0时表示需要分页;page参数从0开始计算", "produces": [ "application/json" ], "tags": [ "通用交易" ], "summary": "点选挂牌委托单据查询(保证金摘牌大厅)", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "商品ID", "name": "goodsID", "in": "query", "required": true }, { "type": "string", "description": "所属账户名称", "name": "accountName", "in": "query" }, { "type": "integer", "description": "市场ID", "name": "marketID", "in": "query" }, { "type": "integer", "description": "方向 - 0:买 1:卖", "name": "buyorsell", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/trade.QueryRecieptOrderRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/AddMessageBoard": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "添加用户留言板信息", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userID", "in": "query", "required": true }, { "type": "string", "description": "留言信息", "name": "message", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/AddUserFavoriteGoods": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "添加用户商品收藏信息", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userID", "in": "query", "required": true }, { "type": "integer", "description": "商品ID", "name": "goodsID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/GetLoginID": { "get": { "description": "UserName 可传入“登录账号”、“登录代码”和“手机号码”", "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "获取登录ID", "parameters": [ { "type": "string", "description": "登录代码", "name": "username", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/GetUserAccount": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "获取用户账号信息", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Useraccount" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/GetUserAuthStatus": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "获取用户实名认证状态", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/QueryMessageBoard": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "获取用户留言板信息", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Messageboard" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/QueryUserFavoriteGoodses": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "获取用户商品收藏信息", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Userfavoritegoods" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/QueryUserInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "获取用户信息", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Userinfo" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/QueryUserReferNum": { "get": { "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "获取用户邀请码", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/RemoveUserFavoriteGoods": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "移除用户商品收藏信息", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userID", "in": "query", "required": true }, { "type": "integer", "description": "商品ID", "name": "goodsID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/UpdateUserAccountStatus": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "更新用户状态", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userID", "in": "query", "required": true }, { "type": "integer", "description": "账户状态 - 4:正常 6:注销(停用)", "name": "accountStatus", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WR/GetWRCategoryInfo": { "get": { "produces": [ "application/json" ], "tags": [ "仓单服务" ], "summary": "获取现货分类信息", "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.WRCategoryTree" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WRTrade/GetAllDeliveryGoods": { "get": { "security": [ { "ApiKeyAuth": [] }, { "ApiKeyAuth": [] } ], "produces": [ "application/json", "application/json" ], "tags": [ "仓单贸易", "仓单贸易" ], "summary": "获取带仓单分类的种类信息", "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } } }, "definitions": { "app.Response": { "type": "object", "properties": { "code": { "type": "integer" }, "data": { "type": "object" }, "msg": { "type": "string" }, "page": { "description": "页码", "type": "integer" }, "pagesize": { "description": "每页条数", "type": "integer" }, "total": { "description": "总条数", "type": "integer" } } }, "common.QueryNoticeRsp": { "type": "object", "required": [ "autoid" ], "properties": { "auditoruserid": { "description": "审核人", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "audittime": { "description": "审核日期", "type": "string" }, "autoid": { "description": "自增ID", "type": "integer" }, "content": { "description": "内容", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "建仓人", "type": "integer" }, "endtime": { "description": "结束时间", "type": "string" }, "istop": { "description": "是否置顶 - 0:不置顶 1:置顶", "type": "integer" }, "msgiconurl": { "description": "消息图标Url", "type": "string" }, "msgtype": { "description": "消息类型 - 1:公告通知 2:系统消息 3:商品到期提货通知", "type": "integer" }, "publisher": { "description": "消息发布者", "type": "string" }, "readed": { "description": "是否已读", "type": "boolean" }, "scheduletime": { "description": "计划发送时间", "type": "string" }, "sendtype": { "description": "推送方式 - 1:全体广播 2:按会员广播 3:个人推送 4:按会员广播(仅会员)", "type": "integer" }, "sentstatus": { "description": "推送状态 - 0:未推送 1:已推送 2:审核拒绝", "type": "integer" }, "title": { "description": "标题", "type": "string" }, "userid": { "description": "会员/投资者ID推送方式 为 个人时,填写投资者ID", "type": "integer" } } }, "common.QueryProvincesAndCitiesRsp": { "type": "object", "properties": { "cities": { "description": "市", "type": "array", "items": { "$ref": "#/definitions/models.Division" } }, "province": { "description": "省", "$ref": "#/definitions/models.Division" } } }, "common.QueryTableDefineRsp": { "type": "object", "required": [ "tablekey" ], "properties": { "columns": { "description": "列头信息数组", "type": "array", "items": { "$ref": "#/definitions/models.Tablecolumnconfig" } }, "remark": { "description": "Remark", "type": "string" }, "tabelmenu": { "description": "列表菜单", "type": "string" }, "tablekey": { "description": "列表Key", "type": "string" }, "tablename": { "description": "列表名称", "type": "string" }, "tabletype": { "description": "列表类型 - 1:管理端 2:终端", "type": "integer" } } }, "common.QueryTraderMenuRsp": { "type": "object", "properties": { "OperationMenu": { "description": "功能菜单", "type": "array", "items": { "$ref": "#/definitions/models.OperationPrimaryMenu" } }, "QuoteMenu": { "description": "报价牌分类菜单", "type": "array", "items": { "$ref": "#/definitions/models.QuotePrimaryMenu" } } } }, "cptrade.Cptradepositioncancel": { "type": "object", "required": [ "cancelid" ], "properties": { "accountid": { "description": "申请人账户ID", "type": "integer" }, "applystatus": { "description": "申请状态 - 1:已提交 2:初审通过 3:初审拒绝 4:初审失败 5复审通过 6:复审拒绝 7:复审失败 8:已撤销", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "cancelid": { "description": "注销ID(SEQ_CPTRADE_POSITIONCANCEL)", "type": "integer" }, "cancelqty": { "description": "注销数量", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人ID", "type": "integer" }, "creatorname": { "description": "创建人", "type": "string" }, "goodscode": { "description": "订单商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "订单商品名称", "type": "string" }, "goodunit": { "description": "报价单位", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketname": { "description": "市场名称", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "申请人ID", "type": "integer" } } }, "cptrade.Cptradepresaleapply": { "type": "object", "required": [ "applyid" ], "properties": { "accountid": { "description": "申请人账户ID", "type": "integer" }, "applyid": { "description": "申请ID(181+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "applyremark": { "description": "申请备注", "type": "string" }, "applystatus": { "description": "申请状态 - 1:已提交 2:初审通过 3:初审拒绝 4:初审失败 5复审通过 6:复审拒绝 7:复审失败 8:已撤销", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "attachmenturl": { "description": "附件地址", "type": "string" }, "endtime": { "description": "预售结束时间", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunit": { "description": "报价单位", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "marketid": { "description": "预售市场ID", "type": "integer" }, "marketname": { "description": "预售市场名称", "type": "string" }, "presaleqty": { "description": "预售数量", "type": "integer" }, "relatedgoodscode": { "description": "关联交易合约代码", "type": "string" }, "relatedgoodsid": { "description": "关联交易合约ID", "type": "integer" }, "relatedgoodsname": { "description": "关联交易合约名称", "type": "string" }, "starttime": { "description": "预售开始时间", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "trademode": { "description": "交易模式 - 16:挂牌点选 21:大宗竞拍", "type": "integer" }, "userid": { "description": "申请人ID", "type": "integer" } } }, "cptrade.Cptradeusergoodsdata": { "type": "object", "required": [ "accountid", "goodsid" ], "properties": { "EnabledQty": { "description": "可用量", "type": "integer" }, "GoodsCode": { "description": "订单商品代码", "type": "string" }, "GoodsName": { "description": "订单商品名称", "type": "string" }, "WRStandardCode": { "description": "仓单标准代码", "type": "string" }, "WRStandardName": { "description": "仓单标准名称", "type": "string" }, "accountid": { "description": "账户ID", "type": "integer" }, "cancelqty": { "description": "注销量", "type": "integer" }, "curpresaleqty": { "description": "当前预售量", "type": "integer" }, "deliveryqty": { "description": "交割量", "type": "integer" }, "freezeamount": { "description": "冻结金额", "type": "number" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodunit": { "description": "报价单位", "type": "string" }, "hasspotfreeze": { "description": "是否有现货冻结 - 0:否 1:有", "type": "integer" }, "inqty": { "description": "转入量(总数量)", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "presaledamount": { "description": "已预售总金额", "type": "integer" }, "presaledqty": { "description": "已预售量", "type": "integer" }, "userid": { "description": "用户ID", "type": "integer" }, "wrstandardid": { "description": "仓单标准ID", "type": "integer" } } }, "cptrade.QueryCPTradeMyBidRsp": { "type": "object", "required": [ "accountid", "goodsid", "marketid", "orderid", "orderqty", "ordertime", "tradeprice", "tradeqty" ], "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodunit": { "description": "报价单位", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "orderid": { "description": "委托单号(100+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "integer" }, "orderprice": { "description": "委托价格", "type": "number" }, "orderqty": { "description": "委托数量", "type": "integer" }, "ordertime": { "description": "委托时间", "type": "string" }, "ordertotalprice": { "description": "货款金额(委托总价格=委托价格*委托数量*合约单位)", "type": "number" }, "ordertotalweight": { "description": "竞拍总重量(委托总重量=委托数量*合约单位)", "type": "integer" }, "totaltotalprice": { "description": "成交货款金额(成交总价格=成交价格*成交数量*合约单位)", "type": "number" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeqty": { "description": "成交数量", "type": "integer" } } }, "cptrade.QueryCPTradeOrderDetailRsq": { "type": "object", "required": [ "accountid", "buildtype", "buyorsell", "goodsid", "marketid", "memberuserid", "operatetype", "orderqty", "ordertime", "pricemode", "strorderid", "tradedate", "validtype" ], "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "buildtype": { "description": "委托单据类型 - 1:建仓 2:平仓 3:先平后建", "type": "integer" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "cancelorderid": { "description": "撤单单号(撤单时填写)", "type": "integer" }, "cancelqty": { "description": "撤单数量", "type": "integer" }, "clientordertime": { "description": "客户端委托时间", "type": "string" }, "clientticket": { "description": "客户端流水号", "type": "string" }, "clienttype": { "description": "客户端类型 - 0:保留为未填终端类型 1:PC管理端 2:PC交易端 3:手机客户端_安卓 4:网页客户端 5:微信客户端 6:手机客户端_苹果 7:网上开户客户端 8:无效终端编号 9:报价终端(中江)", "type": "integer" }, "closeexchagechargevalue": { "description": "平仓交易所手续费设置值", "type": "number" }, "closefeealgorithm": { "description": "平仓手续费收取方式 1:比率 2:固定", "type": "integer" }, "closefreezecharge": { "description": "平仓冻结手续费(先建后平操作,需要记录)", "type": "number" }, "closememberchargevalue": { "description": "平仓会员手续费设置值", "type": "number" }, "closeqty": { "description": "平仓数量(先建后平操作 需要记录)", "type": "integer" }, "closetradeqty": { "description": "平仓成交数量(先建后平操作,需要记录)", "type": "integer" }, "closeunfreezecharge": { "description": "平仓解冻手续费(先建后平操作,需要记录)", "type": "number" }, "delistingtype": { "description": "摘牌类型 - 1:价格最优 2:点选成交", "type": "integer" }, "freezecharge": { "description": "冻结手续费", "type": "number" }, "freezemargin": { "description": "冻结保证金(冻结交易金额)", "type": "number" }, "gcaccountid": { "description": "账户ID[合约币种]", "type": "integer" }, "goodsid": { "description": "商品ID", "type": "integer" }, "isconfirmexercise": { "description": "是否确认行权- 0:否 1:是", "type": "integer" }, "ispreexercise": { "description": "是否预申报- 0:否 1:是", "type": "integer" }, "listingselecttype": { "description": "挂牌点选类型 - 1:挂牌 2:摘牌 3:先摘后挂", "type": "integer" }, "marginalgorithm": { "description": "保证金收取方式 1:比率 2:固定", "type": "integer" }, "marginvalue": { "description": "即市保证金设置值", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketmaxsub": { "description": "市价最大偏移范围", "type": "number" }, "memberuserid": { "description": "所属会员UserID", "type": "integer" }, "openexchagechargevalue": { "description": "建仓交易所手续费设置值", "type": "number" }, "openfeealgorithm": { "description": "建仓手续费收取方式 1:比率 2:固定", "type": "integer" }, "openfreezecharge": { "description": "开仓冻结手续费(先建后平操作,需要记录)", "type": "number" }, "openmemberchargevalue": { "description": "建仓会员手续费设置值", "type": "number" }, "openqty": { "description": "开仓数量(先建后平操作,需要记录)", "type": "integer" }, "opentradeqty": { "description": "开仓成交数量(先建后平操作,需要记录)", "type": "integer" }, "openunfreezecharge": { "description": "开仓解冻手续费(先建后平操作,需要记录)", "type": "number" }, "operatetype": { "description": "操作类型 - 1:正常下单 2:斩仓 3:转单 4:结算撤单 5:系统卖出(适用于先平后建的卖出) 6:行情源报价 7:(结算)到期强平 8:(结算)协议转让 9:系统对冲单 10:(结算)到期无效 11:交割协议转让 12:交割协议平仓 13:交割成交(所有权) 14:管理端强行平仓 15:管理端协议转让", "type": "integer" }, "operatorid": { "description": "登录账号(LoginID)", "type": "integer" }, "optiontype": { "description": "期权类型 - 1:认购(看涨) 2:认沽(看跌)", "type": "integer" }, "orderprice": { "description": "委托价格", "type": "number" }, "orderqty": { "description": "委托数量", "type": "integer" }, "ordersrc": { "description": "委托来源 - 1:客户端 2:管理端 3:风控服务 4:交割服务 5:交易服务 6:交易日结 7:商品强平 8:管理端商品退市强平 9:交易接口 10:交割服务商被动(受托竞价) 11:预埋触发", "type": "integer" }, "orderstatus": { "description": "委托状态 - 1: 委托请求 2:待冻结 3:委托成功 4: 委托失败 5:配对成功 6: 已撤销 7:部分成交 8:已成交 9:部成部撤 10:成交失败 11:已拒绝 12:经过摘牌(先摘后挂专用-先摘后挂已摘过) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用)", "type": "integer" }, "ordertime": { "description": "委托时间", "type": "string" }, "preexerciseprice": { "description": "预申报价格", "type": "number" }, "premium": { "description": "权利金", "type": "number" }, "preorderid": { "description": "关联预埋单号(止盈止损单时填写)", "type": "integer" }, "pricemode": { "description": "取价方式 - 1:市价 2: 限价", "type": "integer" }, "quoteid": { "description": "报价单ID", "type": "integer" }, "relatedid": { "description": "关联单号(交割单)", "type": "integer" }, "retcode": { "description": "错误代码", "type": "integer" }, "sessionid": { "description": "会话ID", "type": "integer" }, "strorderid": { "description": "委托单号", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeproperty": { "description": "交易属性", "type": "integer" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "unfreezecharge": { "description": "解冻手续费", "type": "number" }, "unfreezemargin": { "description": "解冻保证金", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "uuid": { "description": "发起端唯一id", "type": "string" }, "validtime": { "description": "有效期限", "type": "string" }, "validtype": { "description": "有效类型 - 1当日有效 2本周有效 3指定日期有效 4一直有效 5指定时间有效", "type": "integer" }, "volumetype": { "description": "当时间有效类型为 “立即执行否则取消 IOC” 时,需要此项 - 0:任意量 1:最小量(暂时不支持) 2:全部量", "type": "integer" } } }, "cptrade.QueryMyCPTradeGoodsRsp": { "type": "object", "required": [ "goodscode", "goodsid", "goodsname", "marketid", "relatedgoodscode", "relatedgoodsname" ], "properties": { "accountid": { "description": "卖方账户ID", "type": "integer" }, "agreeunit": { "description": "合约单位", "type": "number" }, "applyid": { "description": "关联申请ID", "type": "integer" }, "attachmenturl": { "description": "附件地址", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "currencyid": { "description": "报价货币ID", "type": "integer" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "endtime": { "description": "预售结束时间", "type": "string" }, "floorprice": { "description": "底价[大宗式竞拍]", "type": "number" }, "goodscode": { "description": "商品代码(预售)", "type": "string" }, "goodsdetail": { "description": "详情[大宗]", "type": "string" }, "goodsid": { "description": "商品ID(自增ID SEQ_GOODS)", "type": "integer" }, "goodsname": { "description": "商品名称(预售)", "type": "string" }, "goodunit": { "description": "报价单位", "type": "string" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "marketname": { "description": "预售市场名称", "type": "string" }, "presaledamount": { "description": "已预售总金额(预售结束时更新)", "type": "number" }, "presaledqty": { "description": "已预售量(预售结束时更新)", "type": "integer" }, "presalemode": { "description": "预售模式 - 1:一口价 2:大宗式竞拍", "type": "integer" }, "presaleqty": { "description": "预售数量", "type": "integer" }, "refprice": { "description": "参考价格[一口价]", "type": "number" }, "relatedgoodscode": { "description": "商品代码(订单)", "type": "string" }, "relatedgoodsid": { "description": "关联交易合约ID", "type": "integer" }, "relatedgoodsname": { "description": "商品名称(订单)", "type": "string" }, "relatedmarketid": { "description": "关联交易合约市场ID", "type": "integer" }, "sellstatus": { "description": "卖方处理状态 - 1:卖方头寸未处理 2:卖方头寸已处理", "type": "integer" }, "startprice": { "description": "起拍价[大宗式竞拍]", "type": "number" }, "starttime": { "description": "预售开始时间", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价[大宗]", "type": "number" }, "userid": { "description": "卖方用户ID", "type": "integer" } } }, "cptrade.QueryPresaleGoodsExRsp": { "type": "object", "required": [ "goodsid" ], "properties": { "attachmenturl": { "description": "附件地址", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "endtime": { "description": "预售结束时间", "type": "string" }, "floorprice": { "description": "底价[大宗式竞拍]", "type": "number" }, "goodsdetail": { "description": "详情[大宗]", "type": "string" }, "goodsid": { "description": "商品ID(预售)", "type": "integer" }, "goodunit": { "description": "报价单位", "type": "string" }, "marketid": { "description": "预售市场ID - 根据预售模式选择市场", "type": "integer" }, "presaledamount": { "description": "已预售总金额(预售结束时更新)", "type": "number" }, "presaledqty": { "description": "已预售量(预售结束时更新)", "type": "integer" }, "presalemode": { "description": "预售模式 - 1:一口价 2:大宗式竞拍", "type": "integer" }, "presaleqty": { "description": "预售数量", "type": "integer" }, "refprice": { "description": "参考价格[一口价]", "type": "number" }, "relatedgoodsid": { "description": "关联交易合约ID", "type": "integer" }, "relatedmarketid": { "description": "关联交易合约市场ID", "type": "integer" }, "sellstatus": { "description": "卖方处理状态 - 1:卖方头寸未处理 2:卖方头寸已处理", "type": "integer" }, "startprice": { "description": "起拍价[大宗式竞拍]", "type": "number" }, "starttime": { "description": "预售开始时间", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价[大宗]", "type": "number" } } }, "delivery.QueryDeliveryRelationRsp": { "type": "object", "required": [ "begindate", "enddate", "goodsid", "mindeliveryqty", "xdeliveryratio" ], "properties": { "begindate": { "description": "起始日期(yyyyMMdd)", "type": "string" }, "buytemplateid": { "description": "买履约计划模板ID", "type": "integer" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "交割商品", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "deliverymode": { "description": "交割方式 - 1:点选式 2:申报式", "type": "integer" }, "deliverypricerule": { "description": "交割价规则- 1:行情价 2:建仓价", "type": "integer" }, "deliverytype": { "description": "交割模式 - 1:X交割 2:X+P交割 3:X+C交割 4:X+P+C交割", "type": "integer" }, "enddate": { "description": "结束日期(yyyyMMdd)", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "交易合约ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "mindeliveryqty": { "description": "最小交割系数(K)", "type": "integer" }, "p2deliveryprice": { "description": "P2合约价格(商品价时填写0,固定值时填写固定值)", "type": "number" }, "p2deliveryratio": { "description": "P2合约系数(p)", "type": "integer" }, "p2goodsid": { "description": "P2合约ID", "type": "integer" }, "p2pricemode": { "description": "P2合约价格方式 - 1:商品价 2:固定值", "type": "integer" }, "pdeliveryprice": { "description": "P合约价格(商品价时填写0,固定值时填写固定值)", "type": "number" }, "pdeliveryratio": { "description": "P合约系数(n)", "type": "integer" }, "pgoodsid": { "description": "P合约ID", "type": "integer" }, "ppricemode": { "description": "P合约价格方式 - 1:商品价 2:固定值", "type": "integer" }, "rratio": { "description": "兑换系数(R)", "type": "integer" }, "rratio1": { "description": "兑换系数(交易合约)(R1)", "type": "integer" }, "rratio2": { "description": "兑换系数(仓单标准)(R2)", "type": "integer" }, "selltemplateid": { "description": "卖履约计划模板ID", "type": "integer" }, "wrstandardid": { "description": "仓单标准ID", "type": "integer" }, "xdeliveryratio": { "description": "交易合约系数(m)", "type": "integer" } } }, "ermcp.ExposureDetailRsp": { "type": "object", "properties": { "areauserid": { "description": "机构ID", "type": "integer" }, "changeQty": { "description": "套保变动量", "type": "number" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "convertfactor": { "description": "标仓系数", "type": "number" }, "convertratio": { "description": "套保系数", "type": "number" }, "createtime": { "description": "时间", "type": "string" }, "enumdicname": { "description": "现货商品单位名称", "type": "string" }, "logtype": { "description": "类型 - 1:套保计划 2:现货合同", "type": "integer" }, "middlegoodsId": { "description": "套保商品id", "type": "integer" }, "middlegoodscode": { "description": "套保商品代码", "type": "string" }, "middlegoodsname": { "description": "套保商品名称", "type": "string" }, "qty": { "description": "数量", "type": "number" }, "relateNo": { "description": "现货合同/套保计划编号", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "ermcp.ExposureHedgePosDetailRsp": { "type": "object", "properties": { "buyorsell": { "description": "买卖方向 0-买 1-卖", "type": "integer" }, "channelbuildtype": { "description": "开平方向 1-建仓 2-平仓", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsname": { "description": "商品名称", "type": "string" }, "hedgegoodsid": { "description": "商品id", "type": "integer" }, "tradeqty": { "description": "数量(成交数量)", "type": "integer" }, "tradetime": { "description": "时间(成交时间)", "type": "string" } } }, "ermcp.ExposureHedgePositionRsp": { "type": "object", "properties": { "accountid": { "description": "资金账号[外部母账户]", "type": "integer" }, "curbuyposition": { "description": "期末买头寸", "type": "integer" }, "cursellposition": { "description": "期末卖头寸", "type": "integer" }, "curtdbuyposition": { "description": "期末今日买头寸", "type": "integer" }, "curtdsellposition": { "description": "期末今日卖头寸", "type": "integer" }, "curydbuyposition": { "description": "期末上日买头寸", "type": "integer" }, "curydsellposition": { "description": "期末上日卖头寸", "type": "integer" }, "decreaseqty": { "description": "减少数量 = (期末卖头寸 - 期初卖头寸)*-1", "type": "integer" }, "fretdbuyposition": { "description": "冻结今日买头寸", "type": "integer" }, "fretdsellposition": { "description": "冻结今日卖头寸", "type": "integer" }, "freydbuyposition": { "description": "冻结上日买头寸", "type": "integer" }, "freydsellposition": { "description": "冻结上日卖头寸", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品id", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "hedgeaccountcode": { "description": "对冲账号", "type": "string" }, "hedgegoodsid": { "description": "对冲合约ID", "type": "integer" }, "increaseqty": { "description": "增加数量 = 期末买头寸 - 期初买头寸", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "relateduserid": { "description": "关联用户id", "type": "integer" }, "totalcurqty": { "description": "当前数量(净头寸) = 期末买头寸 - 期末卖头寸", "type": "integer" }, "totalydqty": { "description": "昨日数量(净头寸) = 期初买头寸 - 期初卖头寸", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "ydbuyposition": { "description": "期初买头寸", "type": "integer" }, "ydsellposition": { "description": "期初卖头寸", "type": "integer" } } }, "ermcp.ExposureSpotDetailRsp": { "type": "object", "properties": { "contracttype": { "description": "合同类型 1-采购 -1-销售", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "enumdicname": { "description": "现货商品单位名称", "type": "string" }, "logtype": { "description": "记录类型 1-套保 2-现货合同", "type": "integer" }, "qty": { "description": "数量", "type": "number" }, "recordname": { "description": "类型名称", "type": "string" }, "relatedid": { "description": "套保计划ID/现货合同ID", "type": "string" }, "relatedno": { "description": "编号", "type": "string" }, "strtime": { "description": "时间", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "ermcp.ExposureSpotRsp": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "decreaseqty": { "description": "减少数量=-(销售已定价数量+采购计划数量)", "type": "number" }, "increaseqty": { "description": "增加数量=销售计划数量+采购已定价数量", "type": "number" }, "oritoalspotqty": { "description": "昨日数量", "type": "number" }, "totalspotqty": { "description": "当前数量(现货头寸总量) = (销售计划数量 - 销售已定价数量) - (采购计划数量 - 采购已定价数量)", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "wrstandardcode": { "description": "现货品种代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货品种", "type": "string" } } }, "ermcp.HisExposureRsp": { "type": "object", "properties": { "data": { "description": "历史敞口", "type": "array", "items": { "$ref": "#/definitions/models.ErmcpHisExposure" } }, "enumdicname": { "description": "单位名称", "type": "string" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" } } }, "ermcp.QryAvalidGPRsp": { "type": "object", "properties": { "goodsgroupid": { "description": "期货品种id", "type": "integer" }, "goodsgroupname": { "description": "期货品种名称", "type": "string" }, "goodunitid": { "description": "品种单位id", "type": "integer" }, "goodunitname": { "description": "品种单位名称", "type": "string" }, "outergroupcode": { "description": "期货品种代码", "type": "string" } } }, "ermcp.QryBusinessDjRsp": { "type": "object", "properties": { "amount": { "description": "点价金额=(点价价格+升贴水)*点价数量", "type": "number" }, "applyid": { "description": "申请人", "type": "string" }, "applyname": { "description": "申请人名称", "type": "string" }, "applystatus": { "description": "申请状态 - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "attachurl": { "description": "附件", "type": "string" }, "auditname": { "description": "审核人名称", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "buyusername": { "description": "采购方名称", "type": "string" }, "contractno": { "description": "合同编号", "type": "string" }, "contractstatus": { "description": "合同状态- 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "type": "integer" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "点价合约", "type": "string" }, "goodsname": { "description": "商品名称", "type": "string" }, "operateapplyid": { "description": "操作申请ID(603+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "operateapplytype": { "description": "操作申请类型 - 1:点价 2:结算登记 3:款项登记 4:发票登记", "type": "integer" }, "pricedPrice": { "description": "点价价格(非必填)", "type": "number" }, "pricedQty": { "description": "点价数量(非必填)", "type": "number" }, "pricemove": { "description": "升贴水", "type": "number" }, "pricetype": { "description": "定价类型 - 1:一口价 2:点价 3:暂定价", "type": "integer" }, "relatedid": { "description": "现货合同ID", "type": "string" }, "sellusername": { "description": "销售方名字", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "ermcp.QryBussinessFpRsp": { "type": "object", "properties": { "applyid": { "description": "申请人", "type": "string" }, "applyname": { "description": "申请人名称", "type": "string" }, "applystatus": { "description": "申请状态 - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "attachurl": { "description": "附件", "type": "string" }, "auditname": { "description": "审核人名称", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "buyusername": { "description": "采购方名称", "type": "string" }, "contractno": { "description": "合同编号", "type": "string" }, "contractstatus": { "description": "合同状态- 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "type": "integer" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "点价合约", "type": "string" }, "goodsname": { "description": "商品名称", "type": "string" }, "invoiceAmount": { "description": "已开收票金额(销售为开票,采购为收票)", "type": "number" }, "operateapplyid": { "description": "操作申请ID(603+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "operateapplytype": { "description": "操作申请类型 - 1:点价 2:结算登记 3:款项登记 4:发票登记", "type": "integer" }, "pricemove": { "description": "升贴水", "type": "number" }, "pricetype": { "description": "定价类型 - 1:一口价 2:点价 3:暂定价", "type": "integer" }, "relatedid": { "description": "现货合同ID", "type": "string" }, "sellusername": { "description": "销售方名字", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "ermcp.QryBussinessJsExRsp": { "type": "object", "properties": { "applyid": { "description": "申请人", "type": "string" }, "applyname": { "description": "申请人名称", "type": "string" }, "applystatus": { "description": "申请状态 - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "attachurl": { "description": "附件", "type": "string" }, "auditname": { "description": "审核人名称", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "buyusername": { "description": "采购方名称", "type": "string" }, "contractno": { "description": "合同编号", "type": "string" }, "contractstatus": { "description": "合同状态- 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "type": "integer" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "点价合约", "type": "string" }, "goodsname": { "description": "商品名称", "type": "string" }, "operateapplyid": { "description": "操作申请ID(603+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "operateapplytype": { "description": "操作申请类型 - 1:点价 2:结算登记 3:款项登记 4:发票登记", "type": "integer" }, "pricemove": { "description": "升贴水", "type": "number" }, "pricetype": { "description": "定价类型 - 1:一口价 2:点价 3:暂定价", "type": "integer" }, "reckontype": { "description": "结算类型", "type": "string" }, "reckonvalue": { "description": "值", "type": "number" }, "relatedid": { "description": "现货合同ID", "type": "string" }, "sellusername": { "description": "销售方名字", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "ermcp.QryBussinessJsRsp": { "type": "object", "properties": { "addmargin": { "description": "追加保证金(非必填)", "type": "number" }, "applyid": { "description": "申请人", "type": "string" }, "applyname": { "description": "申请人名称", "type": "string" }, "applystatus": { "description": "申请状态 - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "attachurl": { "description": "附件", "type": "string" }, "auditname": { "description": "审核人名称", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "buyusername": { "description": "采购方名称", "type": "string" }, "contractno": { "description": "合同编号", "type": "string" }, "contractstatus": { "description": "合同状态- 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "type": "integer" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "decmargin": { "description": "减少保证金(非必填)", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "点价合约", "type": "string" }, "goodsname": { "description": "商品名称", "type": "string" }, "operateapplyid": { "description": "操作申请ID(603+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "operateapplytype": { "description": "操作申请类型 - 1:点价 2:结算登记 3:款项登记 4:发票登记", "type": "integer" }, "pricemove": { "description": "升贴水", "type": "number" }, "pricetype": { "description": "定价类型 - 1:一口价 2:点价 3:暂定价", "type": "integer" }, "reckonadjustamount": { "description": "结算调整金额(非必填)", "type": "number" }, "reckonosamount": { "description": "结算溢短金额(非必填)", "type": "number" }, "reckonotheramount": { "description": "结算其他费用(非必填)", "type": "number" }, "reckonrealqty": { "description": "结算实际数量(非必填)", "type": "number" }, "relatedid": { "description": "现货合同ID", "type": "string" }, "sellusername": { "description": "销售方名字", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "ermcp.QryBussinessKxRsp": { "type": "object", "properties": { "applyid": { "description": "申请人", "type": "string" }, "applyname": { "description": "申请人名称", "type": "string" }, "applystatus": { "description": "申请状态 - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "attachurl": { "description": "附件", "type": "string" }, "auditname": { "description": "审核人名称", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "buyusername": { "description": "采购方名称", "type": "string" }, "contractno": { "description": "合同编号", "type": "string" }, "contractstatus": { "description": "合同状态- 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "type": "integer" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "deductamount": { "description": "退款(非必填)", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "点价合约", "type": "string" }, "goodsname": { "description": "商品名称", "type": "string" }, "kxtype": { "description": "款项类型 1-收付款(PayAmount字段有值) 2-退款(DeductAmount字段有值) 3-收付款/退款(2个字段都有)", "type": "integer" }, "operateapplyid": { "description": "操作申请ID(603+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "operateapplytype": { "description": "操作申请类型 - 1:点价 2:结算登记 3:款项登记 4:发票登记", "type": "integer" }, "payamount": { "description": "收付款(非必填)", "type": "number" }, "pricemove": { "description": "升贴水", "type": "number" }, "pricetype": { "description": "定价类型 - 1:一口价 2:点价 3:暂定价", "type": "integer" }, "relatedid": { "description": "现货合同ID", "type": "string" }, "sellusername": { "description": "销售方名字", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "ermcp.QryErmcpRsp": { "type": "object", "properties": { "accountname": { "description": "账户名称", "type": "string" }, "attachment": { "description": "附件", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "contracctstatus": { "description": "合同状态- 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "type": "integer" }, "contractmargin": { "description": "合同保证金", "type": "number" }, "contractno": { "description": "合同编号", "type": "string" }, "contracttype": { "description": "合同类型 1-采购, -1-销售", "type": "integer" }, "convertfactor": { "description": "标仓系数", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "daikaiamount": { "description": "待开票额", "type": "number" }, "deliveryenddate": { "description": "交割结束日", "type": "string" }, "deliverygoodscode": { "description": "现货商品代码", "type": "string" }, "deliverygoodsid": { "description": "现货商品ID", "type": "integer" }, "deliverygoodsname": { "description": "现货商品名称", "type": "string" }, "deliverystartdate": { "description": "交割开始日", "type": "string" }, "enddate": { "description": "点价结束日", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "点价商品代码", "type": "string" }, "goodsid": { "description": "点价商品ID", "type": "integer" }, "goodsname": { "description": "点价商品名称", "type": "string" }, "invoiceamount": { "description": "已开票额", "type": "number" }, "loanamount": { "description": "贷款总额=已定价额+调整金额", "type": "number" }, "margin": { "description": "保证金", "type": "number" }, "payamount": { "description": "已收付额(收款或付款)", "type": "number" }, "price": { "description": "价格", "type": "number" }, "pricedamount": { "description": "已定价额", "type": "number" }, "pricedavg": { "description": "已点均价", "type": "number" }, "pricedqty": { "description": "已定价量", "type": "number" }, "pricemove": { "description": "升贴水", "type": "number" }, "pricetype": { "description": "定价类型 - 1:一口价 2:点价 3:暂定价", "type": "integer" }, "producttype": { "description": "产品类型 - 1:标准仓单 2:等标 3:非标", "type": "integer" }, "qty": { "description": "合同量", "type": "number" }, "reckonadjustamount": { "description": "调整金额", "type": "number" }, "reckonedamount": { "description": "已收付额(已确定额)", "type": "number" }, "reckonotheramount": { "description": "其它费用", "type": "number" }, "reckonrealqty": { "description": "已确定量", "type": "number" }, "remark": { "description": "备注", "type": "string" }, "spotcontractid": { "description": "合同ID", "type": "string" }, "spotgoodsdesc": { "description": "商品型号(商品规格)", "type": "string" }, "startdate": { "description": "点价开始日", "type": "string" }, "totalamount": { "description": "合计总额", "type": "number" }, "unpayamount": { "description": "待支收额(支付或收款)", "type": "number" }, "unpricedqty": { "description": "未定价量", "type": "number" }, "unsureqty": { "description": "未确定量", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" } } }, "ermcp.QryGGCovertCfgRsp": { "type": "object", "properties": { "convertratio": { "description": "折算系数", "type": "number" }, "destgoodsgroupid": { "description": "目标品种ID", "type": "integer" }, "dstcode": { "description": "目录品种代码", "type": "string" }, "dstname": { "description": "目标品种名称", "type": "string" }, "dstunitid": { "description": "目标品种单位ID", "type": "integer" }, "dstunitidname": { "description": "目标品种单位名称", "type": "string" }, "srccode": { "description": "源品种代码", "type": "string" }, "srcgoodsgroupid": { "description": "源品种ID", "type": "integer" }, "srcname": { "description": "源品种名称", "type": "string" }, "srcunitid": { "description": "源品种单位ID", "type": "integer" }, "srcunitidname": { "description": "源品种单位名称", "type": "string" } } }, "ermcp.QryHedgePlanRsp": { "type": "object", "properties": { "areauserid": { "description": "用户ID", "type": "integer" }, "contracttype": { "description": "计划类型 - 1:采购 -1:销售", "type": "integer" }, "convertfactor": { "description": "标仓系数", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "hedgeplanid": { "description": "套保计划ID(601+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "hedgeplanno": { "description": "套保计划编号(名称)", "type": "string" }, "hedgeplanstatus": { "description": "套保计划状态 - 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "type": "integer" }, "planqty": { "description": "计划数量", "type": "number" }, "plantime": { "description": "计划时间", "type": "string" }, "producttype": { "description": "产品类型 - 1:标准仓单 2:等标 3:非标", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "spotgoodsdesc": { "description": "商品型号", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "ermcp.QryMGChangeLogRsp": { "type": "object", "properties": { "aftervalue": { "description": "变更后", "type": "number" }, "applyid": { "description": "操作人", "type": "integer" }, "applyname": { "description": "操作人名称", "type": "string" }, "applysrc": { "description": "操作来源 - 1:管理端 2:终端", "type": "integer" }, "beforevalue": { "description": "变更前", "type": "number" }, "changelogtype": { "description": "变更流水类型 - 1:套保比率变更", "type": "integer" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "logdatetime": { "description": "流水日期", "type": "string" }, "logid": { "description": "流水ID", "type": "integer" }, "logremark": { "description": "流水备注", "type": "string" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "ermcp.QryMiddleGoodsDetailRsp": { "type": "object", "properties": { "cvList": { "description": "期货品种折算列表", "type": "array", "items": { "$ref": "#/definitions/models.GoodsGroupConvert" } }, "mg": { "description": "套保品种基本信息", "$ref": "#/definitions/models.ErmcpMiddleGoodsModel" } } }, "ermcp.QryMiddleGoodsRsp": { "type": "object", "properties": { "areauserid": { "description": "机构用户ID", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "evaluateratio": { "description": "估价系数", "type": "number" }, "goodsgroupid": { "description": "关联期货品种ID", "type": "integer" }, "isvalid": { "description": "状态 0-无效(停用) 1-有效(正常)", "type": "integer" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种ID(SEQ_ERMS_MIDDLEGOODS)", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "modifytime": { "description": "修改时间", "type": "string" }, "needhedgeratio": { "description": "套保比率", "type": "number" }, "qtydecimalplace": { "description": "数量小数位", "type": "integer" }, "relatedgoodsid": { "description": "关联交易商品ID", "type": "integer" }, "relatedgoodstype": { "description": "关联商品类型 - 1:期货合约 2:现货品种", "type": "integer" } } }, "ermcp.QryOPLogRsp": { "type": "object", "properties": { "aftervalue": { "description": "变更后", "type": "number" }, "applyid": { "description": "操作人ID", "type": "string" }, "applyname": { "description": "操作人名称", "type": "string" }, "beforevalue": { "description": "变更前", "type": "number" }, "biztype": { "description": "业务类型 - 1:套保计划 2:现货合同", "type": "integer" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "logvalue": { "description": "数值", "type": "number" }, "operatelogtype": { "description": "操作流水类型", "type": "integer" }, "operatelogtypedesc": { "description": "操作流水类型名称", "type": "string" }, "relatedid": { "description": "现货合同ID\\套保计划", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "ermcp.QryReportDaySpotDetailRsp": { "type": "object", "properties": { "applyid": { "description": "操作人", "type": "integer" }, "applyname": { "description": "操作人名称", "type": "string" }, "biztype": { "description": "业务类型 - 1:套保计划 2:现货合同", "type": "integer" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "enumdicName": { "description": "单位名称", "type": "string" }, "logdatetime": { "description": "流水日期(时间)", "type": "string" }, "logid": { "description": "流水ID(604+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "logtypename": { "description": "合同类型(名称)", "type": "string" }, "logvalue": { "description": "数值", "type": "string" }, "operatelogtype": { "description": "操作流水类型 -", "type": "integer" }, "optypename": { "description": "流水类型名称", "type": "string" }, "relatedid": { "description": "现货合同ID\\套保计划", "type": "string" }, "relatedno": { "description": "合同编号", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "机构ID", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "ermcp.QryReportExposureDayRsp": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "buyfutureqty": { "description": "买入期货数量", "type": "number" }, "buyplanqty": { "description": "采购计划数量", "type": "number" }, "buypricedqty": { "description": "采购合同已定价数量", "type": "number" }, "diffFutuQty": { "description": "今日变动量(期货) = (买入 - 买入期初) - (卖出 - 卖出期初)", "type": "number" }, "diffSpotQty": { "description": "今日变动量(现货) = 现货数量 - 期初现货数量", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodshedgeratio": { "description": "应套保比例", "type": "number" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "needhedgeexposoure": { "description": "应套保敞口", "type": "number" }, "needhedgeratio": { "description": "应套保敞口比例", "type": "number" }, "oriTotalFutuQty": { "description": "期初期货数量=期初买入期货数量-期初卖出期货数量", "type": "number" }, "oriTotalSpotQty": { "description": "期初现货数量=(期初销售计划数量-期初销售合同已定价数量)-(期初采购计划数量-期初采购合同已定价数量)", "type": "number" }, "oribuyfutureqty": { "description": "期初买入期货数量", "type": "number" }, "oribuyplanqty": { "description": "期初采购计划数量", "type": "number" }, "oribuypricedqty": { "description": "期初采购合同已定价数量", "type": "number" }, "orisellfutureqty": { "description": "期初卖出期货数量", "type": "number" }, "orisellplanqty": { "description": "期初销售计划数量", "type": "number" }, "orisellpricedqty": { "description": "期初销售合同已定价数量", "type": "number" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "sellfutureqty": { "description": "卖出期货数量", "type": "number" }, "sellplanqty": { "description": "销售计划数量", "type": "number" }, "sellpricedqty": { "description": "销售合同已定价数量", "type": "number" }, "totalexposure": { "description": "总敞口", "type": "number" }, "totalfutureqty": { "description": "期货数量", "type": "number" }, "totalhedgeratio": { "description": "敞口比例", "type": "number" }, "totalneedhedgeqty": { "description": "期货应套保量", "type": "number" }, "totalspotqty": { "description": "现货数量", "type": "number" } } }, "ermcp.QryReportFinanceDayRsp": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "collectinvoiceamount": { "description": "今日开票金额", "type": "number" }, "collectinvoicecount": { "description": "今日开票笔数", "type": "integer" }, "collectmoneyamount": { "description": "今日收款金额", "type": "number" }, "collectmoneycount": { "description": "今日收款笔数", "type": "integer" }, "payinvoiceamount": { "description": "今日收票金额", "type": "number" }, "payinvoicecount": { "description": "今日收票笔数", "type": "integer" }, "paymoneyamount": { "description": "今日付款金额", "type": "number" }, "paymoneycount": { "description": "今日付款笔数", "type": "integer" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "ermcp.QryReportFinanceKxRsp": { "type": "object", "properties": { "applyid": { "description": "操作人", "type": "integer" }, "applyname": { "description": "操作人名称", "type": "string" }, "biztype": { "description": "业务类型 - 1:套保计划 2:现货合同", "type": "integer" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "enumdicName": { "description": "单位名称", "type": "string" }, "logdatetime": { "description": "流水日期(时间)", "type": "string" }, "logid": { "description": "流水ID(604+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "logtypename": { "description": "合同类型(名称)", "type": "string" }, "logvalue": { "description": "数值", "type": "string" }, "operatelogtype": { "description": "操作流水类型 -", "type": "integer" }, "optypename": { "description": "流水类型名称", "type": "string" }, "relatedid": { "description": "现货合同ID\\套保计划", "type": "string" }, "relatedno": { "description": "合同编号", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "机构ID", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "ermcp.QryReportFinanceMonRsp": { "type": "object", "properties": { "areauserid": { "description": "所属机构【原值】", "type": "integer" }, "collectinvoiceamount": { "description": "今日开票金额【汇总】", "type": "number" }, "collectinvoicecount": { "description": "今日开票笔数【汇总】", "type": "integer" }, "collectmoneyamount": { "description": "今日收款金额【汇总】", "type": "number" }, "collectmoneycount": { "description": "今日收款笔数 【汇总】", "type": "integer" }, "cycletime": { "description": "周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(0)【原值】", "type": "string" }, "cycletype": { "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】", "type": "integer" }, "dayFr": { "description": "日报表明细", "type": "array", "items": { "$ref": "#/definitions/models.ErmcpReportDayFR" } }, "payinvoiceamount": { "description": "今日收票金额【汇总】", "type": "number" }, "payinvoicecount": { "description": "今日收票笔数【汇总】", "type": "integer" }, "paymoneyamount": { "description": "今日付款金额【汇总】", "type": "number" }, "paymoneycount": { "description": "今日付款笔数【汇总】", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "ermcp.QryReportSpotDayRsp": { "type": "object", "properties": { "areauserid": { "description": "所属机构T", "type": "integer" }, "enumdicname": { "description": "现货商品单位名称", "type": "string" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "todaybuyreckonqty": { "description": "采购确定量", "type": "number" }, "todaysellreckonqty": { "description": "销售确定量", "type": "number" }, "totalbuypricedqty": { "description": "采购定价量 = 期末 - 期初", "type": "number" }, "totalsellpricedqty": { "description": "销售定价量 = 期末 - 期初", "type": "number" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "ermcp.QryReportSpotMonRsp": { "type": "object", "properties": { "areauserid": { "description": "所属机构T", "type": "integer" }, "cycletime": { "description": "周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(0)【原值】", "type": "string" }, "cycletype": { "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】", "type": "integer" }, "enumdicname": { "description": "现货商品单位名称", "type": "string" }, "todaybuyreckonqty": { "description": "采购确定量", "type": "number" }, "todaysellreckonqty": { "description": "销售确定量", "type": "number" }, "totalbuypricedqty": { "description": "采购定价量 = 期末 - 期初", "type": "number" }, "totalsellpricedqty": { "description": "销售定价量 = 期末 - 期初", "type": "number" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "ermcp.QryReportSpotMonthDetailRsp": { "type": "object", "properties": { "areauserid": { "description": "所属机构T", "type": "integer" }, "enumdicname": { "description": "现货商品单位名称", "type": "string" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "todaybuyreckonqty": { "description": "采购确定量", "type": "number" }, "todaysellreckonqty": { "description": "销售确定量", "type": "number" }, "totalbuypricedqty": { "description": "采购定价量 = 期末 - 期初", "type": "number" }, "totalsellpricedqty": { "description": "销售定价量 = 期末 - 期初", "type": "number" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "ermcp.QrySpotContractRsp": { "type": "object", "properties": { "amount": { "description": "金额 [1:一口价、3:暂定价]", "type": "number" }, "attachment": { "description": "附件", "type": "string" }, "auditremark": { "description": "审核意见", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "brandname": { "description": "品牌名称", "type": "string" }, "buyuserid": { "description": "采购方ID", "type": "integer" }, "buyusername": { "description": "采购方名称", "type": "string" }, "contracctstatus": { "description": "合同状态 - 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "type": "integer" }, "contractmargin": { "description": "合同保证金", "type": "number" }, "contractno": { "description": "现货合同编号", "type": "string" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "convertfactor": { "description": "标仓系数", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "deliveryenddate": { "description": "交收期(结束)", "type": "string" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "deliverystartdate": { "description": "交收期(开始)", "type": "string" }, "enddate": { "description": "点价结束日期 [2:点价 3:暂定价]", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "点价合约代码", "type": "string" }, "goodsid": { "description": "点价合约ID - 0:为现货,其它为期货商品合约ID [2:点价 3:暂定价]", "type": "integer" }, "goodsname": { "description": "点价商品名称", "type": "string" }, "margin": { "description": "当前保证金", "type": "number" }, "modelname": { "description": "型号名称", "type": "string" }, "price": { "description": "价格\\暂定价 [1:一口价、3:暂定价]", "type": "number" }, "pricemove": { "description": "升贴水 [2:点价 3:暂定价]", "type": "number" }, "pricetype": { "description": "定价类型 - 1:一口价 2:点价 3:暂定价", "type": "integer" }, "producttype": { "description": "产品类型 - 1:标准仓单 2:等标 3:非标", "type": "integer" }, "qty": { "description": "数量", "type": "number" }, "remark": { "description": "备注", "type": "string" }, "selluserid": { "description": "销售方ID", "type": "integer" }, "sellusername": { "description": "销售方名称", "type": "string" }, "spotcontractid": { "description": "现货合同ID(602+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "spotgoodsbrandid": { "description": "现货品牌ID", "type": "integer" }, "spotgoodsdesc": { "description": "商品型号", "type": "string" }, "spotgoodsmodelid": { "description": "现货型号ID", "type": "integer" }, "startdate": { "description": "点价开始日期 [2:点价 3:暂定价]", "type": "string" }, "userid": { "description": "机构ID", "type": "integer" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" } } }, "ermcp.QryUserInfoRsp": { "type": "object", "properties": { "address": { "description": "通讯地址", "type": "string" }, "attachment1": { "description": "附件1", "type": "string" }, "cardfrontphotourl": { "description": "证件正面图片地址", "type": "string" }, "cardnum": { "description": "证件号码", "type": "string" }, "cardtype": { "description": "证件类型", "type": "integer" }, "cardtypename": { "description": "证件类型名称", "type": "string" }, "cityid": { "description": "市", "type": "integer" }, "countryid": { "description": "国家", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "customername": { "description": "企业名称", "type": "string" }, "memberuserid": { "description": "所属机构ID", "type": "integer" }, "mobile": { "description": "手机号码", "type": "string" }, "provinceid": { "description": "省", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "status": { "description": "账户状态 - 1:待激活 2:待审核 3:待复审 4:正常 5:审核拒绝 6:注销", "type": "integer" }, "statusdesc": { "description": "账户状态中文描述", "type": "string" }, "telphone": { "description": "联系电话", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "userinfotype": { "description": "客户类型", "type": "string" } } }, "ermcp.QryWrStandardDetailRsp": { "type": "object", "properties": { "gbList": { "description": "品牌列表", "type": "array", "items": { "$ref": "#/definitions/models.GoodsBrand" } }, "gtList": { "description": "型号列表", "type": "array", "items": { "$ref": "#/definitions/models.GoodsTypeModel" } }, "wrd": { "description": "基本信息", "$ref": "#/definitions/models.ErmcpWrstandard" }, "wrsList": { "description": "套保信息列表", "type": "array", "items": { "$ref": "#/definitions/models.WRSConverTDetail" } } } }, "ermcp.QryWrStandardRsp": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "isvalid": { "description": "是否有效 0-无效(停用) 1-有效(正常)", "type": "integer" }, "minivalue": { "description": "最小变动值", "type": "integer" }, "minivaluedp": { "description": "最小变动值小数位", "type": "integer" }, "realminivalue": { "description": "实际最小变动值", "type": "integer" }, "realminivaluedp": { "description": "实际最小变动值小数位", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "unitid": { "description": "单位ID", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(SEQ_WRSTANDARD)", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "ermcp.RealtimeExposurePositionRsp": { "type": "object", "properties": { "agreeunit": { "description": "合约单位", "type": "string" }, "areauserid": { "description": "所属机构id", "type": "integer" }, "convertratio": { "description": "期货品种系数(折算系数)", "type": "number" }, "curqty": { "description": "当前持仓", "type": "integer" }, "diffhedgeqty": { "description": "套保品种变动量=持仓变动量*期货合约单位*期货品种系数", "type": "number" }, "diffqty": { "description": "持仓变动量=当前持仓-昨日持仓", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品id", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "middlegoodsid": { "description": "套保商品id", "type": "integer" }, "ydqty": { "description": "昨日持仓", "type": "integer" } } }, "ermcp.RealtimeExposureRsp": { "type": "object", "properties": { "areaUserID": { "description": "所属机构", "type": "integer" }, "buyFutureQty": { "description": "买入期货数量", "type": "number" }, "buyPlanQty": { "description": "采购计划数量", "type": "number" }, "buyPricedQty": { "description": "采购合同已定价数量", "type": "number" }, "diffFutuQty": { "description": "今日变动量(期货) = (买入 - 买入期初) - (卖出 - 卖出期初)", "type": "number" }, "diffSpotQty": { "description": "今日变动量(现货) = 现货数量 - 期初现货数量", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "middleGoodsCode": { "description": "套保品种代码", "type": "string" }, "middleGoodsHedgeRatio": { "description": "应套保比例", "type": "number" }, "middleGoodsID": { "description": "套保品种", "type": "integer" }, "middleGoodsName": { "description": "套保品种名称", "type": "string" }, "needHedgeExposoure": { "description": "应套保敞口", "type": "number" }, "needHedgeRatio": { "description": "应套保敞口比例", "type": "number" }, "oriBuyFutureQty": { "description": "期初买入期货数量", "type": "number" }, "oriBuyPlanQty": { "description": "期初采购计划数量", "type": "number" }, "oriBuyPricedQty": { "description": "期初采购合同已定价数量", "type": "number" }, "oriSellFutureQty": { "description": "期初卖出期货数量", "type": "number" }, "oriSellPlanQty": { "description": "期初销售计划数量", "type": "number" }, "oriSellPricedQty": { "description": "期初销售合同已定价数量", "type": "number" }, "oriTotalFutuQty": { "description": "期初期货数量=期初买入期货数量-期初卖出期货数量", "type": "number" }, "oriTotalSpotQty": { "description": "期初现货数量=(期初销售计划数量-期初销售合同已定价数量)-(期初采购计划数量-期初采购合同已定价数量)", "type": "number" }, "sellFutureQty": { "description": "卖出期货数量", "type": "number" }, "sellPlanQty": { "description": "销售计划数量", "type": "number" }, "sellPricedQty": { "description": "销售合同已定价数量", "type": "number" }, "totalExposure": { "description": "总敞口", "type": "number" }, "totalFutureQty": { "description": "期货数量", "type": "number" }, "totalHedgeRatio": { "description": "敞口比例", "type": "number" }, "totalNeedHedgeQty": { "description": "期货应套保量", "type": "number" }, "totalSpotQty": { "description": "现货数量", "type": "number" } } }, "erms2.QueryArbitrageStrategyRsp": { "type": "object", "required": [ "asapplyid" ], "properties": { "applybasis": { "description": "申请基差", "type": "number" }, "asapplyid": { "description": "策略申请ID(702+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "asname": { "description": "策略名称", "type": "string" }, "asno": { "description": "策略编号", "type": "string" }, "basischangepl": { "description": "基差变动损益[结算更新]", "type": "number" }, "biztype": { "description": "业务类型 - 1:正向套利 -1:反向套利", "type": "integer" }, "closetradedate": { "description": "完结交易日(yyyyMMdd)", "type": "string" }, "curbasis": { "description": "当前基差[结算更新]", "type": "number" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "futureavgprice": { "description": "期货建仓均价", "type": "number" }, "futurecloseamount": { "description": "期货平仓金额", "type": "number" }, "futurecloseqty": { "description": "期货平仓数量", "type": "number" }, "futureopenamount": { "description": "期货开仓金额", "type": "number" }, "futureopenqty": { "description": "期货开仓数量", "type": "number" }, "futurepl": { "description": "期货总盈亏[结算更新]", "type": "number" }, "futureqty": { "description": "期货持仓数量", "type": "number" }, "futurequote": { "description": "期货额度", "type": "number" }, "goodsgroupid": { "description": "期货品种ID", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "netexposure": { "description": "单笔业务头寸净敞口 = 期货持仓数量 + 已定价现货不含税数量", "type": "number" }, "netexposurepl": { "description": "净敞口损益 = TotalPL - BasisChangePL[结算更新]", "type": "number" }, "netexposurerate": { "description": "净敞口比例 - 0:未结束 = (NetExposure/PriceSpotQtyNoTax) ; 已结束为0", "type": "number" }, "openbasis": { "description": "建仓基差", "type": "number" }, "pricedspotqty": { "description": "已定价现货数量", "type": "number" }, "pricedspotqtynotax": { "description": "已定价现货不含税数量", "type": "number" }, "remark": { "description": "备注", "type": "string" }, "spotavgprice": { "description": "现货均价", "type": "number" }, "spotbuyamount": { "description": "现货采购金额", "type": "number" }, "spotbuyqty": { "description": "现货采购数量", "type": "number" }, "spotpl": { "description": "现货总盈亏[结算更新]", "type": "number" }, "spotquota": { "description": "现货额度", "type": "number" }, "spotsellamount": { "description": "现货销售金额", "type": "number" }, "spotsellqty": { "description": "现货销售数量", "type": "number" }, "spotusedquota": { "description": "现货占用资金", "type": "number" }, "strategystatus": { "description": "策略状态 - 0:未结束 1:已结束", "type": "integer" }, "totalpl": { "description": "业务合计损益 = FuturePL + SpotPL [结算更新]", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" }, "usedquota": { "description": "已占用资金", "type": "number" }, "userid": { "description": "所属机构", "type": "integer" } } }, "erms2.QueryInnerTradeDetailRsp": { "type": "object", "required": [ "asapplyid", "buyorsell", "goodscode", "goodsgroupid", "goodsgroupname", "goodsname", "tradeid" ], "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "agreeunit": { "description": "合约单位", "type": "number" }, "asapplyid": { "description": "策略申请ID", "type": "integer" }, "asname": { "description": "策略名称", "type": "string" }, "asno": { "description": "策略编号", "type": "string" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "channelbuildtype": { "description": "委托单据类型 0:无 1:建仓 2:平仓", "type": "integer" }, "closetype": { "description": "平仓方式 - 0:无 1:平今 2:平昨", "type": "integer" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "detailtype": { "description": "明细类型 - 1:套利对冲 2:期货换月 3:期货仓位调整", "type": "integer" }, "exexchangecode": { "description": "外部交易所代码", "type": "string" }, "exexchangename": { "description": "外部交易所名称", "type": "string" }, "goodscode": { "description": "商品代码(合约)", "type": "string" }, "goodsgroupid": { "description": "商品组ID(品种ID)", "type": "integer" }, "goodsgroupname": { "description": "商品组名称(品种)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称(合约)", "type": "string" }, "goodunit": { "description": "报价单位", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "orderid": { "description": "委托单号", "type": "string" }, "outgoodscode": { "description": "商品代码(外部)", "type": "string" }, "relatedouttradeid": { "description": "关联外部成交单ID", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "spotcontractid": { "description": "现货合同ID [1:套利对冲 为合同ID,2:期货换月\\3:期货仓位调整时为0]", "type": "integer" }, "spotcontractno": { "description": "现货合同编号", "type": "string" }, "tradeid": { "description": "成交单号(108+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "tradetime": { "description": "成交时间", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "erms2.QuerySpotContractRsp": { "type": "object", "required": [ "spotcontractid" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "areauserid": { "description": "所属机构", "type": "integer" }, "closedate": { "description": "终止日期", "type": "string" }, "closeremark": { "description": "结束备注", "type": "string" }, "closetradedate": { "description": "完结交易日(yyyyMMdd)", "type": "string" }, "closetype": { "description": "终止类型 - 1:违约 2:提前终止", "type": "integer" }, "contractamount": { "description": "合同金额", "type": "number" }, "contractattachment": { "description": "合同附件", "type": "string" }, "contractno": { "description": "现货合同编号", "type": "string" }, "contractqty": { "description": "合同数量(数值) (用于计算)", "type": "number" }, "contractqtychar": { "description": "合同数量\\已订价数量 (用于显示)", "type": "string" }, "contractstatus": { "description": "合同状态 - 0:未结束 1:已结束", "type": "integer" }, "contracttype": { "description": "现货合同类型 - 1:采购合同 -1:销售合同", "type": "integer" }, "customeraccountid": { "description": "客户资金账户ID", "type": "integer" }, "customeruserid": { "description": "客户ID", "type": "integer" }, "deliverygoodsdesc": { "description": "品种说明", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "invoiceatt": { "description": "发票附件", "type": "string" }, "invoicedatetime": { "description": "开收票更新时间", "type": "string" }, "invoiceopentime": { "description": "开票时间", "type": "string" }, "invoiceremark": { "description": "发票备注", "type": "string" }, "invoicestatus": { "description": "开收票状态 - 0:未开票 1:已开票", "type": "integer" }, "lastdate": { "description": "交货时间", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "paydatetime": { "description": "收付款更新时间", "type": "string" }, "payremark": { "description": "收付款备注", "type": "string" }, "paystatus": { "description": "收付款状态 - 0:未支付 1:已收款 2:已付款", "type": "integer" }, "positionqty": { "description": "头寸数量 - 合同数量去小数部分", "type": "integer" }, "producttype": { "description": "产品类型 - 1:标准仓单 2:等标 3:非标", "type": "integer" }, "relatedqty": { "description": "已关联数量", "type": "number" }, "relatedstatus": { "description": "关联完结状态 - 0:未结束 1:已结束", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "signdate": { "description": "签订日期", "type": "string" }, "spotcontractid": { "description": "现货合同ID(701+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "spotdatetime": { "description": "收发货更新时间", "type": "string" }, "spotprice": { "description": "价格", "type": "number" }, "spotremark": { "description": "收发货备注", "type": "string" }, "spotstatus": { "description": "收发货状态 - 0:未交收 1:已发货 2:已发货", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "业务员用户ID", "type": "integer" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "wrfactortypeid": { "description": "仓单要素类型ID", "type": "integer" }, "wrstandardid": { "description": "仓单标准ID(SEQ_WRSTANDARD)", "type": "integer" } } }, "erms3.AddErms2ASApplyReq": { "type": "object", "required": [ "asapplyid" ], "properties": { "applybasis": { "description": "申请基差", "type": "number" }, "applystatus": { "description": "申请状态 - 0:待审核 1:审核通过 2:审核中 3:审核失败 4已撤销 5:审核拒绝", "type": "integer" }, "asapplyid": { "description": "策略申请ID(342+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "asname": { "description": "策略名称", "type": "string" }, "asno": { "description": "策略编号", "type": "string" }, "auditid": { "description": "审核人", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "biztype": { "description": "业务类型 - 1:正向套利 2:反向套利", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "futurequote": { "description": "期货额度", "type": "number" }, "goodsgroupid": { "description": "期货品种ID", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "spotquota": { "description": "现货额度", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "所属机构", "type": "integer" } } }, "erms3.AddErms2SpotTradeApplyReq": { "type": "object", "required": [ "spottradeid" ], "properties": { "applyjsondetail": { "description": "申请明细(JSON)", "type": "string" }, "applystatus": { "description": "申请状态 - 0:待审核 1:审核通过 2:审核中 3:审核失败 4已撤销 5:审核拒绝", "type": "integer" }, "areauserid": { "description": "所属机构", "type": "integer" }, "auditid": { "description": "审核人", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "futureaccountid": { "description": "期货资金账户", "type": "integer" }, "goodsgroupid": { "description": "期货品种", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "spotaccountid": { "description": "现货资金账户", "type": "integer" }, "spottradeid": { "description": "业务ID(341+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "spottradename": { "description": "业务名称", "type": "string" }, "spottradeno": { "description": "业务编号", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "wrstandardid": { "description": "仓单标准ID", "type": "integer" } } }, "erms3.AddSpotContractApplyReq": { "type": "object", "required": [ "accountid", "areauserid", "contractno", "contracttype", "customeraccountid", "customeruserid", "details", "orimargin", "signdate" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "areauserid": { "description": "所属机构", "type": "integer" }, "contractattachment": { "description": "合同附件", "type": "string" }, "contractno": { "description": "现货合同编号", "type": "string" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "creatorid": { "description": "申请人", "type": "integer" }, "customeraccountid": { "description": "客户资金账户ID", "type": "integer" }, "customeruserid": { "description": "客户ID", "type": "integer" }, "details": { "description": "明细", "type": "array", "items": { "$ref": "#/definitions/erms3.SoptContractDetail" } }, "orimargin": { "description": "初始保证金", "type": "number" }, "remark": { "description": "备注", "type": "string" }, "signdate": { "description": "签订日期", "type": "string" } } }, "erms3.AddSpotContractApplyRsp": { "type": "object", "required": [ "contractno" ], "properties": { "contractno": { "description": "现货合同编号", "type": "string" }, "spotcontractid": { "description": "现货合同ID(345+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" } } }, "erms3.AddUserInfoApplyReq": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "交易系统帐号Id (加密存储)", "type": "integer" }, "areacode": { "description": "机构代码", "type": "string" }, "areaid": { "description": "机构Id", "type": "integer" }, "attachment1": { "description": "附件1", "type": "string" }, "attachment2": { "description": "附件2", "type": "string" }, "attachment3": { "description": "附件3", "type": "string" }, "attachment4": { "description": "附件4", "type": "string" }, "attachment5": { "description": "附件5", "type": "string" }, "auditedby": { "description": "审核人", "type": "string" }, "auditime": { "description": "审核时间", "type": "string" }, "bankaccount": { "description": "银行帐号 (加密存储)", "type": "string" }, "bankaccountname": { "description": "收款人名称", "type": "string" }, "bankcardbackphotourl": { "description": "银行卡背面照地址", "type": "string" }, "bankcardfrontphotourl": { "description": "银行卡正面照地址", "type": "string" }, "bankid": { "description": "银行编码", "type": "string" }, "bankname": { "description": "银行名称", "type": "string" }, "bankpictureurl": { "description": "银行卡正面地址", "type": "string" }, "biznature": { "description": "企业性质( 企业) - 1:国有控股企业 2:集体控股企业 3:私人控股企业 4:港澳台商控股企业 5:外商控股企业 6:其它", "type": "integer" }, "bizscope": { "description": "企业经营范围(企业)", "type": "string" }, "biztype": { "description": "企业类型 - 1:进口/生产 2:销售 3:零售 4:运输 5:仓储", "type": "integer" }, "brokerid": { "description": "经纪人ID(加密存储)", "type": "string" }, "cardaddress": { "description": "证件地址 (加密存储)", "type": "string" }, "cardbackphotourl": { "description": "背面证件照地址", "type": "string" }, "cardfrontphotourl": { "description": "正面证件照地址", "type": "string" }, "cardnum": { "description": "证件号码 (加密存储)", "type": "string" }, "cardtype": { "description": "证件类型", "type": "integer" }, "cityid": { "description": "市", "type": "integer" }, "company": { "description": "公司(个人)", "type": "string" }, "contactcardbackphotourl": { "description": "联系人证件背面图片地址", "type": "string" }, "contactcardfrontphotourl": { "description": "联系人证件正面图片地址", "type": "string" }, "contactname": { "description": "联系人", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "createtime": { "description": "开户申请时间", "type": "string" }, "cusbankid": { "description": "签约类型", "type": "string" }, "cusbankname": { "description": "签约类型名称", "type": "string" }, "customername": { "description": "客户名称(企业名称)", "type": "string" }, "districtid": { "description": "地区", "type": "integer" }, "email": { "description": "Email地址(加密存储)", "type": "string" }, "halfbodyphotourl": { "description": "半身照地址", "type": "string" }, "headurl": { "description": "头像地址", "type": "string" }, "ipaddress": { "description": "IP地址", "type": "string" }, "isvalidate": { "description": "是否有效 (删除后标记为失效) - 0:无效 1:有效", "type": "string" }, "legalcardbackphotourl": { "description": "法人身份证背面照地址", "type": "string" }, "legalcardfrontphotourl": { "description": "法人身份证正面照地址", "type": "string" }, "legalpersonname": { "description": "法人姓名(企业)", "type": "string" }, "logincode": { "description": "登录帐号 (加密存储)", "type": "string" }, "memberareaid": { "description": "所属会员ID", "type": "integer" }, "mobile2": { "description": "手机号码[明文-尚志]", "type": "string" }, "mobilephone": { "description": "手机号码 (加密存储)", "type": "string" }, "modifiedby": { "description": "修改人帐号", "type": "integer" }, "modifiedtime": { "description": "修改时间", "type": "string" }, "nickname": { "description": "昵称:默认为手机号脱敏(139****9999) 或 名称脱敏(张**)", "type": "string" }, "openmode": { "description": "开户方式 - 1:管理端开户 2:网上开户注册(会员官网-手机号) 3:微信开户 4:网页交易端注册 5:安卓手机端注册 6:苹果手机端注册 7:PC交易端注册 8:微信快速开户 9:支付宝快速开户 10:手机号快速开户 11:网上开户注册(会员官网-微信认证) 12:网上开户注册(会员官网-支付宝认证)", "type": "integer" }, "otherurl": { "description": "其它图片地址[使用分号分隔]", "type": "string" }, "postalcode": { "description": "邮政编码", "type": "string" }, "provinceid": { "description": "省", "type": "integer" }, "proxystatementurl": { "description": "授权委托书", "type": "string" }, "qq": { "description": "QQ(加密存储", "type": "string" }, "referral": { "description": "推荐人编码", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "removebeforestatus": { "description": "REMOVEBEFORESTATUS", "type": "integer" }, "sex": { "description": "性别 - 0:女 1:男", "type": "integer" }, "signedstatus": { "description": "账户一号签签约状态", "type": "integer" }, "signpdfurl": { "description": "签约pdf文件", "type": "string" }, "subbranch": { "description": "开户支行", "type": "string" }, "telphone": { "description": "联系电话(加密存储)", "type": "string" }, "userid": { "description": "用户ID(自增ID)", "type": "integer" }, "userinfotype": { "description": "用户信息类型 - 1:个人 2:企业", "type": "integer" }, "username": { "description": "用户姓名", "type": "string" }, "userstate": { "description": "开户状态 - 1:未提交 2: 待初审 3:初审拒绝 4:待复审 5:复审拒绝 6:测评不通过", "type": "integer" }, "usertype": { "description": "用户类型 - 1:投资者 2:机构", "type": "integer" }, "videourl": { "description": "视频地址", "type": "string" }, "wechat": { "description": "微信号 (加密存储)", "type": "string" } } }, "erms3.CustomerInfo": { "type": "object", "required": [ "userid" ], "properties": { "accountids": { "description": "资金账户ID列表", "type": "array", "items": { "type": "integer" } }, "customername": { "description": "名称(企业名称)", "type": "string" }, "mobile": { "description": "手机号码", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "erms3.ModifyUserInfoApplyReq": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "交易系统帐号Id (加密存储)", "type": "integer" }, "areacode": { "description": "机构代码", "type": "string" }, "areaid": { "description": "机构Id", "type": "integer" }, "attachment1": { "description": "附件1", "type": "string" }, "attachment2": { "description": "附件2", "type": "string" }, "attachment3": { "description": "附件3", "type": "string" }, "attachment4": { "description": "附件4", "type": "string" }, "attachment5": { "description": "附件5", "type": "string" }, "auditedby": { "description": "审核人", "type": "string" }, "auditime": { "description": "审核时间", "type": "string" }, "bankaccount": { "description": "银行帐号 (加密存储)", "type": "string" }, "bankaccountname": { "description": "收款人名称", "type": "string" }, "bankcardbackphotourl": { "description": "银行卡背面照地址", "type": "string" }, "bankcardfrontphotourl": { "description": "银行卡正面照地址", "type": "string" }, "bankid": { "description": "银行编码", "type": "string" }, "bankname": { "description": "银行名称", "type": "string" }, "bankpictureurl": { "description": "银行卡正面地址", "type": "string" }, "biznature": { "description": "企业性质( 企业) - 1:国有控股企业 2:集体控股企业 3:私人控股企业 4:港澳台商控股企业 5:外商控股企业 6:其它", "type": "integer" }, "bizscope": { "description": "企业经营范围(企业)", "type": "string" }, "biztype": { "description": "企业类型 - 1:进口/生产 2:销售 3:零售 4:运输 5:仓储", "type": "integer" }, "brokerid": { "description": "经纪人ID(加密存储)", "type": "string" }, "cardaddress": { "description": "证件地址 (加密存储)", "type": "string" }, "cardbackphotourl": { "description": "背面证件照地址", "type": "string" }, "cardfrontphotourl": { "description": "正面证件照地址", "type": "string" }, "cardnum": { "description": "证件号码 (加密存储)", "type": "string" }, "cardtype": { "description": "证件类型", "type": "integer" }, "cityid": { "description": "市", "type": "integer" }, "company": { "description": "公司(个人)", "type": "string" }, "contactcardbackphotourl": { "description": "联系人证件背面图片地址", "type": "string" }, "contactcardfrontphotourl": { "description": "联系人证件正面图片地址", "type": "string" }, "contactname": { "description": "联系人", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "createtime": { "description": "开户申请时间", "type": "string" }, "cusbankid": { "description": "签约类型", "type": "string" }, "cusbankname": { "description": "签约类型名称", "type": "string" }, "customername": { "description": "客户名称(企业名称)", "type": "string" }, "districtid": { "description": "地区", "type": "integer" }, "email": { "description": "Email地址(加密存储)", "type": "string" }, "halfbodyphotourl": { "description": "半身照地址", "type": "string" }, "headurl": { "description": "头像地址", "type": "string" }, "ipaddress": { "description": "IP地址", "type": "string" }, "isvalidate": { "description": "是否有效 (删除后标记为失效) - 0:无效 1:有效", "type": "string" }, "legalcardbackphotourl": { "description": "法人身份证背面照地址", "type": "string" }, "legalcardfrontphotourl": { "description": "法人身份证正面照地址", "type": "string" }, "legalpersonname": { "description": "法人姓名(企业)", "type": "string" }, "logincode": { "description": "登录帐号 (加密存储)", "type": "string" }, "memberareaid": { "description": "所属会员ID", "type": "integer" }, "mobile2": { "description": "手机号码[明文-尚志]", "type": "string" }, "mobilephone": { "description": "手机号码 (加密存储)", "type": "string" }, "modifiedby": { "description": "修改人帐号", "type": "integer" }, "modifiedtime": { "description": "修改时间", "type": "string" }, "nickname": { "description": "昵称:默认为手机号脱敏(139****9999) 或 名称脱敏(张**)", "type": "string" }, "openmode": { "description": "开户方式 - 1:管理端开户 2:网上开户注册(会员官网-手机号) 3:微信开户 4:网页交易端注册 5:安卓手机端注册 6:苹果手机端注册 7:PC交易端注册 8:微信快速开户 9:支付宝快速开户 10:手机号快速开户 11:网上开户注册(会员官网-微信认证) 12:网上开户注册(会员官网-支付宝认证)", "type": "integer" }, "otherurl": { "description": "其它图片地址[使用分号分隔]", "type": "string" }, "postalcode": { "description": "邮政编码", "type": "string" }, "provinceid": { "description": "省", "type": "integer" }, "proxystatementurl": { "description": "授权委托书", "type": "string" }, "qq": { "description": "QQ(加密存储", "type": "string" }, "referral": { "description": "推荐人编码", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "removebeforestatus": { "description": "REMOVEBEFORESTATUS", "type": "integer" }, "sex": { "description": "性别 - 0:女 1:男", "type": "integer" }, "signedstatus": { "description": "账户一号签签约状态", "type": "integer" }, "signpdfurl": { "description": "签约pdf文件", "type": "string" }, "subbranch": { "description": "开户支行", "type": "string" }, "telphone": { "description": "联系电话(加密存储)", "type": "string" }, "userid": { "description": "用户ID(自增ID)", "type": "integer" }, "userinfotype": { "description": "用户信息类型 - 1:个人 2:企业", "type": "integer" }, "username": { "description": "用户姓名", "type": "string" }, "userstate": { "description": "开户状态 - 1:未提交 2: 待初审 3:初审拒绝 4:待复审 5:复审拒绝 6:测评不通过", "type": "integer" }, "usertype": { "description": "用户类型 - 1:投资者 2:机构", "type": "integer" }, "videourl": { "description": "视频地址", "type": "string" }, "wechat": { "description": "微信号 (加密存储)", "type": "string" } } }, "erms3.QryAuditContractRsp": { "type": "object", "required": [ "matchcustomername", "spotcontractid" ], "properties": { "accountid": { "description": "交易员ID", "type": "string" }, "applystatus": { "description": "申请状态 - 0:未审核 1:审核通过 2:审核中 3:审核失败 4已撤销 5:审核拒绝", "type": "integer" }, "curdeliveryqty": { "description": "未交收量", "type": "integer" }, "customername": { "description": "采购方ID", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "string" }, "deliveryqty": { "description": "交收量", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "matchaccountid": { "description": "业务员ID", "type": "string" }, "matchcustomername": { "description": "销售方ID", "type": "string" }, "pricedqty": { "description": "定价量", "type": "number" }, "signdate": { "description": "签订日期", "type": "string" }, "spotcontractid": { "description": "合同ID", "type": "string" }, "totaldqty": { "description": "合同量", "type": "number" }, "unpricedqty": { "description": "未定价量", "type": "number" }, "wrstandardname": { "description": "商品名称", "type": "string" } } }, "erms3.QryPendingBizRsp": { "type": "object", "properties": { "accountid": { "description": "现货账户", "type": "string" }, "areaname": { "description": "所属部门", "type": "string" }, "bizid": { "description": "业务ID", "type": "string" }, "bizname": { "description": "业务名称", "type": "string" }, "status": { "description": "状态,0:待审核 1:审核通过 2:审核中 3:审核失败 4已撤销 5:审核拒绝", "type": "integer" }, "type": { "description": "业务类型,1-期现套利,2-仓单回购,3-现货贸易", "type": "integer" } } }, "erms3.QueryBusinessInfoRsp": { "type": "object", "properties": { "businessid": { "description": "业务ID.", "type": "integer" }, "buyamount": { "description": "采购额.", "type": "number" }, "buyqty": { "description": "采购量.", "type": "string" }, "futurepl": { "description": "期货盈亏.", "type": "number" }, "futureqty": { "description": "期货敞口.", "type": "string" }, "goodsid": { "description": "商品名称/商品代码.", "type": "string" }, "hedgingqty": { "description": "套保量.", "type": "string" }, "sellamount": { "description": "销售额.", "type": "number" }, "sellqty": { "description": "销售量.", "type": "string" }, "spotmarketvalue": { "description": "现货市值.", "type": "number" }, "spotpl": { "description": "浮动权益.", "type": "number" }, "spotqty": { "description": "现货量.", "type": "string" }, "statu": { "description": "状态,0-未结束 1-已结束.", "type": "integer" }, "totalpl": { "description": "总盈亏.", "type": "number" }, "totalqty": { "description": "总敞口.", "type": "string" }, "type": { "description": "业务类型,1-期现套利,2-仓单回购,3-现货贸易.", "type": "integer" } } }, "erms3.QuerySpotContractAppleFormRsp": { "type": "object", "properties": { "goodses": { "description": "合约列表", "type": "array", "items": { "$ref": "#/definitions/models.GoodsIDAndName" } }, "oppositeusers": { "description": "对方账号列表", "type": "array", "items": { "$ref": "#/definitions/erms3.CustomerInfo" } }, "ouruser": { "description": "我方账号", "$ref": "#/definitions/erms3.CustomerInfo" }, "warehouseinfos": { "description": "仓库信息列表", "type": "array", "items": { "$ref": "#/definitions/models.Warehouseinfo" } }, "wrstandards": { "description": "仓单标准列表", "type": "array", "items": { "$ref": "#/definitions/models.WRStandardInfo" } } } }, "erms3.QuerySpotContractInfoRsp": { "type": "object", "properties": { "accountid": { "description": "表示交易员ID.", "type": "integer" }, "curdeliveryqty": { "description": "表示未交收量.", "type": "number" }, "customername": { "description": "若合同类型为采购合同,表示采购方ID;若合同类型为销售合同,表示销售方ID.", "type": "string" }, "deliverygoodsid": { "description": "表示品种ID.", "type": "string" }, "deliveryqty": { "description": "表示交收量.", "type": "number" }, "matchaccountid": { "description": "表示业务员ID.", "type": "integer" }, "matchcustomername": { "description": "若合同类型为采购合同,表示销售方;若合同类型为销售合同,表示采购方ID.", "type": "string" }, "priceqty": { "description": "表示定价量.", "type": "number" }, "relatedbizid": { "description": "表示业务ID.", "type": "string" }, "signdate": { "description": "表示签订日期.", "type": "string" }, "spotcontractid": { "description": "合同ID", "type": "string" }, "status": { "description": "表示状态,0-履约中 1-已完成.", "type": "integer" }, "totalqty": { "description": "表示合同量.", "type": "number" }, "unpricedqty": { "description": "表示未定价量.", "type": "number" }, "wrstandardname": { "description": "表示商品ID.", "type": "string" } } }, "erms3.QueryUserInfoAppliesRsp": { "type": "object", "required": [ "userid" ], "properties": { "biznature": { "description": "企业性质( 企业) - 1:国有控股企业 2:集体控股企业 3:私人控股企业 4:港澳台商控股企业 5:外商控股企业 6:其它", "type": "integer" }, "contactname": { "description": "联系人", "type": "string" }, "createtime": { "description": "开户申请时间", "type": "string" }, "userid": { "description": "用户ID(自增ID)", "type": "integer" }, "userinfotype": { "description": "用户信息类型 - 1:个人 2:企业", "type": "integer" }, "username": { "description": "用户姓名", "type": "string" }, "userstate": { "description": "开户状态 - 1:未提交 2: 待初审 3:初审拒绝 4:待复审 5:复审拒绝 6:测评不通过", "type": "integer" } } }, "erms3.QueryUserInfosRsp": { "type": "object", "required": [ "userid" ], "properties": { "biznature": { "description": "企业性质( 企业) - 1:国有控股企业 2:集体控股企业 3:私人控股企业 4:港澳台商控股企业 5:外商控股企业 6:其它", "type": "integer" }, "contactname": { "description": "联系人", "type": "string" }, "customername": { "description": "客户名称(企业名称)", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "userinfotype": { "description": "用户信息类型 - 1:个人 2:企业", "type": "integer" }, "userstatus": { "description": "用户状态 - 1:正常 2:注销", "type": "integer" } } }, "erms3.SoptContractDetail": { "type": "object", "required": [ "deliverygoodsid", "producttype", "unitname", "warehouseid", "wrstandardid", "wrstandardname" ], "properties": { "deliverygoodsdesc": { "description": "现货品种说明", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "pointdesc": { "description": "点价描述", "type": "string" }, "producttype": { "description": "产品类型 1:标准仓单 2:等标 3:非标", "type": "integer" }, "producttypename": { "description": "产品类型名称", "type": "string" }, "spotPointOrderVoList": { "description": "点价列表", "type": "array", "items": { "$ref": "#/definitions/erms3.SpotPointOrder" } }, "spotPriceOrderList": { "description": "定价列表", "type": "array", "items": { "$ref": "#/definitions/erms3.SpotPriceOrder" } }, "unitname": { "description": "单位名称", "type": "string" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrstandardid": { "description": "交易标的ID", "type": "integer" }, "wrstandardname": { "description": "交易标的名称", "type": "string" } } }, "erms3.SpotPointOrder": { "type": "object", "required": [ "basic", "goodsid", "qty" ], "properties": { "basic": { "description": "基差", "type": "number" }, "deliveryenddate": { "description": "交收结束日期", "type": "string" }, "deliverystartdate": { "description": "交收开始日期", "type": "string" }, "enddate": { "description": "点价结束日期", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "qty": { "description": "数量", "type": "number" }, "startdate": { "description": "点价开始日期", "type": "string" } } }, "erms3.SpotPriceOrder": { "type": "object", "required": [ "amount", "price", "qty" ], "properties": { "amount": { "description": "金额", "type": "number" }, "deliveryenddate": { "description": "交收结束日期", "type": "string" }, "deliverystartdate": { "description": "交收开始日期", "type": "string" }, "price": { "description": "价格", "type": "number" }, "qty": { "description": "数量", "type": "number" } } }, "hsby.GetHsbyMyCountRsp": { "type": "object", "properties": { "myCouponCount": { "description": "我的优惠卷数量", "type": "integer" }, "myOrderDetailListingCount": { "description": "我的订单求购中数量", "type": "integer" }, "myOrderDetailPreCount": { "description": "我的订单抢购中数量", "type": "integer" }, "myPackageUnReceiveCount": { "description": "我的包裹待收货数量", "type": "integer" }, "myPackageUnSendCount": { "description": "我的包裹待发货数量", "type": "integer" }, "myPayOrderCount": { "description": "我的订单待付款数量", "type": "integer" } } }, "hsby.QueryProvincesAndCitiesRsp": { "type": "object", "properties": { "cities": { "description": "市", "type": "array", "items": { "$ref": "#/definitions/models.Division" } }, "province": { "description": "省", "$ref": "#/definitions/models.Division" } } }, "models.Clientfixedadconfig": { "type": "object", "required": [ "adsort", "adtype" ], "properties": { "adsort": { "description": "排序", "type": "integer" }, "adtype": { "description": "广告位类型 - 1:新品抢购(HSBY)", "type": "integer" }, "areauserid": { "description": "所属机构ID", "type": "integer" }, "createdate": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "imagepath": { "description": "图片", "type": "string" }, "isshow": { "description": "是否展示 - 0:不展示 1:展示", "type": "integer" }, "modifierid": { "description": "操作人", "type": "integer" }, "recsize": { "description": "推荐尺寸", "type": "string" }, "title": { "description": "标题", "type": "string" }, "updatedate": { "description": "更新时间", "type": "string" }, "urlcontent": { "description": "链接(地址或商品ID)", "type": "string" }, "urltype": { "description": "链接类型 - 1:直接地址 2:商品ID", "type": "integer" } } }, "models.Division": { "type": "object", "required": [ "autoid", "divisioncode" ], "properties": { "autoid": { "description": "自增ID", "type": "integer" }, "divisioncode": { "description": "行政代码", "type": "string" }, "divisionlevel": { "description": "行政级别", "type": "string" }, "divisionname": { "description": "行政名称", "type": "string" }, "modifierid": { "description": "修改人", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "parentcode": { "description": "上级行政代码", "type": "string" }, "pathname": { "description": "路径名称", "type": "string" }, "postcode": { "description": "邮政编码", "type": "string" }, "separablename": { "description": "可拆分的全称", "type": "string" }, "shortcode": { "description": "地区简码", "type": "string" } } }, "models.Enumdicitem": { "type": "object", "required": [ "autoid", "enumdiccode", "enumdicid", "enumitemname" ], "properties": { "autoid": { "description": "自增ID", "type": "integer" }, "bankmappedvalue": { "description": "银行服务对应值", "type": "string" }, "enumdiccode": { "description": "所属枚举代码", "type": "string" }, "enumdicid": { "description": "所属枚举ID", "type": "integer" }, "enumdicname": { "description": "枚举项名称", "type": "string" }, "enumitemname": { "description": "枚举项值", "type": "integer" }, "enumitemstatus": { "description": "枚举项状态 - 1.启用 2.不启用", "type": "integer" }, "enumitemvalue": { "description": "通用值 - [币种通用简写]", "type": "string" }, "param1": { "description": "参数1[币种:币种小数位]", "type": "string" }, "param2": { "description": "参数1[币种:币种显示单位]", "type": "string" }, "remark": { "description": "备注", "type": "string" } } }, "models.ErmcpHisExposure": { "type": "object", "properties": { "needhedgeexposoure": { "description": "应套保敞口", "type": "number" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "totalexposure": { "description": "总敞口", "type": "number" } } }, "models.ErmcpMiddleGoodsModel": { "type": "object", "properties": { "areauserid": { "description": "机构用户ID", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "evaluateratio": { "description": "估价系数", "type": "number" }, "goodsgroupid": { "description": "关联期货品种ID", "type": "integer" }, "isvalid": { "description": "状态 0-无效(停用) 1-有效(正常)", "type": "integer" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种ID(SEQ_ERMS_MIDDLEGOODS)", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "modifytime": { "description": "修改时间", "type": "string" }, "needhedgeratio": { "description": "套保比率", "type": "number" }, "qtydecimalplace": { "description": "数量小数位", "type": "integer" }, "relatedgoodsid": { "description": "关联交易商品ID", "type": "integer" }, "relatedgoodstype": { "description": "关联商品类型 - 1:期货合约 2:现货品种", "type": "integer" } } }, "models.ErmcpReportDayFR": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "collectinvoiceamount": { "description": "今日开票金额", "type": "number" }, "collectinvoicecount": { "description": "今日开票笔数", "type": "integer" }, "collectmoneyamount": { "description": "今日收款金额", "type": "number" }, "collectmoneycount": { "description": "今日收款笔数", "type": "integer" }, "payinvoiceamount": { "description": "今日收票金额", "type": "number" }, "payinvoicecount": { "description": "今日收票笔数", "type": "integer" }, "paymoneyamount": { "description": "今日付款金额", "type": "number" }, "paymoneycount": { "description": "今日付款笔数", "type": "integer" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.ErmcpWrstandard": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "isvalid": { "description": "是否有效 0-无效(停用) 1-有效(正常)", "type": "integer" }, "minivalue": { "description": "最小变动值", "type": "integer" }, "minivaluedp": { "description": "最小变动值小数位", "type": "integer" }, "realminivalue": { "description": "实际最小变动值", "type": "integer" }, "realminivaluedp": { "description": "实际最小变动值小数位", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "unitid": { "description": "单位ID", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(SEQ_WRSTANDARD)", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.Goods": { "type": "object", "required": [ "goodscode", "goodsid", "goodsname", "marketid" ], "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "auditaccountid": { "description": "审核操作员账号", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "cancelaccountid": { "description": "注销操作员账号", "type": "integer" }, "canceltime": { "description": "注销时间", "type": "string" }, "closepricemode": { "description": "强平价格方式 - 1:市价 2:最新价 3:涨跌停(未实现)", "type": "integer" }, "closepriceparam": { "description": "强平最新价浮动比例 - 方式为2时使用 (\u003c1)买 上浮 (1+x)*最新价卖 下浮 (1-x)*最新价", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "currencyid": { "description": "报价货币ID", "type": "integer" }, "cutmode": { "description": "斩仓方式 - 1:不斩仓 2:自动斩仓 3:半自动斩仓", "type": "integer" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "delistingdate": { "description": "商品退市时间(状态:退市) -- 已作废", "type": "string" }, "delistingmode": { "description": "退市方式 - 1:退市平仓 2:退市交收 3:不处理(仅期权\\币币兑换)", "type": "integer" }, "deliveryflag": { "description": "交割标志 - 0:不可交割 1:可交割", "type": "integer" }, "forceclosemode": { "description": "定期强平方式 - 1:无 2:每日 3:每周 4:每月[收益权]", "type": "integer" }, "forceclosevalue": { "description": "定期强平参数 [收益权]", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodscurrencyid": { "description": "合约货币ID", "type": "integer" }, "goodsgroupid": { "description": "所属商品组ID", "type": "integer" }, "goodsid": { "description": "商品ID(自增ID SEQ_GOODS)", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodsquotetype": { "description": "合约报价类型: 1-直接报价 2-间接报价", "type": "integer" }, "goodsstatus": { "description": "商品状态- 1:待审核 2:未上市 3:上市 4:已注销 5:审核拒绝 6:退市 7:待退市", "type": "integer" }, "goodstradetype": { "description": "商品交易权限类型 - 1:可建可平 3:不可建可平", "type": "integer" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "hasquoter": { "description": "是否有报价商 - 0:无报价商 1:有报价商", "type": "integer" }, "hqprotecttime": { "description": "行情保护时间(秒)", "type": "integer" }, "innerdealmode": { "description": "内部成交方式[通道交易] - 1:净头寸 2:开平 3:平今", "type": "integer" }, "isbuylimited": { "description": "是否限制建仓量 - 0:不限制 1:限制", "type": "integer" }, "lasttradedate": { "description": "最后交易日期(状态:待退市)", "type": "string" }, "listingdate": { "description": "交易开始日期", "type": "string" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "modifierid": { "description": "修改人", "type": "integer" }, "modifystatus": { "description": "变更状态 - 1:未变更 2:变更中 3:待审核 4:已审核", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "outerdealmode": { "description": "外部成交方式[通道交易]- 1:净头寸 2:开平 3:平今", "type": "integer" }, "outgoodscode": { "description": "商品代码(外部)", "type": "string" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "quotegear": { "description": "行情档位(1-10)", "type": "integer" }, "quoteminunit": { "description": "行情最小变动单位 [整数,报价小数位一起使用]", "type": "integer" }, "quoteshowtype": { "description": "行情报价类型: 1:成交价 2:买卖中间价 3:含买价 4:含卖价做市模式固定为3:含买价", "type": "integer" }, "quoteshowtypeinterval": { "description": "行情报价间隔时间(秒)(成交价时为0)", "type": "integer" }, "remark": { "description": "备注", "type": "string" } } }, "models.GoodsBrand": { "type": "object", "properties": { "brandid": { "description": "品牌ID", "type": "integer" }, "brandname": { "description": "品牌名称", "type": "string" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" } } }, "models.GoodsGroupConvert": { "type": "object", "properties": { "convertratio": { "description": "折算系数", "type": "number" }, "dstgoodsgroupid": { "description": "目标期货品种ID", "type": "integer" }, "goodsgroupname": { "description": "期货品种名称", "type": "string" }, "outergroupcode": { "description": "期货品种代码", "type": "string" }, "srcgoodsgroupid": { "description": "源期货品种ID", "type": "integer" } } }, "models.GoodsIDAndName": { "type": "object", "required": [ "goodscode", "goodsid", "goodsname", "marketid" ], "properties": { "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID(自增ID SEQ_GOODS)", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "marketid": { "description": "所属市场ID", "type": "integer" } } }, "models.GoodsTypeModel": { "type": "object", "properties": { "modelid": { "description": "型号ID", "type": "integer" }, "modelname": { "description": "型号名称", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.HsbyBuyMyPayOrder": { "type": "object", "required": [ "goodscode", "goodsname", "tradeid", "trademode" ], "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "buyaccountid": { "description": "买方账号ID[报价币种]", "type": "integer" }, "buyorderid": { "description": "买方委托单号", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "currencysign": { "description": "货币符号", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "offamount": { "description": "优惠金额", "type": "number" }, "payamount": { "description": "支付金额 = TradeAmount + TradeCharge - OffAmount", "type": "number" }, "payflag": { "description": "付款标识 - 1:未支付 2:已支付 3:已过期 4:已撤销 5:结算过期 6:预售终止", "type": "integer" }, "paylimitedtime": { "description": "支付期限", "type": "string" }, "paytime": { "description": "付款时间", "type": "string" }, "picurls1": { "description": "预售商品介绍图片[多张用逗号分隔]", "type": "string" }, "picurls2": { "description": "挂牌商品介绍图片[多张用逗号分隔]", "type": "string" }, "sellaccountid": { "description": "卖方账号ID[报价币种]", "type": "integer" }, "sellorderid": { "description": "卖方委托单号", "type": "string" }, "tradeamount": { "description": "成交金额", "type": "number" }, "tradecharge": { "description": "成交手续费(买方)", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "成交单号(101+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "vendorname1": { "description": "预售商品供应商名称", "type": "string" }, "vendorname2": { "description": "挂牌商品供应商名称", "type": "string" } } }, "models.HsbyBuyMyTradeDetail": { "type": "object", "required": [ "accountid", "buyorsell", "goodscode", "goodsid", "goodsname", "marketid", "orderid", "qty", "time", "trademode" ], "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "agreeunit": { "description": "合约单位", "type": "number" }, "amount": { "description": "金额 = 价格 * 数量 * 合约单位", "type": "number" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "currencysign": { "description": "货币符号", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "orderid": { "description": "单号(成交单号)", "type": "string" }, "picurls1": { "description": "预售商品介绍图片[多张用逗号分隔]", "type": "string" }, "picurls2": { "description": "挂牌商品介绍图片[多张用逗号分隔]", "type": "string" }, "price": { "description": "价格", "type": "number" }, "qty": { "description": "数量", "type": "integer" }, "time": { "description": "时间", "type": "string" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "vendorname1": { "description": "预售商品供应商名称", "type": "string" }, "vendorname2": { "description": "挂牌商品供应商名称", "type": "string" } } }, "models.HsbyGoodsOrderDetail": { "type": "object", "required": [ "buyorsell", "orderid", "ordertime" ], "properties": { "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "currencysign": { "description": "货币符号", "type": "string" }, "customername": { "description": "客户名称(企业名称),已脱敏", "type": "string" }, "enableqty": { "description": "可用数量", "type": "integer" }, "goodunit": { "description": "报价单位", "type": "string" }, "orderid": { "description": "委托单号(100+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "orderprice": { "description": "委托价格", "type": "number" }, "ordertime": { "description": "委托时间", "type": "string" } } }, "models.HsbyListingGoodsDetail": { "type": "object", "required": [ "goodscode", "goodsid", "goodsname", "marketid", "trademode" ], "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "buymaxqty": { "description": "购买上限 [71] - 0为不限", "type": "integer" }, "currency": { "description": "货币", "type": "string" }, "currencysign": { "description": "货币符号", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "desccityid": { "description": "目的地(市)ID", "type": "integer" }, "descprovinceid": { "description": "目的地(省)ID", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsdesc": { "description": "商品详情", "type": "string" }, "goodsid": { "description": "商品ID(自增ID SEQ_GOODS)", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodsprice": { "description": "商品价格", "type": "number" }, "hotindex": { "description": "景点热度", "type": "integer" }, "last": { "description": "现价", "type": "number" }, "limitdown": { "description": "跌停价", "type": "number" }, "limitup": { "description": "涨停价", "type": "number" }, "lotsize": { "description": "手数最小变动单位", "type": "integer" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "picurls": { "description": "介绍图片[多张用逗号分隔]", "type": "string" }, "quoteminunit": { "description": "行情最小变动单位 [整数,报价小数位一起使用]", "type": "integer" }, "stepvalue": { "description": "价格最小变动单位", "type": "number" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "vendorattr": { "description": "供应商附件(多张,逗号分隔)", "type": "string" }, "vendorname": { "description": "供应商名称", "type": "string" }, "vendorphone": { "description": "供应商客服电话", "type": "string" }, "videourls": { "description": "介绍视频[多张用逗号分隔]", "type": "string" } } }, "models.HsbyMarketGoods": { "type": "object", "required": [ "accountid", "buyorsell", "goodscode", "goodsid", "goodsname", "marketid", "orderid", "trademode" ], "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "agreeunit": { "description": "合约单位", "type": "number" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "categoryid": { "description": "类别ID(WRCATEGORY)", "type": "integer" }, "currency": { "description": "货币", "type": "string" }, "currencysign": { "description": "货币符号", "type": "string" }, "customername": { "description": "卖家名称", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodsprice": { "description": "商品价格", "type": "number" }, "hascoupon": { "description": "是否可用优惠卷", "type": "boolean" }, "hotindex": { "description": "景点热度", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "orderid": { "description": "委托单号(100+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "orderprice": { "description": "委托价格", "type": "number" }, "orderstatus": { "description": "委托状态 - 1: 委托请求 2:待冻结 3:委托成功 4: 委托失败 5:配对成功 6: 已撤销 7:部分成交 8:已成交 9:部成部撤 10:成交失败 11:已拒绝 12:经过摘牌(先摘后挂专用-先摘后挂已摘过) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用)", "type": "integer" }, "picurls": { "description": "介绍图片[多张用逗号分隔]", "type": "string" }, "quoteminunit": { "description": "行情最小变动单位 [整数,报价小数位一起使用]", "type": "integer" }, "sellUserID": { "description": "卖方UserID", "type": "integer" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "videourls": { "description": "介绍视频[多张用逗号分隔]", "type": "string" } } }, "models.HsbyMarketGoodsDetail": { "type": "object", "required": [ "accountid", "buyorsell", "goodscode", "goodsid", "goodsname", "marketid", "orderid", "orderqty", "trademode" ], "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "agreeunit": { "description": "合约单位", "type": "number" }, "buymaxqty": { "description": "购买上限 [71] - 0为不限", "type": "integer" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "cancelqty": { "description": "撤单数量", "type": "integer" }, "categoryid": { "description": "类别ID(WRCATEGORY)", "type": "integer" }, "currency": { "description": "货币", "type": "string" }, "currencysign": { "description": "货币符号", "type": "string" }, "customername": { "description": "卖家名称", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsdesc": { "description": "商品详情", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodsprice": { "description": "商品价格", "type": "number" }, "hotindex": { "description": "景点热度", "type": "integer" }, "lotsize": { "description": "手数最小变动单位", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "orderid": { "description": "委托单号(100+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "orderprice": { "description": "委托价格", "type": "number" }, "orderqty": { "description": "委托数量", "type": "integer" }, "orderstatus": { "description": "委托状态 - 1: 委托请求 2:待冻结 3:委托成功 4: 委托失败 5:配对成功 6: 已撤销 7:部分成交 8:已成交 9:部成部撤 10:成交失败 11:已拒绝 12:经过摘牌(先摘后挂专用-先摘后挂已摘过) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用)", "type": "integer" }, "picurls": { "description": "介绍图片[多张用逗号分隔]", "type": "string" }, "quoteminunit": { "description": "行情最小变动单位 [整数,报价小数位一起使用]", "type": "integer" }, "sellUserID": { "description": "卖方UserID", "type": "integer" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "vendorattr": { "description": "供应商附件(多张,逗号分隔)", "type": "string" }, "vendorname": { "description": "供应商名称", "type": "string" }, "vendorphone": { "description": "供应商客服电话", "type": "string" }, "videourls": { "description": "介绍视频[多张用逗号分隔]", "type": "string" } } }, "models.HsbyMarketInfo": { "type": "object", "required": [ "marketid", "marketstatus", "trademode" ], "properties": { "marketid": { "description": "市场ID正常5位,前三位固定:两位表示交易模式, 一位表示交易属性(1:收益权,2:所有权) 其它特殊市场:0-系统 1-交割服务 2-账户服务3-履约服务 4-仓单服务 5-积分服务 6-银行服务", "type": "integer" }, "marketname": { "description": "市场名称", "type": "string" }, "marketstatus": { "description": "生效状态(ValidStatus枚举): 1:待生效 2:正常 3:注销", "type": "integer" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" } } }, "models.HsbyMyGoods": { "type": "object", "required": [ "accountid", "goodscode", "goodsid", "goodsname", "marketid", "trademode" ], "properties": { "accountid": { "description": "账号Id", "type": "integer" }, "agreeunit": { "description": "合约单位", "type": "number" }, "buyaverageprice": { "description": "持仓均价", "type": "number" }, "buycurholderamount": { "description": "买当前持仓总金额[商品币种]", "type": "number" }, "buycurpositionqty": { "description": "买当前持仓总数量", "type": "integer" }, "buymaxqty": { "description": "购买上限 [71] - 0为不限", "type": "integer" }, "currencysign": { "description": "货币符号", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "enableqty": { "description": "可用数量", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品Id", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodsprice": { "description": "商品价格", "type": "number" }, "goodsstatus": { "description": "商品状态- 1:待审核 2:未上市 3:上市 4:已注销 5:审核拒绝 6:退市 7:待退市", "type": "integer" }, "last": { "description": "现价(仅使用于挂牌点选)", "type": "number" }, "limitdown": { "description": "跌停价(仅使用于挂牌点选)", "type": "number" }, "limitup": { "description": "涨停价(仅使用于挂牌点选)", "type": "number" }, "lotsize": { "description": "手数最小变动单位", "type": "integer" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "picurls": { "description": "介绍图片[多张用逗号分隔]", "type": "string" }, "quoteminunit": { "description": "行情最小变动单位 [整数,报价小数位一起使用]", "type": "integer" }, "stepvalue": { "description": "价格最小变动单位", "type": "number" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" } } }, "models.HsbyMyPackage": { "type": "object", "required": [ "goodscode", "goodsname", "takeorderid", "trademode" ], "properties": { "accountid": { "description": "账户ID", "type": "integer" }, "address": { "description": "提货人详细地址", "type": "string" }, "agreeunit": { "description": "合约单位", "type": "number" }, "amount": { "description": "提货金额", "type": "number" }, "auditer": { "description": "审核人", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "averageprice": { "description": "均价", "type": "number" }, "cardnum": { "description": "提货人证件号码", "type": "string" }, "cardtypeid": { "description": "提货人证件类型", "type": "integer" }, "checkremark": { "description": "审核备注", "type": "string" }, "currencysign": { "description": "货币符号", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "phonenum": { "description": "提货人联系方式", "type": "string" }, "picurls": { "description": "介绍图片[多张用逗号分隔]", "type": "string" }, "qty": { "description": "提货数量", "type": "number" }, "recivername": { "description": "提货人姓名", "type": "string" }, "reqtime": { "description": "更新时间", "type": "string" }, "takemode": { "description": "提货方式 - 2:自提 3:配送", "type": "integer" }, "takeorderid": { "description": "提货单号(905+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "takeorderstatus": { "description": "提货状态 - 1:待发货 2:已发货 3:已收货", "type": "integer" }, "takeremark": { "description": "提货备注", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "userid": { "description": "用户ID", "type": "integer" }, "vendorname": { "description": "供应商名称", "type": "string" } } }, "models.HsbyPreGoods": { "type": "object", "required": [ "goodscode", "goodsid", "goodsname", "marketid", "trademode" ], "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "currency": { "description": "货币", "type": "string" }, "currencysign": { "description": "货币符号", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "desccityid": { "description": "目的地(市)", "type": "integer" }, "descprovinceid": { "description": "目的地(省)", "type": "integer" }, "enableqty": { "description": "剩余数量", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID(自增ID SEQ_GOODS)", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodsstatus": { "description": "商品状态- 2:未上市 3:上市", "type": "integer" }, "lasttradedate": { "description": "最后交易日期(状态:待退市)", "type": "string" }, "listingdate": { "description": "交易开始日期", "type": "string" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "picurls": { "description": "介绍图片[多张用逗号分隔]", "type": "string" }, "presaledqty": { "description": "已预售量(预售结束时更新)", "type": "integer" }, "presaleqty": { "description": "预售数量", "type": "integer" }, "quoteminunit": { "description": "行情最小变动单位 [整数,报价小数位一起使用]", "type": "integer" }, "refprice": { "description": "参考价格[一口价]", "type": "number" }, "relatedgoodsid": { "description": "关联交易合约ID", "type": "integer" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "videourls": { "description": "介绍视频[多张用逗号分隔]", "type": "string" } } }, "models.HsbyPreGoodsDetail": { "type": "object", "required": [ "goodscode", "goodsid", "goodsname", "marketid", "trademode" ], "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "buymaxqty": { "description": "购买上限 [71] - 0为不限", "type": "integer" }, "currency": { "description": "货币", "type": "string" }, "currencysign": { "description": "货币符号", "type": "string" }, "customername": { "description": "发行单位", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "desccityid": { "description": "目的地(市)ID", "type": "integer" }, "descprovinceid": { "description": "目的地(省)ID", "type": "integer" }, "enableqty": { "description": "剩余数量", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsdesc": { "description": "商品详情", "type": "string" }, "goodsid": { "description": "商品ID(自增ID SEQ_GOODS)", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodsstatus": { "description": "商品状态- 2:未上市 3:上市", "type": "integer" }, "goodunit": { "description": "报价单位", "type": "string" }, "lasttradedate": { "description": "最后交易日期(状态:待退市)", "type": "string" }, "listingdate": { "description": "交易开始日期", "type": "string" }, "lotsize": { "description": "手数最小变动单位", "type": "integer" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "picurls": { "description": "介绍图片[多张用逗号分隔]", "type": "string" }, "presaledqty": { "description": "已预售量(预售结束时更新)", "type": "integer" }, "presaleqty": { "description": "预售数量", "type": "integer" }, "quoteminunit": { "description": "行情最小变动单位 [整数,报价小数位一起使用]", "type": "integer" }, "refprice": { "description": "参考价格[一口价]", "type": "number" }, "relatedgoodsid": { "description": "关联交易合约ID", "type": "integer" }, "stepvalue": { "description": "价格最小变动单位", "type": "number" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "vendorattr": { "description": "供应商附件(多张,逗号分隔)", "type": "string" }, "vendorname": { "description": "供应商名称", "type": "string" }, "vendorphone": { "description": "供应商客服电话", "type": "string" }, "videourls": { "description": "介绍视频[多张用逗号分隔]", "type": "string" } } }, "models.HsbySellCollectionOrder": { "type": "object", "required": [ "goodscode", "goodsname", "tradeid", "trademode" ], "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "buyaccountid": { "description": "买方账号ID[报价币种]", "type": "integer" }, "buyorderid": { "description": "买方委托单号", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "currencysign": { "description": "货币符号", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "offamount": { "description": "优惠金额", "type": "number" }, "payamount": { "description": "支付金额 = TradeAmount + TradeCharge - OffAmount", "type": "number" }, "payflag": { "description": "付款标识 - 1:未支付 2:已支付 3:已过期 4:已撤销 5:结算过期 6:预售终止", "type": "integer" }, "paylimitedtime": { "description": "支付期限", "type": "string" }, "paytime": { "description": "付款时间", "type": "string" }, "picurls": { "description": "商品介绍图片[多张用逗号分隔]", "type": "string" }, "sellaccountid": { "description": "卖方账号ID[报价币种]", "type": "integer" }, "sellorderid": { "description": "卖方委托单号", "type": "string" }, "tradeamount": { "description": "成交金额", "type": "number" }, "tradecharge": { "description": "成交手续费(买方)", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "成交单号(101+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeqty": { "description": "成交数量", "type": "integer" } } }, "models.HsbySellMyDetail": { "type": "object", "required": [ "accountid", "buyorsell", "goodscode", "goodsid", "goodsname", "marketid", "orderid", "time", "trademode" ], "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "agreeunit": { "description": "合约单位", "type": "number" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "currencysign": { "description": "货币符号", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "orderid": { "description": "单号(发布中 - 委托单号;已完成 - 成交单号)", "type": "string" }, "ordertype": { "description": "单据类型:0 - 发布中, 1 - 已完成", "type": "integer" }, "picurls": { "description": "介绍图片[多张用逗号分隔]", "type": "string" }, "price": { "description": "价格", "type": "number" }, "qty": { "description": "数量", "type": "integer" }, "time": { "description": "时间", "type": "string" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "vendorname": { "description": "供应商名称", "type": "string" } } }, "models.HsbyTopGoods": { "type": "object", "required": [ "goodscode", "goodsid", "goodsname", "marketid", "trademode" ], "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "currency": { "description": "货币", "type": "string" }, "currencysign": { "description": "货币符号", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "desccityid": { "description": "目的地(市)", "type": "integer" }, "descprovinceid": { "description": "目的地(省)", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID(自增ID SEQ_GOODS)", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "hotindex": { "description": "景点热度", "type": "integer" }, "last": { "description": "现价", "type": "number" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "picurls": { "description": "介绍图片[多张用逗号分隔]", "type": "string" }, "quoteminunit": { "description": "行情最小变动单位 [整数,报价小数位一起使用]", "type": "integer" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "videourls": { "description": "介绍视频[多张用逗号分隔]", "type": "string" } } }, "models.HybsMyBuyOrderDetail": { "type": "object", "required": [ "accountid", "buyorsell", "goodscode", "goodsid", "goodsname", "marketid", "orderid", "orderqty", "ordertime", "trademode" ], "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "agreeunit": { "description": "合约单位", "type": "number" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "cancelqty": { "description": "撤单数量", "type": "integer" }, "currencysign": { "description": "货币符号", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "listingselecttype": { "description": "挂牌点选类型 - 1:挂牌 2:摘牌 3:先摘后挂", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "mybuystatus": { "description": "\"我的订单\"显示状态- 1:抢购中 2:求购中 3:已完成 4:已撤消 5:委托失败", "type": "integer" }, "orderamount": { "description": "委托金额", "type": "number" }, "orderid": { "description": "委托单号(100+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "orderprice": { "description": "委托价格", "type": "number" }, "orderqty": { "description": "委托数量", "type": "integer" }, "orderstatus": { "description": "委托状态 - 1: 委托请求 2:待冻结 3:委托成功 4: 委托失败 5:配对成功 6: 已撤销 7:部分成交 8:已成交 9:部成部撤 10:成交失败 11:已拒绝 12:经过摘牌(先摘后挂专用-先摘后挂已摘过) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用)", "type": "integer" }, "ordertime": { "description": "委托时间", "type": "string" }, "picurls1": { "description": "预售商品介绍图片[多张用逗号分隔]", "type": "string" }, "picurls2": { "description": "挂牌商品介绍图片[多张用逗号分隔]", "type": "string" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "vendorname1": { "description": "预售商品供应商名称", "type": "string" }, "vendorname2": { "description": "挂牌商品供应商名称", "type": "string" } } }, "models.Market": { "type": "object", "required": [ "marketid", "marketstatus", "openmethod", "reckonpricealgorithm", "trademode", "tradeproperty" ], "properties": { "auctionwrtype": { "description": "竞拍仓单类型 - 1:无仓单 2:有仓单 3;有无仓单均可", "type": "integer" }, "canacceptquote": { "description": "确认行权是否接收行情 - 0:不接受 1:接受 [可确认权的挂牌期权市场可配置]", "type": "integer" }, "cangoodsexercise": { "description": "[期权]是否可现货行权- 0:否 1:是", "type": "integer" }, "cangoodsexercisetype": { "description": "可现货行权期权类型 - 1:认购 2认沽 3:认购认沽 [CanGoodsExercise = 1时可设置]", "type": "integer" }, "canmanualquotestrike": { "description": "是否可手动报行权价- 0:否 1:是 [期权]", "type": "integer" }, "canmutistage": { "description": "是否可多段运行 – 0:不可 1:可 [挂牌期权]", "type": "integer" }, "canpreexercise": { "description": "[期权]是否可预申报- 0:否 1:是", "type": "integer" }, "clearinterval": { "description": "待开市间隔(交易市场开盘前多久发市场待开市信号(单位分钟))", "type": "integer" }, "contracttmp": { "description": "合同模板[荷兰式][竞价式][仓单贸易]", "type": "string" }, "exchareaid": { "description": "所属交易所,可以没有", "type": "integer" }, "goodstype": { "description": "商品类型 - 1:交易商品 2:仓单商品", "type": "integer" }, "hasrebate": { "description": "是否返利[竞价式] 0:不返,1:返利 -- 根据系统参数088显示或隐藏", "type": "integer" }, "hastradecredit": { "description": "是否交易授信[做市收益权] - 0:不授信 1:授信", "type": "integer" }, "haswr": { "description": "[竞拍]是否需要仓单 - 0:不需要 1:需要-作废", "type": "integer" }, "isdeductmargin": { "description": "竞拍违约是否扣除保证金[竞拍-降价式] - 0:不扣 1:扣除", "type": "integer" }, "isrecordsource": { "description": "是否记录成交源 - 0:不记录 1:记录 [所有权]", "type": "integer" }, "isreleasemargin": { "description": "成交参与保证金是否释放[竞价式] - 0:不释放 1释放", "type": "integer" }, "marginformula": { "description": "持仓保证金公式 - 1:双边收 2:净头寸收 3:大小边差异收 4:大边收 5:卖持仓收(仅期权)", "type": "integer" }, "marginformula2": { "description": "持仓保证金公式(仅受托竞价) - 1:双边收 2:净头寸收 3:大小边差异收 4:大边收 5:卖持仓收(仅期权)", "type": "integer" }, "marketid": { "description": "市场ID正常5位,前三位固定:两位表示交易模式, 一位表示交易属性(1:收益权,2:所有权) 其它特殊市场:0-系统 1-交割服务 2-账户服务3-履约服务 4-仓单服务 5-积分服务 6-银行服务", "type": "integer" }, "marketname": { "description": "市场名称", "type": "string" }, "marketserviceid": { "description": "市场服务ID", "type": "integer" }, "marketstatus": { "description": "生效状态(ValidStatus枚举): 1:待生效 2:正常 3:注销", "type": "integer" }, "markettype": { "description": "市场类型- 1:非交易服务 2:交易服务", "type": "integer" }, "matchermode": { "description": "指定对手模式[仓单贸易模式专用] - 1:任意对手", "type": "integer" }, "openmethod": { "description": "开盘模式 - 0 自动 1手动", "type": "integer" }, "otcuserid": { "description": "场外期权做市商[场外期权]", "type": "integer" }, "outersynctime": { "description": "外部同步时间点(h24:mi:ss)[场外期权]", "type": "string" }, "pendingflag": { "description": "待开市时间标识[通道交易-对冲] - 0:当日 1:上日", "type": "integer" }, "pendingtime": { "description": "待开市时间[通道交易-对冲](HH:mm)", "type": "string" }, "performancetempid": { "description": "履约计划模板ID - 作废", "type": "integer" }, "premiumquotemode": { "description": "权利金报价方式 - 1:自动 2:手动", "type": "integer" }, "rebateratio": { "description": "返利比率[竞价式]", "type": "number" }, "reckonorder": { "description": "结算顺序", "type": "integer" }, "reckonpricealgorithm": { "description": "结算价算法: 1:最后多少笔成交价加权平均 2:最后多少秒成交价加权平均 3:全天加权平均 4:最后一口价 5.买一价 6.卖一价 7.买一卖一均价 8.外部结算价", "type": "integer" }, "reckonpriceparam": { "description": "结算价参数", "type": "integer" }, "reckontime": { "description": "结算时间[通道交易-对冲](HH:mm)", "type": "string" }, "roleprioritytype": { "description": "角色优先类型 - 1:无 2:报价商优先 3:非报价商优先 [16:挂牌点选]", "type": "integer" }, "selllistingauditflag": { "description": "卖挂牌是否需要审核(仓单贸易) - 0:不需要 1:需要", "type": "integer" }, "trademarkettype": { "description": "交易市场类型 - 1:合约市场 2:外部市场 3:仓单市场", "type": "integer" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "tradeproperty": { "description": "交易属性 - 1:收益权(可做空) 2:所有权(不可做空) 3:期权 4:现货 5:参考行情 6:通道交易 7:币交易 8:场外期权", "type": "integer" }, "tradetype": { "description": "下单方式[通道交易] - 1:直接转单 2:净头寸下单", "type": "integer" } } }, "models.Marketrun": { "type": "object", "required": [ "marketid", "nexttradedate", "reckonflag", "runstatus", "tradedate", "tradedate2" ], "properties": { "afternexttradedate": { "description": "下下交易日", "type": "string" }, "clearquoteflag": { "description": "行情清盘标志- 1:未发送 2:已发送 3:已回复", "type": "integer" }, "lastreckondate": { "description": "最新交易日(结算成功)", "type": "string" }, "machinedate": { "description": "机器时间", "type": "string" }, "manualflag": { "description": "手动开市标志- 0:否 1:是 (市场为手动时,是否触发了手动开市标志)", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "nexttradedate": { "description": "下一交易日", "type": "string" }, "pretradedate": { "description": "上一交易日", "type": "string" }, "reckonflag": { "description": "结算标识 - 0: 停止结算 1: 正常(管理端控制此字段,交易服务根据此字段判断是否做结算)", "type": "integer" }, "runstatus": { "description": "运行状态 - 0:初始化 1:待开市 2:开市 3:休市 4:手工休市 5:闭市 6:确认行权开始 7:确认行权结束 10:日终处理开始 11:日终处理成功 12:日终处理失败 13基础服务结算开始 14基础服务结算成功 23.资金结算开始 24.资金结算成功 25.资金结算失败 26.系统结算成功 27.系统结算失败 28.盘中处理开始 29.盘中处理成功 30.盘中处理失败 31.资金结算开始(内) 32.资金结算成功(内) 33.资金结算失败(内) 40.签到开始 41.签到成功 42.签到部份成功 43.签到失败 44.签退开始 45.签退成功 46.签退部份成功 47.签退失败 48.对账开始 49.对账成功 50.对账失败 51.清算开始 52.清算成功 53.清算失败 54.清算部分成功 55. 系统结算开始 62.今日免清算", "type": "integer" }, "sectionid": { "description": "时间段号[多时段时用]", "type": "integer" }, "tradedate": { "description": "当前交易日(服务) 资金结算完成即变更,供交易服务使用", "type": "string" }, "tradedate2": { "description": "当前交易日(行情) 在第一个市场待开市时变更为TradeDate,供行情及终端系统使用", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.Messageboard": { "type": "object", "required": [ "messageboardid" ], "properties": { "createtime": { "description": "创建时间", "type": "string" }, "message": { "description": "留言信息", "type": "string" }, "messageboardid": { "description": "留言簿ID(SEQ_MessageBoard)", "type": "integer" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.MyCoupon": { "type": "object", "required": [ "accountid", "coupontypeid" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "areauserid": { "description": "所属机构", "type": "integer" }, "conditionvalue": { "description": "条件阈值(可为0)", "type": "number" }, "couponcategroy": { "description": "种类 - 1:现金券 2:折扣券 3:折扣券(单张)", "type": "integer" }, "couponname": { "description": "优惠券名称", "type": "string" }, "coupontypeid": { "description": "优惠券类型ID", "type": "string" }, "couponvalue": { "description": "面值[1:现金券 - 抵扣值 2:折扣券-折扣值]", "type": "number" }, "curfreezeqty": { "description": "期末冻结数量", "type": "integer" }, "curqty": { "description": "期末数量", "type": "integer" }, "isgeneral": { "description": "是否通用券 - 0:否 1:是", "type": "integer" }, "isunusable": { "description": "是否不可用", "type": "boolean" }, "limitedflag": { "description": "是否指定商品 - 0:不限 1:限制", "type": "integer" }, "limitedgoodsids": { "description": "指定商品IDs[逗号分隔,前后加逗号]", "type": "string" }, "orifreezeqty": { "description": "期初冻结数量", "type": "integer" }, "oriqty": { "description": "期初数量", "type": "integer" }, "reasontype": { "description": "不可用原因 - 0:未确认 1:不可用于此商品 2:不可用于此卖家", "type": "integer" }, "todaydecrease": { "description": "今日减少", "type": "integer" }, "todayincrease": { "description": "今日增加", "type": "integer" }, "userid": { "description": "用户ID", "type": "integer" }, "userscope": { "description": "卖家范围(用户ID,逗号分隔,前后加逗号) [IsGeneral =0时使用]", "type": "string" } } }, "models.MyCouponHold": { "type": "object", "required": [ "couponholdid" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "conditionvalue": { "description": "条件阈值(可为0)", "type": "number" }, "couponcategroy": { "description": "种类 - 1:现金券 2:折扣券 3:折扣券(单个商品)", "type": "integer" }, "couponholdid": { "description": "优惠券持仓ID(229+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "couponname": { "description": "优惠券名称", "type": "string" }, "coupontypeid": { "description": "优惠券类型ID - SEQ_COUPONTYPE", "type": "string" }, "couponvalue": { "description": "面值[1:现金券 - 抵扣值 2:折扣券-折扣值]", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "enddate": { "description": "结束日期", "type": "string" }, "giveapplyid": { "description": "发放申请ID(SEQ_COUPONGIVEAPPLY)", "type": "integer" }, "holdstatus": { "description": "持仓状态 - 1:未生效 2:已生效 3:已使用 4:已过期", "type": "integer" }, "isgeneral": { "description": "是否通用券 - 0:否 1:是", "type": "integer" }, "limitedflag": { "description": "是否指定商品 - 0:不限 1:限制", "type": "integer" }, "limitedgoodsids": { "description": "指定商品IDs[逗号分隔]", "type": "string" }, "qty": { "description": "数量(按1平铺)", "type": "integer" }, "startdate": { "description": "开始日期", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "userscope": { "description": "卖家范围(用户ID,逗号分隔) [IsGeneral =0时使用]", "type": "string" } } }, "models.MyUsedCoupon": { "type": "object", "required": [ "coupontypeid", "orderid" ], "properties": { "accountid": { "description": "资金账户ID(买方)", "type": "integer" }, "conditionvalue": { "description": "条件阈值(可为0)", "type": "number" }, "couponcategroy": { "description": "种类 - 1:现金券 2:折扣券", "type": "integer" }, "couponname": { "description": "优惠券名称", "type": "string" }, "coupontypeid": { "description": "优惠券类型ID(买方)", "type": "string" }, "couponvalue": { "description": "面值[1:现金券 - 抵扣值 2:折扣券-折扣值(0-100)]", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "offamount": { "description": "优惠金额", "type": "number" }, "orderid": { "description": "委托单号(100+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "sellaccountid": { "description": "资金账户ID(卖方)", "type": "integer" }, "tradeamount": { "description": "成交金额", "type": "number" }, "tradeid": { "description": "成交单号(101+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "usedqty": { "description": "使用数量", "type": "integer" } } }, "models.OperationPrimaryMenu": { "type": "object", "properties": { "Children": { "description": "二级功能菜单", "type": "array", "items": { "$ref": "#/definitions/models.OperationSecondaryMenu" } }, "Key": { "description": "菜单KEY", "type": "string" }, "Label": { "description": "菜单标题", "type": "string" } } }, "models.OperationSecondaryMenu": { "type": "object", "properties": { "Key": { "description": "菜单KEY", "type": "string" }, "Label": { "description": "菜单标题", "type": "string" }, "TabList": { "description": "三级功能菜单", "type": "array", "items": { "$ref": "#/definitions/models.OperationTabMenu" } } } }, "models.OperationTabMenu": { "type": "object", "properties": { "Key": { "description": "菜单KEY", "type": "string" }, "Label": { "description": "菜单标题", "type": "string" } } }, "models.QueryErrorInfosRsp": { "type": "object", "required": [ "errorid" ], "properties": { "description": { "description": "异常描述", "type": "string" }, "errorcode": { "description": "异常代码", "type": "string" }, "errorid": { "description": "异常ID", "type": "integer" }, "modulecode": { "description": "所属模块", "type": "string" }, "operatecode": { "description": "所属操作", "type": "string" }, "rownumber": { "description": "行号", "type": "string" } } }, "models.QuotePrimaryMenu": { "type": "object", "properties": { "Index": { "description": "序号", "type": "integer" }, "Key": { "description": "键名", "type": "string" }, "Name": { "description": "菜单名称", "type": "string" }, "SubMenus": { "description": "子菜单", "type": "array", "items": { "$ref": "#/definitions/models.QuoteSecondaryMenu" } }, "SubTitleType": { "description": "子菜单标题模式:0-市场名称;1-外部交易所名称", "type": "integer" }, "TradeModes": { "description": "包含市场交易类型", "type": "string" } } }, "models.QuoteSecondaryMenu": { "type": "object", "properties": { "ExExchangeCode": { "description": "外部交易所代码", "type": "string" }, "ExExchangeID": { "description": "外部交易所ID", "type": "integer" }, "GoodsGroupIDs": { "description": "商品组ID列表", "type": "array", "items": { "type": "integer" } }, "Index": { "description": "序号", "type": "integer" }, "MarketID": { "description": "市场ID", "type": "integer" }, "MenuTitle": { "description": "菜单标题(市场名称或外部交易所名称)", "type": "string" }, "TradeMode": { "description": "交易模式", "type": "integer" } } }, "models.SearchGoods": { "type": "object", "required": [ "goodscode", "goodsid", "goodsname", "marketid", "trademode" ], "properties": { "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID(自增ID SEQ_GOODS)", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "marketname": { "description": "市场名称", "type": "string" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" } } }, "models.Szdz2imageconfig": { "type": "object", "required": [ "configid" ], "properties": { "configid": { "description": "配置ID(SEQ_SZDZ2_IMAGECONFIG)", "type": "integer" }, "imagepath": { "description": "图片", "type": "string" }, "imagetype": { "description": "类型 - 1:App首页轮播 2:我的", "type": "integer" }, "sort": { "description": "排序", "type": "integer" }, "title": { "description": "标题", "type": "string" }, "url": { "description": "链接", "type": "string" } } }, "models.Szdz3convertconfig": { "type": "object", "required": [ "converttype", "innergoodsid", "outergoodscode" ], "properties": { "canin": { "description": "是否可转入 - 0:不可 1:可 [5:花生米转交易]", "type": "integer" }, "canout": { "description": "是否可转出 - 0:不可 1:可 [5:花生米转交易]", "type": "integer" }, "converttype": { "description": "转换类型 - 1:金点赞转交易 2:金点拍转交易 3:交易转金点赞(不设置) 4:交易转金点拍(不设置) 5:花生米转交易 6:交易转花生米(不设置)", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "daymaxvalue": { "description": "当日最大转入限制", "type": "number" }, "freezedays": { "description": "冻结天数 [5:花生米转交易]", "type": "integer" }, "innergoodsid": { "description": "内部商品ID[交易]", "type": "integer" }, "inratio": { "description": "目标值", "type": "integer" }, "modifierid": { "description": "修改人", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "outergoodscode": { "description": "外部商品代码[JD\\PD]", "type": "string" }, "outratio": { "description": "源值", "type": "integer" }, "pddecimalplace": { "description": "PD小数位", "type": "integer" }, "timemaxvalue": { "description": "单次最大转入限制", "type": "number" }, "timeminvalue": { "description": "单次最小转入限制", "type": "number" } } }, "models.Szdz3searchwhitelist": { "type": "object", "required": [ "userid" ], "properties": { "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "modifierid": { "description": "修改人", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.Taaccount": { "type": "object", "required": [ "accountid", "userid" ], "properties": { "accountflag": { "description": "账户标识 - 0\\1 (默认为0, 当上级账户与本账户的关联用户均为自己时更新为1)", "type": "integer" }, "accountid": { "description": "资金账户ID", "type": "integer" }, "accountname": { "description": "账户名称", "type": "string" }, "balance": { "description": "期初余额", "type": "number" }, "capitalbalance": { "description": "本金余额[外部子账户实际出入金余额]", "type": "number" }, "changeflag": { "description": "变动标志(当前账户资金有任何变动更新为1系统结算时更新0;供清算时使用) 0:无变动 1:有变动", "type": "integer" }, "changetime": { "description": "账户状态变更时间", "type": "string" }, "closepl": { "description": "今日平仓盈亏", "type": "number" }, "creditdecrease": { "description": "今日授信减少", "type": "number" }, "creditincrease": { "description": "今日授信增加", "type": "number" }, "currencyid": { "description": "货币ID", "type": "integer" }, "currentbalance": { "description": "期末余额", "type": "number" }, "freezecharge": { "description": "手续费冻结", "type": "number" }, "freezemargin": { "description": "冻结保证金", "type": "number" }, "fromaccountid": { "description": "所属上级账户", "type": "integer" }, "inamount": { "description": "今日入金金额(包括三方入金)", "type": "number" }, "ismain": { "description": "是否母账号 0:不是母账户 1:是母账户", "type": "integer" }, "ismarketaccount": { "description": "是否机构接单账号 0:不是 1:是", "type": "integer" }, "isreckonaccount": { "description": "是否机构分润账号 0:不是 1:是", "type": "integer" }, "mortgagecredit": { "description": "授信金额", "type": "number" }, "orifreezecharge": { "description": "期初手续费冻结", "type": "number" }, "orifreezemargin": { "description": "期初冻结保证金", "type": "number" }, "orimortgagecredit": { "description": "期初授信金额", "type": "number" }, "oriothercredit": { "description": "期初其它授信金额", "type": "number" }, "oriotherfreezemargin": { "description": "期初其他冻结保证金(出金冻结资金 交割买方冻结 申购冻结 全款买入 商城买入)", "type": "number" }, "orioutamountfreeze": { "description": "期初出金冻结", "type": "number" }, "oriusedmargin": { "description": "期初占用保证金", "type": "number" }, "othercredit": { "description": "其它授信金额", "type": "number" }, "othercreditdecrease": { "description": "今日其它授信减少", "type": "number" }, "othercreditincrease": { "description": "今日其它授信增加", "type": "number" }, "otherfreezemargin": { "description": "其他冻结保证金(交割买方冻结 申购冻结 全款买入 商城买入)", "type": "number" }, "otherincome": { "description": "其他收入(交割收款 申购收款 全款卖出 商城卖出 买家退货 会员手续费收入)", "type": "number" }, "otherpay": { "description": "其他支出(交割付款 申购付款 全款买入 商城买入 卖家退货)", "type": "number" }, "outamount": { "description": "今日出金金额(包括三方出金)", "type": "number" }, "outamountfreeze": { "description": "出金冻结", "type": "number" }, "outthreshold": { "description": "出金阈值", "type": "number" }, "parentaccountid": { "description": "所属根账号", "type": "integer" }, "paycharge": { "description": "今日手续费支出", "type": "number" }, "relatedaccountstatus": { "description": "关联用户交易权限状态 - 1:正常(可交易) 2:受限(可平仓,不可建仓) 3:冻结(不可交易)", "type": "integer" }, "relateduserid": { "description": "关联用户", "type": "integer" }, "serivcegroup": { "description": "服务分组", "type": "integer" }, "signstatus": { "description": "签约状态 - 1:未签约 2:签约待审核 3:签约中 4:已签约 5:解约待审核 6:解约中 7:已解约 8:已解绑 9:绑卡中", "type": "integer" }, "sublevelpath": { "description": "账号层级路径(逗号分隔,首尾加逗号)", "type": "string" }, "taaccounttype": { "description": "账号类型 - 1:外部账号 2:内部账号 3:内部做市自营账号 4:内部做市接单账号", "type": "integer" }, "thirdinamount": { "description": "今日三方入金", "type": "number" }, "thirdoutamount": { "description": "今日三方出金", "type": "number" }, "tradestatus": { "description": "交易状态 - 1:正常 2:受限 3:冻结 4:禁止建仓(人工受限) 5:禁止交易(人工冻结) 6:待激活 7:已注销", "type": "integer" }, "tradestatuschangetime": { "description": "激活时间", "type": "string" }, "transferamount": { "description": "今日划转金额(母子账号资金划转,从划入账号为正,从账号划出为负)", "type": "number" }, "usedmargin": { "description": "占用保证金", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.Tablecolumnconfig": { "type": "object", "required": [ "autoid" ], "properties": { "aligntype": { "description": "对齐方式 - 1:居中对齐 2:左对齐 3:右对齐", "type": "integer" }, "autoid": { "description": "AutoID", "type": "integer" }, "columnfield": { "description": "列字段", "type": "string" }, "columntitle": { "description": "列Title", "type": "string" }, "columnwidth": { "description": "列宽", "type": "string" }, "formatterstring": { "description": "格式化字符", "type": "string" }, "formattertype": { "description": "格式化类型", "type": "string" }, "groupname": { "description": "表头分组名称", "type": "string" }, "isshow": { "description": "是否显示 - 0:不显示 1:显示", "type": "integer" }, "needsummary": { "description": "是否需要汇总 - 0:不需要 1:需要", "type": "integer" }, "orderindex": { "description": "顺序", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "summarytype": { "description": "汇总类型 - 1:加总 2:最后一个", "type": "integer" }, "tablekey": { "description": "列表Key", "type": "string" } } }, "models.Useraccount": { "type": "object", "required": [ "userid" ], "properties": { "accountname": { "description": "账户名称(机构名称)", "type": "string" }, "accountstatus": { "description": "账户状态 - 1:待激活 2:待审核 3:待复审 4:正常 5:审核拒绝 6:注销", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "audituserid": { "description": "审核人", "type": "integer" }, "broker": { "description": "所属经纪人ID", "type": "integer" }, "canceltime": { "description": "销户时间", "type": "string" }, "canceluserid": { "description": "销户人", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "hasauth": { "description": "是否已实名认证 - 0:未认证 1:已认证 2:已提交(待审核) 3:已拒绝", "type": "integer" }, "isanonymous": { "description": "是否匿名下单 - 0:否 1:是", "type": "integer" }, "maxinvestornum": { "description": "最大用户数(经纪会员下投资者个数)", "type": "integer" }, "memberuserid": { "description": "所属会员ID", "type": "integer" }, "modifierid": { "description": "修改人", "type": "integer" }, "modifyremark": { "description": "变更备注", "type": "string" }, "modifystatus": { "description": "变更状态 1 未变更 2 变更中 3 变更待审核 4 变更待复核(投资者)", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "parentuserid": { "description": "所属机构ID", "type": "integer" }, "reckonaccountid": { "description": "默认结算资金账号ID(机构分润使用) 作废", "type": "integer" }, "refercount": { "description": "推荐总人数", "type": "integer" }, "refereeuserid": { "description": "推荐人ID", "type": "integer" }, "refernum": { "description": "推荐码", "type": "string" }, "subarealevelpath": { "description": "子机构层级路径(逗号分隔,首尾加逗号)", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "usertype": { "description": "账户类型 - 1:交易所 2:机构 3:会员子机构 4:经纪人 5:投资者 6:客户", "type": "integer" } } }, "models.Userfavoritegoods": { "type": "object", "required": [ "goodsid" ], "properties": { "goodsid": { "description": "商品ID", "type": "integer" } } }, "models.Userinfo": { "type": "object", "required": [ "userid" ], "properties": { "address": { "description": "地址", "type": "string" }, "attachment1": { "description": "附件1", "type": "string" }, "attachment2": { "description": "附件2", "type": "string" }, "bankaccount": { "description": "银行帐号 (加密存储)", "type": "string" }, "bankaccountname": { "description": "收款人名称", "type": "string" }, "bankcardfrontphotourl": { "description": "银行卡正面照地址", "type": "string" }, "bankid": { "description": "银行编码", "type": "string" }, "bankname": { "description": "银行名称", "type": "string" }, "biznature": { "description": "企业性质( 企业) - 1:国有控股企业 2:集体控股企业 3:私人控股企业 4:港澳台商控股企业 5:外商控股企业 6:其它", "type": "integer" }, "bizscope": { "description": "企业经营范围(企业)", "type": "string" }, "cardbackphotourl": { "description": "证件背面图片地址", "type": "string" }, "cardfrontphotourl": { "description": "证件正面图片地址", "type": "string" }, "cardnum": { "description": "证件号码(加密存储)", "type": "string" }, "cardtypeid": { "description": "证件类型ID", "type": "integer" }, "cityid": { "description": "市", "type": "integer" }, "company": { "description": "公司(个人)", "type": "string" }, "contactname": { "description": "联系人", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "customername": { "description": "客户名称(企业名称)", "type": "string" }, "districtid": { "description": "地区", "type": "integer" }, "email": { "description": "邮件(加密存储)", "type": "string" }, "fax": { "description": "传真(加密存储)", "type": "string" }, "halfbodyphotourl": { "description": "半身照地址", "type": "string" }, "hasencrypt": { "description": "数据是否已加密 - 0:未加密 1:已加密", "type": "integer" }, "headurl": { "description": "头像地址", "type": "string" }, "legalcardbackphotourl": { "description": "法人身份证背面照地址", "type": "string" }, "legalcardfrontphotourl": { "description": "法人身份证正面照地址", "type": "string" }, "legalpersonname": { "description": "法人姓名(企业)", "type": "string" }, "mobile": { "description": "手机号码(加密存储)", "type": "string" }, "mobile2": { "description": "手机号码[明文-尚志]", "type": "string" }, "modifierid": { "description": "修改人", "type": "integer" }, "modifiertime": { "description": "修改时间", "type": "string" }, "needinvoice": { "description": "是否需要发票 - 0:不需要 1:需要", "type": "integer" }, "nickname": { "description": "昵称:默认为名称脱敏(张**) 或 手机号脱敏(139****9999)", "type": "string" }, "openmode": { "description": "开户方式 - 1:管理端开户 2:网上开户注册(会员官网) 3:微信开户 4:网页交易端注册 5:安卓手机端注册 6:苹果手机端注册 7:PC交易端注册 8:微信快速开户 9:支付宝快速开户 10:手机号快速开户", "type": "integer" }, "otherurl": { "description": "其它图片地址[使用分号分隔]", "type": "string" }, "postalcode": { "description": "邮政编码", "type": "string" }, "provinceid": { "description": "省", "type": "integer" }, "qq": { "description": "QQ(加密存储", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "sex": { "description": "用户性别 0: 女 1: 男", "type": "integer" }, "signpdfurl": { "description": "签约pdf文件", "type": "string" }, "telphone": { "description": "联系电话(加密存储)", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "userinfotype": { "description": "用户信息类型 - 1:个人 2:企业", "type": "integer" }, "userstatus": { "description": "用户状态 - 1:正常 2:注销", "type": "integer" }, "usertype": { "description": "账户类型 - 1:交易所 2:机构 3:会员子机构 4:经纪人 5:投资者 6:客户", "type": "integer" }, "wechat": { "description": "微信(加密存储)", "type": "string" }, "wskhinfo": { "description": "开户申请信息(JSON)", "type": "string" } } }, "models.WRCategoryTree": { "type": "object", "required": [ "categoryid" ], "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "categorydesc": { "description": "类别描述", "type": "string" }, "categoryid": { "description": "类别ID(SEQ_WRCATEGORY)", "type": "integer" }, "categoryname": { "description": "类别名称", "type": "string" }, "iconurl": { "description": "图标地址", "type": "string" }, "orderindex": { "description": "顺序", "type": "integer" }, "parentcategoryid": { "description": "父类别ID", "type": "integer" }, "subcategory": { "description": "子分类", "type": "array", "items": { "$ref": "#/definitions/models.WRCategoryTree" } } } }, "models.WRSConverTDetail": { "type": "object", "properties": { "convertratio": { "description": "套保系数", "type": "number" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "modifytime": { "description": "修改时间", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" } } }, "models.WRStandardInfo": { "type": "object", "required": [ "wrstandardid" ], "properties": { "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "交割商品名称", "type": "string" }, "factoryitemjson": { "description": "要素项定义Json[{\"DGFactoryItemTypeID\": ,\"ItemTypeMode\": ,\"FactoryItemIDs\": },{.....},]DGFactoryItemTypeID - 要素项类型ID --DGFactoryItem-\u003eDGFactoryItemTypeIDItemTypeMode - 要素项类型模式 --DGFactoryItem-\u003eItemTypeModeFactoryItemIDs - 选择项IDs--DGFactoryItem-\u003eDGFactoryItemID, 逗号分隔", "type": "string" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "minivalue": { "description": "最小变动值", "type": "integer" }, "minivaluedp": { "description": "最小变动值小数位", "type": "integer" }, "realminivalue": { "description": "实际最小变动值", "type": "integer" }, "realminivaluedp": { "description": "实际最小变动值小数位", "type": "integer" }, "unitid": { "description": "单位ID", "type": "integer" }, "unitname": { "description": "单位", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" }, "updatorid": { "description": "更新人", "type": "integer" }, "wrsstatus": { "description": "状态 - 作废 - 0:未激活 1:正常", "type": "integer" }, "wrstandardcode": { "description": "仓单标准代码", "type": "string" }, "wrstandardid": { "description": "仓单标准ID(SEQ_WRSTANDARD)", "type": "integer" }, "wrstandardname": { "description": "仓单标准名称", "type": "string" } } }, "models.Warehouseinfo": { "type": "object", "required": [ "autoid", "warehousecode" ], "properties": { "address": { "description": "详细地址", "type": "string" }, "areauserid": { "description": "所属机构", "type": "integer" }, "autoid": { "description": "自增ID", "type": "integer" }, "cityid": { "description": "市", "type": "integer" }, "contactname": { "description": "联系人", "type": "string" }, "contactnum": { "description": "联系电话", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "districtid": { "description": "区", "type": "integer" }, "hasvideo": { "description": "是否有视频 - 0:无 1:有", "type": "integer" }, "provinceid": { "description": "省", "type": "integer" }, "remark": { "description": "审核备注", "type": "string" }, "videourl": { "description": "视频地址", "type": "string" }, "warehousecode": { "description": "仓库代码", "type": "string" }, "warehousename": { "description": "仓库名称", "type": "string" }, "warehousestatus": { "description": "仓库状态 - 1:正常 2:注销 3:待审核 4:审核拒绝", "type": "integer" }, "warehousetype": { "description": "仓库类型 - 1 厂库 2 自有库 3 合作库", "type": "integer" } } }, "order.QueryHisTradeDetailRsp": { "type": "object", "required": [ "accountid", "buyorsell", "goodsid", "histradedate", "marketid", "memberuserid", "orderid", "tradeamount", "tradedate", "tradeid", "tradeprice", "tradeqty", "tradetime" ], "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "buildtype": { "description": "委托单据类型 1:建仓 2:平仓 3:先平后建", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "charge": { "description": "手续费", "type": "number" }, "closecharge": { "description": "平仓手续费(支付总手续费=(交易所比率+会员比率)*成交金额)", "type": "number" }, "closeexchagechargevalue": { "description": "平仓交易所手续费设置值", "type": "number" }, "closefeealgorithm": { "description": "平仓手续费收取方式 1:比率 2:固定", "type": "integer" }, "closememberchargevalue": { "description": "平仓会员手续费设置值", "type": "number" }, "closepl": { "description": "平仓盈亏", "type": "number" }, "closepl2": { "description": "平仓盈亏[逐笔]", "type": "number" }, "closeqty": { "description": "平仓数量(先建后平操作 需要记录)", "type": "integer" }, "creditamount": { "description": "授信金额", "type": "number" }, "gcaccountid": { "description": "账户ID[合约币种]", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "histradedate": { "description": "历史交易日", "type": "string" }, "intclosepl": { "description": "整型盈亏(用于交易结算试算平衡-收益权)", "type": "integer" }, "isconfirmexercise": { "description": "是否确认行权- 0:否 1:是", "type": "integer" }, "ismain": { "description": "是否主单 - 0:不是 1:是", "type": "integer" }, "ispreexercise": { "description": "是否预申报- 0:否 1:是", "type": "integer" }, "isreckoned": { "description": "是否结算 - 0:未结算 1:已结算", "type": "integer" }, "isvaliddata": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "listingselecttype": { "description": "关联委托单挂牌点选类型 - 1:挂牌 2:摘牌 3:先摘后挂", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketname": { "description": "市场名称", "type": "string" }, "matchaccountid": { "description": "对手账号id", "type": "integer" }, "memberuserid": { "description": "会员id 个人投资者 需要填写", "type": "integer" }, "opencharge": { "description": "建仓手续费(支付总手续费=(交易所比率+会员比率)*成交金额)", "type": "number" }, "openexchagechargevalue": { "description": "建仓交易所手续费设置值", "type": "number" }, "openfeealgorithm": { "description": "建仓手续费收取方式 1:比率 2:固定", "type": "integer" }, "openmemberchargevalue": { "description": "建仓会员手续费设置值", "type": "number" }, "openqty": { "description": "开仓数量(先建后平操作 需要记录)", "type": "integer" }, "optiontype": { "description": "期权类型 - 1:认购(看涨) 2:认沽(看跌)", "type": "integer" }, "orderid": { "description": "委托单号", "type": "string" }, "performanceplanid": { "description": "履约计划ID[期权]", "type": "integer" }, "performancestatus": { "description": "履约状态[期权] - 0:无履约 1:未履约 2:履约中 3:履约完成", "type": "integer" }, "preexerciseprice": { "description": "预申报价格", "type": "number" }, "premium": { "description": "权利金 - [持仓单的权利金]", "type": "number" }, "relatedouttradeid": { "description": "关联外部成交单ID", "type": "integer" }, "status": { "description": "处理状态 - 1:待处理 2:已处理 3:处理失败", "type": "integer" }, "tradeamount": { "description": "成交金额[账户币种,用于所有权]", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "成交单号(101+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "trademode": { "description": "交易模式", "type": "integer" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeproperty": { "description": "交易属性", "type": "integer" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "tradetime": { "description": "成交时间", "type": "string" }, "tradetype": { "description": "成交类别 - 1:正常委托成交 2:定向做市成交(接单) 3:交割协议平仓成交 4:交割减仓成交 5:到期强平成交 6:风控斩仓成交 7:协议平仓(管理端)成交 8:仓单转持仓成交 9: 交割协议转让成交 10:受托竞价成交(接单) 11:协议转让成交 12:系统强行平仓 13:期权违约平仓", "type": "integer" } } }, "order.QueryHisTradeOrderDetailRsp": { "type": "object", "required": [ "accountid", "buildtype", "buyorsell", "goodsid", "histradedate", "marketid", "memberuserid", "operatetype", "orderid", "orderqty", "ordertime", "pricemode", "tradedate", "validtype" ], "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "buildtype": { "description": "委托单据类型 - 1:建仓 2:平仓 3:先平后建", "type": "integer" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "cancelorderid": { "description": "撤单单号(撤单时填写)", "type": "string" }, "cancelqty": { "description": "撤单数量", "type": "integer" }, "clientordertime": { "description": "客户端委托时间", "type": "string" }, "clientticket": { "description": "客户端流水号", "type": "string" }, "clienttype": { "description": "客户端类型 - 0:保留为未填终端类型 1:PC管理端 2:PC交易端 3:手机客户端_安卓 4:网页客户端 5:微信客户端 6:手机客户端_苹果 7:网上开户客户端 8:无效终端编号 9:报价终端(中江)", "type": "integer" }, "closeexchagechargevalue": { "description": "平仓交易所手续费设置值", "type": "number" }, "closefeealgorithm": { "description": "平仓手续费收取方式 1:比率 2:固定", "type": "integer" }, "closefreezecharge": { "description": "平仓冻结手续费(先建后平操作,需要记录)", "type": "number" }, "closememberchargevalue": { "description": "平仓会员手续费设置值", "type": "number" }, "closeqty": { "description": "平仓数量(先建后平操作 需要记录)", "type": "integer" }, "closetradeqty": { "description": "平仓成交数量(先建后平操作,需要记录)", "type": "integer" }, "closeunfreezecharge": { "description": "平仓解冻手续费(先建后平操作,需要记录)", "type": "number" }, "delistingtype": { "description": "摘牌类型 - 1:价格最优 2:点选成交", "type": "integer" }, "freezecharge": { "description": "冻结手续费", "type": "number" }, "freezemargin": { "description": "冻结保证金(冻结交易金额)", "type": "number" }, "gcaccountid": { "description": "账户ID[合约币种]", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "histradedate": { "description": "历史交易日", "type": "string" }, "isconfirmexercise": { "description": "是否确认行权- 0:否 1:是", "type": "integer" }, "ispreexercise": { "description": "是否预申报- 0:否 1:是", "type": "integer" }, "isvaliddata": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "listingselecttype": { "description": "挂牌点选类型 - 1:挂牌 2:摘牌 3:先摘后挂", "type": "integer" }, "marginalgorithm": { "description": "保证金收取方式 1:比率 2:固定", "type": "integer" }, "marginvalue": { "description": "即市保证金设置值", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketmaxsub": { "description": "市价最大偏移范围", "type": "number" }, "marketname": { "description": "市场名称", "type": "string" }, "memberuserid": { "description": "所属会员UserID", "type": "integer" }, "openexchagechargevalue": { "description": "建仓交易所手续费设置值", "type": "number" }, "openfeealgorithm": { "description": "建仓手续费收取方式 1:比率 2:固定", "type": "integer" }, "openfreezecharge": { "description": "开仓冻结手续费(先建后平操作,需要记录)", "type": "number" }, "openmemberchargevalue": { "description": "建仓会员手续费设置值", "type": "number" }, "openqty": { "description": "开仓数量(先建后平操作,需要记录)", "type": "integer" }, "opentradeqty": { "description": "开仓成交数量(先建后平操作,需要记录)", "type": "integer" }, "openunfreezecharge": { "description": "开仓解冻手续费(先建后平操作,需要记录)", "type": "number" }, "operatetype": { "description": "操作类型 - 1:正常下单 2:斩仓 3:转单 4:结算撤单 5:系统卖出(适用于先平后建的卖出) 6:行情源报价 7:(结算)到期强平 8:(结算)协议转让 9:系统对冲单 10:(结算)到期无效 11:交割协议转让 12:交割协议平仓 13:交割成交(所有权) 14:管理端强行平仓 15:管理端协议转让", "type": "integer" }, "operatorid": { "description": "登录账号(LoginID)", "type": "integer" }, "optiontype": { "description": "期权类型 - 1:认购(看涨) 2:认沽(看跌)", "type": "integer" }, "orderid": { "description": "委托单号(100+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "orderprice": { "description": "委托价格", "type": "number" }, "orderqty": { "description": "委托数量", "type": "integer" }, "ordersrc": { "description": "委托来源 - 1:客户端 2:管理端 3:风控服务 4:交割服务 5:交易服务 6:交易日结 7:商品强平 8:管理端商品退市强平 9:交易接口 10:交割服务商被动(受托竞价) 11:预埋触发", "type": "integer" }, "orderstatus": { "description": "委托状态 - 1: 委托请求 2:待冻结 3:委托成功 4: 委托失败 5:配对成功 6: 已撤销 7:部分成交 8:已成交 9:部成部撤 10:成交失败 11:已拒绝 12:经过摘牌(先摘后挂专用-先摘后挂已摘过) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用)", "type": "integer" }, "ordertime": { "description": "委托时间", "type": "string" }, "preexerciseprice": { "description": "预申报价格", "type": "number" }, "premium": { "description": "权利金", "type": "number" }, "preorderid": { "description": "关联预埋单号(止盈止损单时填写)", "type": "string" }, "pricemode": { "description": "取价方式 - 1:市价 2: 限价", "type": "integer" }, "quoteid": { "description": "报价单ID", "type": "integer" }, "relatedid": { "description": "关联单号(交割单)", "type": "string" }, "retcode": { "description": "错误代码", "type": "integer" }, "sessionid": { "description": "会话ID", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "trademode": { "description": "交易模式", "type": "integer" }, "tradeproperty": { "description": "交易属性", "type": "integer" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "unfreezecharge": { "description": "解冻手续费", "type": "number" }, "unfreezemargin": { "description": "解冻保证金", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "uuid": { "description": "发起端唯一id", "type": "string" }, "validtime": { "description": "有效期限", "type": "string" }, "validtype": { "description": "有效类型 - 1当日有效 2本周有效 3指定日期有效 4一直有效 5指定时间有效", "type": "integer" }, "volumetype": { "description": "当时间有效类型为 “立即执行否则取消 IOC” 时,需要此项 - 0:任意量 1:最小量(暂时不支持) 2:全部量", "type": "integer" } } }, "order.QueryTradeDetailRsp": { "type": "object", "required": [ "accountid", "buyorsell", "goodsid", "marketid", "memberuserid", "orderid", "tradeamount", "tradedate", "tradeid", "tradeprice", "tradeqty", "tradetime" ], "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "buildtype": { "description": "委托单据类型 1:建仓 2:平仓 3:先平后建", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "charge": { "description": "手续费", "type": "number" }, "closecharge": { "description": "平仓手续费(支付总手续费=(交易所比率+会员比率)*成交金额)", "type": "number" }, "closeexchagechargevalue": { "description": "平仓交易所手续费设置值", "type": "number" }, "closefeealgorithm": { "description": "平仓手续费收取方式 1:比率 2:固定", "type": "integer" }, "closememberchargevalue": { "description": "平仓会员手续费设置值", "type": "number" }, "closepl": { "description": "平仓盈亏", "type": "number" }, "closepl2": { "description": "平仓盈亏[逐笔]", "type": "number" }, "closeqty": { "description": "平仓数量(先建后平操作 需要记录)", "type": "integer" }, "creditamount": { "description": "授信金额", "type": "number" }, "gcaccountid": { "description": "账户ID[合约币种]", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "intclosepl": { "description": "整型盈亏(用于交易结算试算平衡-收益权)", "type": "integer" }, "isconfirmexercise": { "description": "是否确认行权- 0:否 1:是", "type": "integer" }, "ismain": { "description": "是否主单 - 0:不是 1:是", "type": "integer" }, "ispreexercise": { "description": "是否预申报- 0:否 1:是", "type": "integer" }, "isreckoned": { "description": "是否结算 - 0:未结算 1:已结算", "type": "integer" }, "listingselecttype": { "description": "关联委托单挂牌点选类型 - 1:挂牌 2:摘牌 3:先摘后挂", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketname": { "description": "市场名称", "type": "string" }, "matchaccountid": { "description": "对手账号id", "type": "integer" }, "memberuserid": { "description": "会员id 个人投资者 需要填写", "type": "integer" }, "opencharge": { "description": "建仓手续费(支付总手续费=(交易所比率+会员比率)*成交金额)", "type": "number" }, "openexchagechargevalue": { "description": "建仓交易所手续费设置值", "type": "number" }, "openfeealgorithm": { "description": "建仓手续费收取方式 1:比率 2:固定", "type": "integer" }, "openmemberchargevalue": { "description": "建仓会员手续费设置值", "type": "number" }, "openqty": { "description": "开仓数量(先建后平操作 需要记录)", "type": "integer" }, "optiontype": { "description": "期权类型 - 1:认购(看涨) 2:认沽(看跌)", "type": "integer" }, "orderid": { "description": "委托单号", "type": "string" }, "performanceplanid": { "description": "履约计划ID[期权]", "type": "integer" }, "performancestatus": { "description": "履约状态[期权] - 0:无履约 1:未履约 2:履约中 3:履约完成", "type": "integer" }, "preexerciseprice": { "description": "预申报价格", "type": "number" }, "premium": { "description": "权利金 - [持仓单的权利金]", "type": "number" }, "relatedouttradeid": { "description": "关联外部成交单ID", "type": "integer" }, "status": { "description": "处理状态 - 1:待处理 2:已处理 3:处理失败", "type": "integer" }, "tradeamount": { "description": "成交金额[账户币种,用于所有权]", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "成交单号(101+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "trademode": { "description": "交易模式", "type": "integer" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeproperty": { "description": "交易属性", "type": "integer" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "tradetime": { "description": "成交时间", "type": "string" }, "tradetype": { "description": "成交类别 - 1:正常委托成交 2:定向做市成交(接单) 3:交割协议平仓成交 4:交割减仓成交 5:到期强平成交 6:风控斩仓成交 7:协议平仓(管理端)成交 8:仓单转持仓成交 9: 交割协议转让成交 10:受托竞价成交(接单) 11:协议转让成交 12:系统强行平仓 13:期权违约平仓", "type": "integer" } } }, "order.QueryTradeOrderDetailRsp": { "type": "object", "required": [ "accountid", "buildtype", "buyorsell", "goodsid", "marketid", "operatetype", "orderqty", "ordertime", "pricemode", "tradedate", "validtype" ], "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "buildtype": { "description": "委托单据类型 - 1:建仓 2:平仓 3:先平后建", "type": "integer" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "cancelorderid": { "description": "撤单单号(撤单时填写)", "type": "string" }, "cancelqty": { "description": "撤单数量", "type": "integer" }, "clienttype": { "description": "客户端类型 - 0:保留为未填终端类型 1:PC管理端 2:PC交易端 3:手机客户端_安卓 4:网页客户端 5:微信客户端 6:手机客户端_苹果 7:网上开户客户端 8:无效终端编号 9:报价终端(中江)", "type": "integer" }, "closefreezecharge": { "description": "平仓冻结手续费(先建后平操作,需要记录)", "type": "number" }, "closeqty": { "description": "平仓数量(先建后平操作 需要记录)", "type": "integer" }, "closetradeqty": { "description": "平仓成交数量(先建后平操作,需要记录)", "type": "integer" }, "closeunfreezecharge": { "description": "平仓解冻手续费(先建后平操作,需要记录)", "type": "number" }, "delistingtype": { "description": "摘牌类型 - 1:价格最优 2:点选成交", "type": "integer" }, "enableqty": { "description": "可用数量 = 委托数量 - 成交数量 - 撤单数量", "type": "integer" }, "freezecharge": { "description": "冻结手续费", "type": "number" }, "freezemargin": { "description": "冻结保证金(冻结交易金额)", "type": "number" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "listingselecttype": { "description": "挂牌点选类型 - 1:挂牌 2:摘牌 3:先摘后挂", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketname": { "description": "市场名称", "type": "string" }, "openfreezecharge": { "description": "开仓冻结手续费(先建后平操作,需要记录)", "type": "number" }, "openqty": { "description": "开仓数量(先建后平操作,需要记录)", "type": "integer" }, "opentradeqty": { "description": "开仓成交数量(先建后平操作,需要记录)", "type": "integer" }, "openunfreezecharge": { "description": "开仓解冻手续费(先建后平操作,需要记录)", "type": "number" }, "operatetype": { "description": "操作类型 - 1:正常下单 2:斩仓 3:转单 4:结算撤单 5:系统卖出(适用于先平后建的卖出) 6:行情源报价 7:(结算)到期强平 8:(结算)协议转让 9:系统对冲单 10:(结算)到期无效 11:交割协议转让 12:交割协议平仓 13:交割成交(所有权) 14:管理端强行平仓 15:管理端协议转让", "type": "integer" }, "operatorid": { "description": "登录账号(LoginID)", "type": "integer" }, "orderid": { "description": "委托单号(100+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "orderprice": { "description": "委托价格", "type": "number" }, "orderqty": { "description": "委托数量", "type": "integer" }, "ordersrc": { "description": "委托来源 - 1:客户端 2:管理端 3:风控服务 4:交割服务 5:交易服务 6:交易日结 7:商品强平 8:管理端商品退市强平 9:交易接口 10:交割服务商被动(受托竞价) 11:预埋触发", "type": "integer" }, "orderstatus": { "description": "委托状态 - 1: 委托请求 2:待冻结 3:委托成功 4: 委托失败 5:配对成功 6: 已撤销 7:部分成交 8:已成交 9:部成部撤 10:成交失败 11:已拒绝 12:经过摘牌(先摘后挂专用-先摘后挂已摘过) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用)", "type": "integer" }, "ordertime": { "description": "委托时间", "type": "string" }, "preorderid": { "description": "关联预埋单号(止盈止损单时填写)", "type": "string" }, "pricemode": { "description": "取价方式 - 1:市价 2: 限价", "type": "integer" }, "relatedid": { "description": "关联单号(交割单)", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "trademode": { "description": "交易模式", "type": "integer" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "unfreezecharge": { "description": "解冻手续费", "type": "number" }, "unfreezemargin": { "description": "解冻保证金", "type": "number" }, "validtime": { "description": "有效期限", "type": "string" }, "validtype": { "description": "有效类型 - 1当日有效 2本周有效 3指定日期有效 4一直有效 5指定时间有效", "type": "integer" }, "volumetype": { "description": "当时间有效类型为 “立即执行否则取消 IOC” 时,需要此项 - 0:任意量 1:最小量(暂时不支持) 2:全部量", "type": "integer" } } }, "order.QueryTradePositionRsp": { "type": "object", "required": [ "goodsid" ], "properties": { "accountid": { "description": "资金账户", "type": "integer" }, "agreeunit": { "description": "合约单位", "type": "number" }, "averageprice": { "description": "持仓均价", "type": "number" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "closetotalqty": { "description": "平仓总数量", "type": "integer" }, "curholderamount": { "description": "当前持仓总金额[商品币种]", "type": "number" }, "curpositionqty": { "description": "当前持仓总数量", "type": "integer" }, "currencyid": { "description": "报价货币ID", "type": "integer" }, "curtdposition": { "description": "期末今日头寸", "type": "integer" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "enableqty": { "description": "可用量", "type": "integer" }, "fretdposition": { "description": "冻结今日头寸", "type": "integer" }, "frozenqty": { "description": "持仓冻结数量", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品Id", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunit": { "description": "报价单位", "type": "string" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "holderamount": { "description": "期初持仓总金额[商品币种]", "type": "number" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "openreqqty": { "description": "开仓申请数量(用于比较最大持仓数量)", "type": "integer" }, "opentotalqty": { "description": "开仓总数量", "type": "integer" }, "otherfrozenqty": { "description": "持仓其他冻结数量(交割冻结)", "type": "integer" }, "positionqty": { "description": "期初持仓数量", "type": "integer" }, "tnqty": { "description": "T+N冻结总量", "type": "integer" }, "tnusedqty": { "description": "T+N使用量(可以使用T+N的冻结数量)", "type": "integer" }, "trademode": { "description": "交易模式", "type": "integer" }, "usedmargin": { "description": "占用保证金[商品币种]", "type": "number" } } }, "quote.HistoryData": { "type": "object", "properties": { "c": { "description": "收盘价", "type": "number" }, "f": { "description": "是否补充数据", "type": "boolean" }, "h": { "description": "最高价", "type": "number" }, "hv": { "description": "持仓量", "type": "integer" }, "l": { "description": "最低价", "type": "number" }, "o": { "description": "开盘价", "type": "number" }, "s": { "description": "结算价,日线周期(包括)以上才有", "type": "number" }, "ts": { "description": "时间", "type": "string" }, "tt": { "description": "总金额", "type": "number" }, "tv": { "description": "总量", "type": "integer" } } }, "quote.QueryTSDataRsp": { "type": "object", "properties": { "decimalPlace": { "description": "小数位", "type": "integer" }, "endTime": { "description": "结束时间", "type": "string" }, "goodsCode": { "description": "商品代码", "type": "string" }, "historyDatas": { "description": "历史数据", "type": "array", "items": { "$ref": "#/definitions/quote.HistoryData" } }, "outGoodsCode": { "description": "外部商品代码", "type": "string" }, "preSettle": { "description": "昨结", "type": "number" }, "startTime": { "description": "开始时间", "type": "string" }, "tradeDate": { "description": "交易日", "type": "string" } } }, "szdz.QueryConvertLogRsp": { "type": "object", "required": [ "logid" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "clientticket": { "description": "客户端流水号", "type": "string" }, "converttype": { "description": "转换类型 - 1:金点赞转交易 2:金点拍转交易 3:交易转金点赞 4:交易转金点拍", "type": "integer" }, "createtime": { "description": "记账时间", "type": "string" }, "daymaxvalue": { "description": "配置当日最大转入限制", "type": "number" }, "daymaxvalue2": { "description": "配置当日最大转入限制(转入)", "type": "number" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsname": { "description": "商品名称", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "innergoodsid": { "description": "内部商品ID", "type": "integer" }, "inratio": { "description": "配置转入比值", "type": "integer" }, "invalue": { "description": "目标值", "type": "number" }, "logid": { "description": "LogID(901+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "integer" }, "mobile": { "description": "手机号码(加密存储)", "type": "string" }, "outergoodscode": { "description": "外部商品代码[JD\\PD]", "type": "string" }, "outratio": { "description": "配置转出比值", "type": "integer" }, "outvalue": { "description": "源值", "type": "number" }, "pddecimalplace": { "description": "PD小数位", "type": "integer" }, "qty": { "description": "数量", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "sessionid": { "description": "会话ID", "type": "integer" }, "timemaxvalue": { "description": "配置单次最大转入限制", "type": "number" }, "timemaxvalue2": { "description": "配置单次最大转入限制(转入)", "type": "number" }, "timeminvalue": { "description": "配置单次最小数量限制", "type": "number" }, "timeminvalue2": { "description": "配置单次最小数量限制(转入)", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "szdz.QueryGoodsPickupRsp": { "type": "object", "required": [ "takeorderid" ], "properties": { "accountid": { "description": "账户ID", "type": "integer" }, "address": { "description": "提货人详细地址", "type": "string" }, "auditer": { "description": "审核人", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "cardnum": { "description": "提货人证件号码", "type": "string" }, "cardtypeid": { "description": "提货人证件类型", "type": "integer" }, "checkremark": { "description": "审核备注", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "phonenum": { "description": "提货人联系方式", "type": "string" }, "qty": { "description": "提货数量", "type": "number" }, "recivername": { "description": "提货人姓名", "type": "string" }, "reqtime": { "description": "更新时间", "type": "string" }, "takemode": { "description": "提货方式 - 2:自提 3:配送", "type": "integer" }, "takeorderid": { "description": "提货单号(905+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "takeorderstatus": { "description": "提货状态 - 1:待发货 2:已发货 3:已收货", "type": "integer" }, "takeremark": { "description": "提货备注", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "szdz.QueryRecieptOrderRsp": { "type": "object", "required": [ "ordertime" ], "properties": { "accountName": { "description": "所属账号名称(已脱敏)", "type": "string" }, "accountid": { "description": "资金账号", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "enableqty": { "description": "可摘数量", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "orderid": { "description": "委托单号", "type": "string" }, "orderprice": { "description": "委托价格", "type": "number" }, "ordertime": { "description": "委托时间", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" } } }, "szdz.QuerySZDZTradePositionRsp": { "type": "object", "properties": { "accountid": { "description": "账号Id", "type": "integer" }, "agreeunit": { "description": "合约单位", "type": "number" }, "averageprice": { "description": "持仓均价", "type": "number" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "closetotalqty": { "description": "平仓总数量", "type": "integer" }, "curholderamount": { "description": "当前持仓总金额", "type": "number" }, "curpositionqty": { "description": "当前持仓总数量", "type": "integer" }, "currencyid": { "description": "报价货币ID", "type": "integer" }, "curtdposition": { "description": "期末今日头寸", "type": "integer" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "enableqty": { "description": "可用量", "type": "integer" }, "fretdposition": { "description": "冻结今日头寸", "type": "integer" }, "frozenqty": { "description": "持仓冻结数量", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品Id", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunit": { "description": "报价单位", "type": "string" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "holderamount": { "description": "期初持仓总金额", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "openreqqty": { "description": "开仓申请数量", "type": "integer" }, "opentotalqty": { "description": "开仓总数量", "type": "integer" }, "otherfrozenqty": { "description": "持仓其他冻结数量(交割冻结)", "type": "integer" }, "positionqty": { "description": "期初持仓数量", "type": "integer" }, "szdz3freezqty": { "description": "尚志大宗转换冻结总数量", "type": "integer" }, "tnqty": { "description": "T+N冻结总量", "type": "integer" }, "tnusedqty": { "description": "T+N使用量", "type": "integer" }, "trademode": { "description": "交易模式", "type": "integer" }, "usedmargin": { "description": "占用保证金", "type": "number" } } }, "taaccount.QueryAmountLogRsp": { "type": "object", "required": [ "accountid", "amount", "amountadjusttype", "autoid", "balance", "createtime", "currentbalance", "operatetype" ], "properties": { "OPERATETYPENAME": { "description": "资金操作类型名称", "type": "string" }, "accountid": { "description": "资金账户ID", "type": "integer" }, "agoodscode": { "description": "竞拍商品代码", "type": "string" }, "agoodsname": { "description": "竞拍商品名称", "type": "string" }, "amount": { "description": "资金金额", "type": "number" }, "amountadjusttype": { "description": "资金调整类型(默认值为0) - 0:系统 1:单边账调整 2:人工调整", "type": "integer" }, "autoid": { "description": "流水ID(220+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "balance": { "description": "期初余额", "type": "number" }, "businesscode": { "description": "业务编号", "type": "integer" }, "createtime": { "description": "发生时间", "type": "string" }, "currencyid": { "description": "币种ID", "type": "integer" }, "currentbalance": { "description": "期末余额(变动后金额)", "type": "number" }, "dgoodscode": { "description": "交割商品代码", "type": "string" }, "dgoodsname": { "description": "交割商品名称", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketname": { "description": "市场名称", "type": "string" }, "moneyticket": { "description": "资金流水号:银行端流水号", "type": "integer" }, "operatetype": { "description": "资金操作类型 (AccountFundCmdOp)- 101:入金 102:入金手续费 103:出金 104:出金冻结 105:出金解冻 106:出金手续费 107:出金手续费冻结 108:出金手续费解冻 201:交易冻结 202:交易解冻 203:交易占用 204:交易解占用 205:交易手续费冻结 206:交易手续费解冻 207:交易手续费 208:交易货款 209:交易盈亏 301:交割冻结 302:交割解冻 303:交割手续费 304:交割手续费冻结 305:交割手续费解冻 306:交割货款 307:交割税款 401:结算盈亏 402:结算递延费 403:分润收入 404:延期分润 501:授信增加 502:授信减少 503:转积分 504:转入 505:转出 506:转出冻结 507:转出解冻 601:履约金额冻结 602:履约最大冻结 603:履约金额解冻 604:履约扣款 605:履约收款 606:履约违约手续费 607:履约违约收入 608:履约最大扣款 701:供应链金融冻结 702:供应链金融解冻 703:供应链金融最大冻结 704:供应链金融利息 705:供应链金融货款 706:供应链金融押金 707:供应链金融最大扣款 801:仓单贸易冻结 802:仓单贸易解冻 803:仓单贸易首付款 804:仓单贸易最大扣款 901:商城扣款冻结 902:商城扣款解冻 903:商城扣款 904:商城收款 1001:期权冻结 1002:期权解冻 1003:期权权力金 1004:期权手续费冻结 1005:期权手续费解冻 1006:期权手续费 1007:期权盈亏 1101:营销扣款 1102:营销收款", "type": "integer" }, "relationorderid": { "description": "关联单号", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "trademode": { "description": "交易模式", "type": "integer" } } }, "taaccount.QueryHisAmountLogRsp": { "type": "object", "required": [ "accountid", "amount", "amountadjusttype", "autoid", "balance", "createtime", "currentbalance", "histradedate", "operatetype" ], "properties": { "OPERATETYPENAME": { "description": "资金操作类型名称", "type": "string" }, "accountid": { "description": "资金账户ID", "type": "integer" }, "agoodscode": { "description": "竞拍商品代码", "type": "string" }, "agoodsname": { "description": "竞拍商品名称", "type": "string" }, "amount": { "description": "资金金额", "type": "number" }, "amountadjusttype": { "description": "资金调整类型(默认值为0) - 0:系统 1:单边账调整 2:人工调整", "type": "integer" }, "autoid": { "description": "流水ID(220+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "balance": { "description": "期初余额", "type": "number" }, "businesscode": { "description": "业务编号", "type": "integer" }, "createtime": { "description": "发生时间", "type": "string" }, "currencyid": { "description": "币种ID", "type": "integer" }, "currentbalance": { "description": "期末余额(变动后金额)", "type": "number" }, "dgoodscode": { "description": "交割商品代码", "type": "string" }, "dgoodsname": { "description": "交割商品名称", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "histradedate": { "description": "历史交易日", "type": "string" }, "isvaliddata": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketname": { "description": "市场名称", "type": "string" }, "moneyticket": { "description": "资金流水号:银行端流水号", "type": "integer" }, "operatetype": { "description": "资金操作类型 (AccountFundCmdOp)- 101:入金 102:入金手续费 103:出金 104:出金冻结 105:出金解冻 106:出金手续费 107:出金手续费冻结 108:出金手续费解冻 201:交易冻结 202:交易解冻 203:交易占用 204:交易解占用 205:交易手续费冻结 206:交易手续费解冻 207:交易手续费 208:交易货款 209:交易盈亏 301:交割冻结 302:交割解冻 303:交割手续费 304:交割手续费冻结 305:交割手续费解冻 306:交割货款 307:交割税款 401:结算盈亏 402:结算递延费 403:分润收入 404:延期分润 501:授信增加 502:授信减少 503:转积分 504:转入 505:转出 506:转出冻结 507:转出解冻 601:履约金额冻结 602:履约最大冻结 603:履约金额解冻 604:履约扣款 605:履约收款 606:履约违约手续费 607:履约违约收入 608:履约最大扣款 701:供应链金融冻结 702:供应链金融解冻 703:供应链金融最大冻结 704:供应链金融利息 705:供应链金融货款 706:供应链金融押金 707:供应链金融最大扣款 801:仓单贸易冻结 802:仓单贸易解冻 803:仓单贸易首付款 804:仓单贸易最大扣款 901:商城扣款冻结 902:商城扣款解冻 903:商城扣款 904:商城收款 1001:期权冻结 1002:期权解冻 1003:期权权力金 1004:期权手续费冻结 1005:期权手续费解冻 1006:期权手续费 1007:期权盈亏 1101:营销扣款 1102:营销收款", "type": "integer" }, "relationorderid": { "description": "关联单号", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "trademode": { "description": "交易模式", "type": "integer" } } }, "trade.QueryRecieptOrderRsp": { "type": "object", "required": [ "ordertime" ], "properties": { "accountName": { "description": "所属账号名称(已脱敏)", "type": "string" }, "accountid": { "description": "资金账号", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "enableqty": { "description": "可摘数量", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "orderid": { "description": "委托单号", "type": "string" }, "orderprice": { "description": "委托价格", "type": "number" }, "ordertime": { "description": "委托时间", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" } } } }, "securityDefinitions": { "ApiKeyAuth": { "type": "apiKey", "name": "Authorization", "in": "header" } } }` type swaggerInfo struct { Version string Host string BasePath string Schemes []string Title string Description string } // SwaggerInfo holds exported Swagger Info so clients can modify it var SwaggerInfo = swaggerInfo{ Version: "1.0", Host: "", BasePath: "/api", Schemes: []string{}, Title: "MTP2.0 查询服务 API", Description: "新的查询服务,替代原通用查询服务。游客Token:c886a057f3d820d4dbc41473686c7c2d", } type s struct{} func (s *s) ReadDoc() string { sInfo := SwaggerInfo sInfo.Description = strings.Replace(sInfo.Description, "\n", "\\n", -1) t, err := template.New("swagger_info").Funcs(template.FuncMap{ "marshal": func(v interface{}) string { a, _ := json.Marshal(v) return string(a) }, }).Parse(doc) if err != nil { return doc } var tpl bytes.Buffer if err := t.Execute(&tpl, sInfo); err != nil { return doc } return tpl.String() } func init() { swag.Register(swag.Name, &s{}) }