{ "swagger": "2.0", "info": { "description": "新的查询服务,替代原通用查询服务。游客Token:c886a057f3d820d4dbc41473686c7c2d", "title": "MTP2.0 查询服务 API", "termsOfService": "http://www.muchinfo.cn", "contact": {}, "version": "1.0" }, "paths": { "/Asign/BankCard4": { "post": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "爱签" ], "summary": "银行卡四要素认证", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/asign.BankCard4Req" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/asign.BankCard4Rsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Asign/CaptcaResend": { "post": { "security": [ { "ApiKeyAuth": [] } ], "description": "在实名认证的过程中,因用户手机原因未收到短信验证码或原验证码超过15分钟有效期而过期时,可以调用此接口重新发送短信验证码。若1分钟内多次调用此接口,则仅会发送一次短信验证码,15分钟内重新发送短信验证码不会变化。", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "爱签" ], "summary": "重新发送认证验证码", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/asign.CaptchaResendReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Asign/CaptchaVerify": { "post": { "security": [ { "ApiKeyAuth": [] } ], "description": "验证码认证成功后会调用爱签添加用户接口,同时调用交易系统JAVA实名认证接口", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "爱签" ], "summary": "认证验证码校验", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/asign.CaptchaVerifyReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Asign/CreateContract": { "post": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "爱签" ], "summary": "创建合同", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/asign.CreateContractReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/asign.CreateContractRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Asign/CreateSeal": { "post": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "爱签" ], "summary": "创建印章", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/asign.CreateSealReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Asign/QueryUsereSignRecords": { "get": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "爱签" ], "summary": "查询用户电子签记录表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userId", "in": "query", "required": true }, { "type": "integer", "description": "所属会员ID", "name": "memberUserId", "in": "query", "required": true }, { "type": "integer", "description": "记录ID", "name": "recordId", "in": "query" }, { "type": "integer", "description": "模板配置ID", "name": "templateConfigId", "in": "query" }, { "type": "integer", "description": "模板类型 - 1:实名认证 2:开户协议 3:日结算单 4:交易协议", "name": "templatetype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Useresignrecord" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Asign/SyncContractStatus": { "post": { "description": "此接口会调用爱签合同状态查询接口,并同步到交易系统用户电子签记录表记录中", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "爱签" ], "summary": "同步合同状态", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/asign.SyncContractStatusReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/asign.SyncContractStatusRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Asign/TestAddEnterpriseUser": { "post": { "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "爱签" ], "summary": "添加企业用户(V2)(测试)", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/asign.APIAddEnterpriseUserReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/asign.APIAddUserRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Asign/TestBankCard4": { "post": { "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "爱签" ], "summary": "银行卡四要素认证(测试)", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/asign.APICompanyBankCard4Req" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/asign.APIBankCard4Rsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Asign/TestCaptcaResend": { "post": { "description": "在实名认证的过程中,因用户手机原因未收到短信验证码或原验证码超过15分钟有效期而过期时,可以调用此接口重新发送短信验证码。若1分钟内多次调用此接口,则仅会发送一次短信验证码,15分钟内重新发送短信验证码不会变化。", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "爱签" ], "summary": "重新发送认证验证码(测试)", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/asign.APICaptchaResendReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Asign/TestCaptchaVerify": { "post": { "description": "验证码认证成功后会调用爱签添加用户接口,同时调用交易系统JAVA实名认证接口", "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "爱签" ], "summary": "认证验证码校验(测试)", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/asign.APICaptchaVerifyReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/asign.APICaptchaVerifyRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Asign/TestGetUser": { "post": { "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "爱签" ], "summary": "获取用户信息(测试)", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/asign.APIGetUserReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/asign.APIGetUserReq" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Bank/QueryBankBranChnumInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "银行" ], "summary": "查询银行支行联行号信息表", "parameters": [ { "type": "string", "description": "支行名称(模糊查询)", "name": "branchname", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Bankbranchnuminfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Bank/QueryBankCusBankExtendConfigs": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "银行" ], "summary": "查询托管银行扩展配置信息", "parameters": [ { "type": "string", "description": "托管银行编号", "name": "cusbankid", "in": "query", "required": true }, { "type": "integer", "description": "扩展业务类型 - 1:签约 2:入金 3:出金 4:签约信息修改", "name": "extendbiztype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Bankcusbankextendconfig" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/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/DeleteNewFuncmenu": { "delete": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "删除菜单表数据", "parameters": [ { "description": "菜单表数据,只需要resourcecode字段即可", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/models.NewFuncmenulist" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/FindNewFuncmenu": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "获取菜单表数据", "parameters": [ { "type": "string", "description": "资源代码", "name": "resourcecode", "in": "query" }, { "type": "string", "description": "上级资源代码", "name": "parentcode", "in": "query" }, { "type": "string", "description": "资源名(Title), 模糊查询", "name": "resourcename", "in": "query" }, { "type": "string", "description": "菜单类型(格式:1,2,3) - 1:管理端 2:PC(C#) 3:移动(云平台) 4:终端(交易所) 5:PC(云平台)", "name": "menutype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.NewFuncmenulist" } } }, "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/GetClientMenus": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "获取交易端菜单", "parameters": [ { "type": "integer", "description": "登录账号", "name": "loginID", "in": "query", "required": true }, { "type": "integer", "description": "终端类型,0:PCWEB 1:Mobile,不传默认返回PC端数据", "name": "clientType", "in": "query" }, { "type": "string", "description": "分支名称,ermcp-风管云平台;pingan-平安期货;trader-交易所;不传默认返回风管云平台", "name": "name", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/common.ClientMenu" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/GetClientNewFuncmenu": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "获取终端菜单", "parameters": [ { "type": "integer", "description": "登录账号", "name": "loginid", "in": "query", "required": true }, { "type": "integer", "description": "菜单类型 - 1:管理端 2:PC(C#) 3:移动(云平台) 4:终端(交易所) 5:PC(云平台)", "name": "menutype", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.NewFuncmenulist" } } }, "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/GetJ10News": { "get": { "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "获取金10资讯内容", "parameters": [ { "type": "integer", "description": "获取最新limit条内容", "name": "limit", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GetJ10NewsRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/GetPCWebMenus": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "获取PCWeb交易端菜单", "parameters": [ { "type": "integer", "description": "登录账号", "name": "loginID", "in": "query", "required": true }, { "type": "string", "description": "分支名称,ermcp:风管云平台,不传默认返回ermcp", "name": "name", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/common.PCWebMenu" } } }, "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/InsertNewFuncmenu": { "post": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "插入菜单表数据", "parameters": [ { "description": "菜单表数据", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/models.NewFuncmenulist" } } ], "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": "用户id", "name": "userId", "in": "query" }, { "type": "integer", "description": "类型 - 1:App首页轮播 2:我的 3:首页(PC) 4:首页推广(移动-新会)", "name": "imageType", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/common.QueryImageConfigsRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/QueryMemberGoodsLimitConfig": { "get": { "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "查询会员商品限制配置表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "会员角色 - 6:自营会员 7:经纪会员", "name": "roletype", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Membergoodslimitconfig" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/QueryNewContents": { "get": { "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "获取资讯内容", "parameters": [ { "type": "string", "description": "资讯ID列表,格式 1,2,3", "name": "ids", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.QueryNewContentsRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Common/QueryNewTitles": { "get": { "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "取资讯标题列表", "parameters": [ { "type": "integer", "description": "所属栏目", "name": "columnid", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.QueryNewTitlesRsp" } }, "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": "分页标志 0-page从0开始 1-page从1开始", "name": "pageflag", "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" }, { "type": "integer", "description": "自增ID,传入后会返回这个ID后面的记录", "name": "lastID", "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/QueryRates": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "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": "oricurrencyid", "in": "query" }, { "type": "integer", "description": "目标币种ID", "name": "descurrencyid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Exchangerateconfig" } } }, "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" } } } } }, "/Common/UpdateNewFuncmenu": { "put": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "通用服务" ], "summary": "更新菜单表数据", "parameters": [ { "description": "菜单表数据", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/models.NewFuncmenulist" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "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": "用户id(风管云平台版本传值, 只显示用户下设置了套保关联的品种)", "name": "userid", "in": "query" }, { "type": "string", "description": "最后修改时间 - 闭区间,格式:yyyy-MM-dd HH:mm:ss", "name": "lastUpdateTime", "in": "query" }, { "type": "integer", "description": "登录账号,传入后会进行有权限的市场过滤结果", "name": "loginid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.ErmcpGoods" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/GetErmcpGoodsSortByPosition": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询企业风管期货主力、次主力商品信息", "parameters": [ { "type": "string", "description": "主力: 1; 次主力: 2; 主力+次主力:1,2", "name": "sortIndex", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Goodssortbypreposition" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/GetErmcpOutAccountStatus": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "获取目标登录账号当前对冲账号在线状态", "parameters": [ { "type": "integer", "description": "登录账号", "name": "loginID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Hedgemarketopenlog" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/GetErmcpRoleFuncMenuLists": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "获取企业风管终端权限", "parameters": [ { "type": "integer", "description": "登录账号", "name": "loginID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Funcmenulist" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryAccMgrBizGroupSet": { "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": "deliverygoodsid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ErmcpBizGroupEx" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryAccMgrLoginUser": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询账户管理登录账号(账户管理/登录账号)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "integer", "description": "查询类型 1-业务账户 2-交易账户 3-管理账户", "name": "querytype", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ErmcpLoginUserEx" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryAccMgrMainAccountInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询账户管理主账号详情(账户管理/期货主账号详情)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query" }, { "type": "integer", "description": "主账号id", "name": "accountid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MainAccountInfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryAccMgrRole": { "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/models.ErmcpRole" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryAccMgrRoleMenu": { "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": "roleid", "in": "query" }, { "type": "integer", "description": "菜单类型 1:管理端 2:交易端 3:终端(企业云平台) 4:仓单贸易 ps:新加的参数,为了兼容以前,不传则默认查3", "name": "menutype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ErmcpRoleMenuEx" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryAccMgrTaAccountInfo": { "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": "accountid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ErmcpTaAccountInfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryAccMgrTaaccount": { "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/models.ErmcpTaAccountEx" } } }, "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": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "string", "description": "现货合同ID, 不填则查所有", "name": "relatedid", "in": "query" }, { "type": "string", "description": "申请状态(逗号隔开) 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "name": "applystatus", "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": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "string", "description": "现货合同ID, 不填则查所有", "name": "relatedid", "in": "query" }, { "type": "string", "description": "申请状态(逗号隔开) 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "name": "applystatus", "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": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "string", "description": "现货合同ID, 不填则查所有", "name": "relatedid", "in": "query" }, { "type": "string", "description": "操作申请id", "name": "operateapplyid", "in": "query" }, { "type": "string", "description": "申请状态(逗号隔开) 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "name": "applystatus", "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": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "string", "description": "现货合同ID, 不填则查所有", "name": "relatedid", "in": "query" }, { "type": "string", "description": "申请状态(逗号隔开) 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "name": "applystatus", "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": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "string", "description": "现货合同ID, 不填则查所有", "name": "relatedid", "in": "query" }, { "type": "string", "description": "申请状态(逗号隔开) 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "name": "applystatus", "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/QueryErmcpHisOrderDetails": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "获取企业风管期货历史委托单信息", "parameters": [ { "type": "integer", "description": "资金账户ID", "name": "accountID", "in": "query", "required": true }, { "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/models.QueryHedgeOrderDetailRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryErmcpHisTradeDetails": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "获取企业风管期货历史成交单信息", "parameters": [ { "type": "integer", "description": "资金账户ID", "name": "accountID", "in": "query", "required": true }, { "type": "integer", "description": "商品ID", "name": "goodsID", "in": "query" }, { "type": "integer", "description": "买卖方向,0:买 1:卖", "name": "buyOrSell", "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/models.QueryHedgeTradeDetailRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryErmcpInnerHolderDetails": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "获取企业风管期货内部持仓单信息", "parameters": [ { "type": "integer", "description": "资金账户ID", "name": "accountID", "in": "query", "required": true }, { "type": "integer", "description": "商品ID", "name": "goodsID", "in": "query" }, { "type": "integer", "description": "买卖方向,0:买 1:卖", "name": "buyOrSell", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Hedgeinnerholderdetail" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryErmcpOrderDetails": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "获取企业风管期货委托单信息", "parameters": [ { "type": "integer", "description": "资金账户ID", "name": "accountID", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.QueryHedgeOrderDetailRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryErmcpTradeDetails": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "获取企业风管期货成交单信息", "parameters": [ { "type": "integer", "description": "资金账户ID", "name": "accountID", "in": "query", "required": true }, { "type": "integer", "description": "商品ID", "name": "goodsID", "in": "query" }, { "type": "integer", "description": "买卖方向,0:买 1:卖", "name": "buyOrSell", "in": "query" }, { "type": "integer", "description": "关联委托单号", "name": "orderID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.QueryHedgeTradeDetailRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryErmcpTradePosition": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "本接口只使用于通道交易相关头寸查询;子账户持仓头寸占用保证金为0;", "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "获取企业风管期货持仓头寸信息", "parameters": [ { "type": "integer", "description": "资金账户ID", "name": "accountID", "in": "query", "required": true }, { "type": "integer", "description": "所属市场ID", "name": "marketID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ermcp.QueryErmcpTradePositionRsp" } }, "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/QueryExposureGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询敞口主力合约", "parameters": [ { "type": "integer", "description": "套保商品id", "name": "middlegoodsid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ErmcpMiddlegoodsRelateGoods" } } }, "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": "userid", "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": "userid", "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/QueryFuturesCompany": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询期货公司", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ErmcpFuturesCompany" } } }, "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/QueryGoodsBrand": { "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" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ErmcpGoodsBrand" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryGoodsModel": { "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/models.ErmcpGoodsModel" } } }, "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": "userid", "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" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryMiddleGoodsDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryPendingAuditInfo": { "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.PendingAuditCntRsp" } } }, "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": "userid", "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": "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.RealtimeExposurePositionRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryRoleMenu": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询角色菜单和权限", "parameters": [ { "type": "integer", "description": "登录ID", "name": "loginid", "in": "query", "required": true }, { "type": "integer", "description": "菜单类型 1:管理端 2:交易端 3:终端(企业云平台) 4:仓单贸易", "name": "menutype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.RoleMenu" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp/QueryTradeConfigTMP": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询交易模板配置", "parameters": [ { "type": "integer", "description": "所属机构id", "name": "areauserid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ErmcpTradeConfigTMP" } } }, "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/QueryWarehouseInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理(app)" ], "summary": "查询仓库信息", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "仓库状态(可多项,逗号隔开) 1:正常 2:注销 3:待审核 4:审核拒绝", "name": "status", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/ermcp.QryWarehouseRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QryAreaExpourseContractDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询敞口合同明细(敞口报表/现货合同明细)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "套保商品id", "name": "middlegoodsid", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query", "required": true }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3ExposureContractDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QryAreaExpourseFutuDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询敞口期货明细(敞口报表/期货明细)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "套保商品id", "name": "middlegoodsid", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query", "required": true }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3ExposureFutuDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QryAreaExpourseHedgeplanDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询敞口套保计划明细(敞口报表/套保计划明细)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "套保商品id", "name": "middlegoodsid", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query", "required": true }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3ExposureHedgeplanDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QryAreaExpourseParamChLogDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询敞口参数调整明细(敞口报表/参数调整明细)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "套保商品id", "name": "middlegoodsid", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query", "required": true }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3ExposureParamChLog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QryAreaExpourseReport": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询敞口报表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "查询类型 1-报表, 这个接口只查报表;明细的字段完全不同,另有接口", "name": "querytype", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query", "required": true }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3ExpourseReport" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QryAreaSpotplReport": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "目前pcweb的日/周/月报表与手机端的汇总维度不同, 所以增加了可选参数sumflag参数, pcweb请填1", "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询现货报表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "查询类型 1-报表 2-报表明细", "name": "querytype", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query", "required": true }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true }, { "type": "integer", "description": "现货品种id(明细必填)", "name": "deliverygoodsid", "in": "query" }, { "type": "integer", "description": "币种id(明细必填)", "name": "currencyid", "in": "query" }, { "type": "integer", "description": "日/周/月报表汇总维度 1:品种+品类", "name": "sumflag", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3AreaSpotPLReport" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QryAreaStockReport": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询库存报表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "查询类型 1-报表 2-报表明细", "name": "querytype", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query", "required": true }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true }, { "type": "string", "description": "汇总维度(逗号隔开) 1-品种 2-品类 3-品牌 4-仓库", "name": "sumfields", "in": "query" }, { "type": "integer", "description": "品种ID", "name": "deliverygoodsid", "in": "query" }, { "type": "integer", "description": "品类ID", "name": "wrstandardid", "in": "query" }, { "type": "integer", "description": "品牌ID", "name": "spotgoodsbrandid", "in": "query" }, { "type": "integer", "description": "仓库ID", "name": "warehouseinfoid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3AreaStockReportEx" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QryAreaSumPL": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询汇总损益表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "查询类型 1-报表 2-报表明细", "name": "querytype", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query", "required": true }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true }, { "type": "integer", "description": "币种id(明细必填)", "name": "currencyid", "in": "query" }, { "type": "integer", "description": "套保品种ID, 查询类型为2时起效", "name": "middlegoodsid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3ArealSumPL" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QryFinanceReport": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询财务报表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "查询类型 1-报表 2-报表明细", "name": "querytype", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query", "required": true }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true }, { "type": "integer", "description": "币种id(报表明细必填)", "name": "currencyid", "in": "query" }, { "type": "string", "description": "汇总维度(逗号隔开) 1-品种 2-品类 3-品牌", "name": "sumfields", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3FinanceReport" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QrySCMiddleGoodsReport": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询定价报表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query", "required": true }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true }, { "type": "integer", "description": "合同id", "name": "spotcontractid", "in": "query" }, { "type": "integer", "description": "套保品种id", "name": "middlegoodsid", "in": "query" }, { "type": "integer", "description": "现货品种id", "name": "deliverygoodsid", "in": "query" }, { "type": "integer", "description": "现货商品id", "name": "wrstandardid", "in": "query" }, { "type": "string", "description": "合同编号(模糊匹配)", "name": "contractno", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3SCMiddleGoodsReport" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QryTaFutureDataReport": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询期货报表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "查询类型 1-报表 2-报表明细", "name": "querytype", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query", "required": true }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true }, { "type": "integer", "description": "币种id(查明细必填)", "name": "currencyid", "in": "query" }, { "type": "integer", "description": "品种id(查明细必填)", "name": "goodsgroupid", "in": "query" }, { "type": "integer", "description": "商品id(查明细必填)", "name": "goodsid", "in": "query" }, { "type": "integer", "description": "买卖方向(查明细必填)", "name": "buyorsell", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3TaFutuReDataReport" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryAreaStock": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询机构库存(库存管理/当前库存)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3AreaStock" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryAreaStockApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询库存申请(出入库记录|库存审核)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "integer", "description": "现货商品ID", "name": "deliverygoodsid", "in": "query" }, { "type": "string", "description": "出入库类型(可多项,逗号隔开) 5:采购入库 6:销售出库 7:生产入库 8:生产出库", "name": "inouttype", "in": "query" }, { "type": "integer", "description": "合同ID", "name": "spotcontractid", "in": "query" }, { "type": "integer", "description": "品类ID", "name": "wrstandardid", "in": "query" }, { "type": "integer", "description": "品牌ID", "name": "spotgoodsbrandid", "in": "query" }, { "type": "integer", "description": "仓库ID", "name": "warehouseinfoid", "in": "query" }, { "type": "string", "description": "申请状态(可多项,逗号隔开)1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "name": "applystatus", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3AreaStockApply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryAreaStockApplySum": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询已登记出入库信息(入库登记/已入库信息 | 出库登记/已出库信息)", "parameters": [ { "type": "integer", "description": "合同ID", "name": "spotcontractid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3AreaStockApplySum" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryDGFactoryItem": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询品种要素定义项", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query" }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "integer", "description": "选择项ID(SEQ_DGFACTORYITEM)", "name": "dgfactoryitemid", "in": "query" }, { "type": "integer", "description": "现货品种ID", "name": "deliverygoodsid", "in": "query" }, { "type": "integer", "description": "要素项类型", "name": "dgfactoryitemtypeid", "in": "query" }, { "type": "integer", "description": "顺序", "name": "orderindex", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ErmcpDGFactoryItem" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryDeliveryGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询现货商品", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "integer", "description": "排除已配置的业务类型商品 1-套保 2-套利", "name": "excludecfg", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ErmcpDeliveryGoods" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryDeliveryGoodsDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询现货商品详情", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "integer", "description": "现货商品id", "name": "deliverygoodsid", "in": "query" }, { "type": "integer", "description": "过滤下级为空, 1-过滤. 比如 品种大豆的下级品类列表为空, 则大豆不显示; 比如品类的下级套保品列表为空, 则该品类不显示", "name": "filtersubempty", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.XHDeliveryGoods" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryErmcp3ContractMiddleGoodsCfg": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询现货合同期现配置信息", "parameters": [ { "type": "string", "description": "合同id", "name": "spotcontractid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3ContractMiddleGoodsCfg" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryExposureDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询敞口现货明细", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "integer", "description": "套保商品", "name": "middlegoodsid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3ExposureDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryExposureSpot": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询敞口现货头寸(敞口/现货头寸)", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3AreaSpot" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryExposureSpotDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询敞口现货头寸明细(敞口/现货头寸/现货明细)", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "integer", "description": "现货商品ID", "name": "wrstandardid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3AreaSpotDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryGoodsGroup": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询期货商品组", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "integer", "description": "排除套保品中已关联的商品组 1-排除", "name": "excludecfg", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3GoodsGroup" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryGoodsWrstandard": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询商品品类", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "integer", "description": "现货商品id", "name": "deliverygoodsid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3Wrstandard" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryGoodsbrand": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询商品品牌", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3Brand" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryHPMiddleGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询可关联套保计划", "parameters": [ { "type": "integer", "description": "用户ID(填登录用户的userid)", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "买卖方向 0-买 1-卖", "name": "buyorsell", "in": "query", "required": true }, { "type": "integer", "description": "商品组id", "name": "goodsgroupid", "in": "query", "required": true }, { "type": "string", "description": "套保计划编号(模糊匹配)", "name": "hedgeplanno", "in": "query" }, { "type": "string", "description": "现货商品名称(模糊匹配)", "name": "wrstandardname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3HPMiddleGoods" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryHedgePlan": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询套保计划", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "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/models.Ermcp3HedgePlan" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryInnerTradeLink": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "页面 app 现货-\u003e期现关联-\u003e外部成交单关联-\u003e点\"解除关联\"按钮-\u003e解除外部关联的页面信息", "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询外部成交单关联的内部单信息(在解除外部关联页面使用)", "parameters": [ { "type": "integer", "description": "外部成交单号", "name": "outtradeid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3InnerTradeLink" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryMiddleGoodsDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询套保品种详情(套保品种/商品详情)", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "integer", "description": "套保品种id", "name": "middlegoodsid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.TBMiddleGoods" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryOutTradeLink": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "页面 app 现货-\u003e期现关联-\u003e外部成交单关联", "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询外部成交单关联", "parameters": [ { "type": "integer", "description": "用户ID(填登录用户的userid)", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "外部订单号(模糊匹配)", "name": "outtradeid", "in": "query" }, { "type": "string", "description": "合约名称/代码(模糊匹配)", "name": "goodsname", "in": "query" }, { "type": "integer", "description": "关联状态 0-未关联 1-已关联", "name": "hasinnerorder", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3OutTradeLink" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryPaAreaAuditCfg": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询审核设置", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3PaAreaAuditCfg" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryPaAreaSubject": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询交易主体", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "主体ID(SEQ_ERMCP_PA_AREASUBJECT)", "name": "subjectid", "in": "query" }, { "type": "integer", "description": "主体类型 - 1:交易主体 2:业务部门", "name": "subjecttype", "in": "query" }, { "type": "integer", "description": "主体状态 - 1:正常 2: 停用", "name": "subjectstatus", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3PaAreaSubject" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryPaTradeLink": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "页面 app 现货-\u003e期现关联-\u003e期现单据关联", "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询期现单据关联", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3PaTradeLink" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryPaTradeLinkDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "页面 app 现货-\u003e期现关联-\u003e关联记录", "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询期现关联记录", "parameters": [ { "type": "integer", "description": "用户ID(填登录用户的userid)", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "关联状态 1:成功 2:失败 3:解绑", "name": "linkstatus", "in": "query" }, { "type": "string", "description": "期货订单号(模糊匹配)", "name": "tradeid", "in": "query" }, { "type": "string", "description": "现货编号(模糊匹配)", "name": "contractno", "in": "query" }, { "type": "string", "description": "期货账户(模糊匹配)", "name": "taname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3TradeLinkDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryParamChangeApp": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "原型页面:\n1.商品信息-\u003e商品参数修改流水-\u003e 增值税税率 | 折算系数 | 成本权重; 流水页面查申请状态为“审核通过”的记录\n2.风管审核-\u003e套保比例审核 | 折算系数审核 | 增值税税率审核 | 成本权重审核", "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询现货商品参数变更申请(流水)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "现货品种id", "name": "deliverygoodsid", "in": "query" }, { "type": "integer", "description": "现货商品id", "name": "wrstandardid", "in": "query" }, { "type": "integer", "description": "套保商品id", "name": "middlegoodsid", "in": "query" }, { "type": "integer", "description": "操作类型 1:新增 2:修改", "name": "operatetype", "in": "query" }, { "type": "integer", "description": "参数变更类型 - 1:增值税率变更(现货商品) 2:折算系数变更(现货商品) 3:成本权重(现货商品) 4:套保比率变更(套保品种)", "name": "paramchangetype", "in": "query" }, { "type": "string", "description": "申请状态(逗号隔开,如1,2,3) 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "name": "ftstatus", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3ParamChangeApp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QueryRootUserAccount": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询顶级用户信息", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3RootUserAccount" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QuerySCMiddleGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "页面 app 现货-\u003e期现关联-\u003e期现单据关联-\u003e点\"关联\"按钮-\u003e弹出界面 : 现货订单\n现货编号 即 合同编号", "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询现货订单", "parameters": [ { "type": "integer", "description": "用户ID(填登录用户的userid)", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "买卖方向 0-买 1-卖", "name": "buyorsell", "in": "query", "required": true }, { "type": "integer", "description": "商品组id", "name": "goodsgroupid", "in": "query", "required": true }, { "type": "integer", "description": "业务类型 1:套保 2:套利", "name": "biztype", "in": "query" }, { "type": "string", "description": "现货编号(模糊匹配)", "name": "contractno", "in": "query" }, { "type": "string", "description": "对手方(模糊匹配)", "name": "customername", "in": "query" }, { "type": "string", "description": "现货商品名称(模糊匹配)", "name": "wrstandardname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3SCMiddleGoods" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QuerySpotContract": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询现货合同", "parameters": [ { "type": "integer", "description": "用户id(当指定contractid, userid可不填)", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "integer", "description": "合同类型 1-采购, -1-销售", "name": "contracttype", "in": "query" }, { "type": "string", "description": "查询类型(逗号隔开, 如1,2,3) 1-未提交 2-待审核 3-履约中 4-已完成", "name": "querytype", "in": "query" }, { "type": "string", "description": "合同ID(SpotContractId)", "name": "contractid", "in": "query" }, { "type": "string", "description": "合同编号(模糊匹配)", "name": "contractno", "in": "query" }, { "type": "string", "description": "商品名称(模糊匹配)", "name": "wrstandardname", "in": "query" }, { "type": "string", "description": "合同状态(当填写此项时,将忽略querytype条件;可多个,逗号隔开,如0,1,2) 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "name": "status", "in": "query" }, { "type": "integer", "description": "是否只查今日的合同 1-查今日合同", "name": "istoday", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3Contract" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QuerySpotContractBS": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询合同(采购/销售)", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 2-机构 7-企业成员", "name": "usertype", "in": "query" }, { "type": "integer", "description": "合同类型 1-采购, -1-销售", "name": "contracttype", "in": "query", "required": true }, { "type": "integer", "description": "查询类型 1-全部 2-待点价 3-履约结算 4-已完成", "name": "querytype", "in": "query" }, { "type": "string", "description": "合同ID(SpotContractId)", "name": "contractid", "in": "query" }, { "type": "string", "description": "合同状态(当填写此项时,将忽略querytype条件;可多个,逗号隔开,如0,1,2) 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "name": "status", "in": "query" }, { "type": "integer", "description": "是否只查今日的合同 1-查今日合同", "name": "istoday", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3SellBuyContract" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QuerySpotGoodsPrice": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询现货市价(现货市价)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3SpotGoodsPrice" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QuerySpotGoodsPriceLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询现货市价详情(现货市价/详情)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "现货商品ID", "name": "deliverygoodsid", "in": "query", "required": true }, { "type": "integer", "description": "品牌ID", "name": "brandid", "in": "query" }, { "type": "integer", "description": "品类ID", "name": "wrstandardid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3SpotGoodsPriceLog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp3/QuerySubTaaccount": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "页面 app 现货-\u003e期现关联-\u003e外部成交单关联-\u003e点\"关联\"按钮-\u003e选择期货子账户", "produces": [ "application/json" ], "tags": [ "企业风险管理v3(app)" ], "summary": "查询期货子账户", "parameters": [ { "type": "integer", "description": "母账号id", "name": "parentaccountid", "in": "query" }, { "type": "string", "description": "母账号代码", "name": "parentaccountcode", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp3SubTaaccount" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryERMCP2HedgedItemSpotDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "现货成交明细查询", "parameters": [ { "type": "integer", "description": "套期项目ID", "name": "hedgeditemid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp2hedgeditemspotDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryERMCP2HedgedItemspot": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "套期计划明细查询", "parameters": [ { "type": "integer", "description": "套期项目ID", "name": "hedgeditemid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp2hedgeditemspot" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryERMCPJRLinkPos": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "期货持仓明细查询", "parameters": [ { "type": "integer", "description": "套期项目ID", "name": "hedgeditemid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcpjrlinkpos" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryERMCPPatradeLinkDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "期货成交单明细查询", "parameters": [ { "type": "integer", "description": "套期项目ID", "name": "hedgeditemid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcppatradelinkdetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryErmcp2AreaExposure": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "企业敞口查询", "parameters": [ { "type": "string", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp2AreaExposure" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryErmcp2HedgedItem": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "已完成项目查询 -\u003e 项目状态 = 3:正常完结 or 5:异常完结", "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "查询被套期项目信息", "parameters": [ { "type": "string", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "套期类型 1:采购计划项目 2:销售计划项目 3:现货贸易项目 4:库存存货项目 5:定价采购合同项目", "name": "hedgedtype", "in": "query" }, { "type": "integer", "description": "项目状态 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "name": "hedgeditemstatus", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp2hedgeditem" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryErmcp2HedgedItemLink": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "现货合同关联被套期项目查询", "parameters": [ { "type": "integer", "description": "现货合同ID", "name": "spotcontractid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp2hedgeditemlink" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryErmcp2HedgedItemsDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "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/models.Ermcp2hedgeditemsDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryErmcp2StockSpotChangeLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "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/models.Ermcp2stockspotchangelog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryErmcp8EnableHedgeditem": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "可关联项目查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "现货类型 - 1:采购计划 2:销售计划 3:采购合同 4:销售合同 5:库存存货", "name": "spottype", "in": "query", "required": true }, { "type": "integer", "description": "现货商品ID", "name": "wrstandardid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp8EnableHedgeditem" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryErmcp8HedgeditemReport": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "套期项目报表查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query" }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true }, { "type": "integer", "description": "套期类型 - 1:采购计划项目 2:销售计划项目 3:现货贸易项目 4:库存存货项目 5:定价采购合同项目", "name": "hedgedtype", "in": "query" }, { "type": "integer", "description": "项目状态 - 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "name": "hedgeditemstatus", "in": "query" }, { "type": "string", "description": "项目编号,模糊查询", "name": "hedgeditemnum", "in": "query" }, { "type": "integer", "description": "现货商品ID", "name": "wrstandardid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp8HedgeditemReport" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryErmcp8RunningHedgeditem": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "查询执行中项目查询信息", "parameters": [ { "type": "string", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Ermcp8RunningHedgeditem" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryInternalEnableTradeDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "内部成交单可关联项目查询", "parameters": [ { "type": "integer", "description": "企业ID", "name": "areauserid", "in": "query", "required": true }, { "type": "integer", "description": "期货合约ID", "name": "goodsid", "in": "query", "required": true }, { "type": "integer", "description": "交易用户ID", "name": "tradeuserid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.InternalEnableTradeDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryInternalUncorrelatedTradeDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "内部未关联成交单查询", "parameters": [ { "type": "integer", "description": "用户编号", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "起始日期(格式yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "终止日期(格式yyyymmdd)", "name": "enddate", "in": "query" }, { "type": "string", "description": "合约代码", "name": "goodscode", "in": "query" }, { "type": "string", "description": "合约名称", "name": "goodsname", "in": "query" }, { "type": "integer", "description": "成交单号", "name": "tradeid", "in": "query" }, { "type": "integer", "description": "方向 - 0:买 1:卖", "name": "buyorsell", "in": "query" }, { "type": "string", "description": "套期主体", "name": "accountname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.InternalUncorrelatedTradeDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryMarketCalendar": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "市场节假日查询", "parameters": [ { "type": "integer", "description": "市场ID", "name": "marketid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Marketcalendar" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryPatradeLinkDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "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/models.Patradelinkdetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryUnLinkErmcpHedgePlan": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "未关联购销计划", "parameters": [ { "type": "integer", "description": "企业ID", "name": "areauserid", "in": "query", "required": true }, { "type": "integer", "description": "计划类型 - 1:采购 -1:销售", "name": "contracttype", "in": "query" }, { "type": "string", "description": "计划编号,模糊查询", "name": "hedgeplanno", "in": "query" }, { "type": "string", "description": "现货商品,模糊查询", "name": "wrstandardname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Unlinkermcphedgeplan" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ermcp8/QueryUnLinkSpotContract": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "企业风险管理v8" ], "summary": "未关联合同查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "定价类型 - 1:一口价 2:点价 3:暂定价", "name": "pricetype", "in": "query" }, { "type": "string", "description": "合同编号, 模拟查询", "name": "contractno", "in": "query" }, { "type": "string", "description": "对手方, 模拟查询", "name": "customername", "in": "query" }, { "type": "integer", "description": "项合同类型 - 1:采购 -1:销售", "name": "contracttype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ErmcpSpotContractModelEx" } } }, "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/DeleteUserInfoApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "只可删除 UserState = 1 (未提交)状态的申请信息", "produces": [ "application/json" ], "tags": [ "风险管理v3" ], "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" } } } } }, "/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" } } } } }, "/Ferroalloy/GetSpotGoodsPrice": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "获取现货行情", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GErmcpspotgoodsprice" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryInvestorLevelGroup": { "get": { "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询查询我推荐的好友等级", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Thjinvestorlevelgroup" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryMyDeposit": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询本人定金比例", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Thjinvesotrdeposit" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryMyRefer": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询我的推荐列表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MyRefer" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryMyRegisterMoney": { "get": { "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询我的注册红包", "parameters": [ { "type": "integer", "description": "资金账户", "name": "accountid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.RegisterMoney" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QuerySpotgoodsPrice": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询行情-现货列表", "parameters": [ { "type": "integer", "description": "现货商品ID", "name": "wrstandardid", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Spotgoodsprice" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJFriends": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询好友", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "客户名称(企业名称),模糊查询", "name": "customername", "in": "query" }, { "type": "string", "description": "手机号码(加密存储),加密串精确查询", "name": "mobile", "in": "query" }, { "type": "integer", "description": "等级ID", "name": "levelgroupid", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.THJFriend" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJGoodsDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询商品详情", "parameters": [ { "type": "integer", "description": "现货商品ID", "name": "wrstandardid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.THJGoodsDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJInvesotrDepositLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "比例变更流水查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "number", "description": "定金比例(选中比例)", "name": "depositrate", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GThjinvesotrdepositlog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJListing": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询供求列表", "parameters": [ { "type": "string", "description": "现货商品名称(模糊查询)", "name": "wrstandardname", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.THJWrstandard" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJProduct": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "获取产品介绍列表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "boolean", "description": "关注标志 true-已关注 false-未关注", "name": "favoriteflag", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.THJProduct" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJProfits": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询收益", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "市场ID", "name": "marketid", "in": "query" }, { "type": "string", "description": "好友名称,模糊查询", "name": "accountname", "in": "query" }, { "type": "string", "description": "商品代码或商品名称,模糊查询", "name": "goods", "in": "query" }, { "type": "integer", "description": "分润机构角色 - 1:平台 2:经纪会员 3:一级交易商 4:二级交易商(枚举:THJProfitRoleType)", "name": "marketid", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.THJProfit" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJPromotionIncome": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询我的推广-推广收益", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "状态 - 0:全部 1:已支付 2:未支付", "name": "profitstatus", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.PromotionIncome" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJPromotionIncomeDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询我的推广-推广收益-明细", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "月份,格式:yyyymm", "name": "mouth", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.PromotionIncomeDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJPurchaseTradeDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询我的订单-采购订单", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "类型 - 0:未完成 1:已完成 2:可点订单 3:已点订单", "name": "type", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Thjpurchasetradedetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJPurchaseTransfer": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询合同转让列表", "parameters": [ { "type": "string", "description": "现货商品名称(模糊查询)", "name": "wrstandardname", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.PurchaseTransfer" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJPurchaseTransferDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询合同转让详情", "parameters": [ { "type": "integer", "description": "现货商品ID", "name": "wrstandardid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.THJPurchaseTradeDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJPurchaseTransferOrder": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询我的订单-转让/受让订单", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "类型 - 1:转让 2:受让 3:转让委托已完成", "name": "ordertype", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Thjpurchasetransfer" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJPurchaseTransferOrderDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询我的订单-转让/受让订单-详情", "parameters": [ { "type": "string", "description": "转让单号", "name": "transferid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ThjpurchasetransferDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJScoreConfig": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询积分配置", "parameters": [ { "type": "string", "description": "[格式:1,2,3] 配置类型 - 1:注册红包 2:签到积分 3:推广积分 4:下级用户下单积分 5:自己采购下单积分 6:自己供求下单积分 7:抽奖配置", "name": "stype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Thjscoreconfig" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJTradeData": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "获取我的推广-交易数据", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "市场ID 采购-64201 供求-65201", "name": "marketid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.THJTradeData" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJWrstandard": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询采购列表", "parameters": [ { "type": "string", "description": "现货商品名称(模糊查询)", "name": "wrstandardname", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.THJWrstandard" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJWrstandardDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询采购详情", "parameters": [ { "type": "integer", "description": "现货商品ID", "name": "wrstandardid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.THJWrstandardDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryTHJinvesotrdeposit": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "定金比例个性化查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "预售申请ID", "name": "presaleapplyid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GThjinvesotrdeposit" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryThjSpotQuote": { "get": { "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询现货行情配置列表", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ThjSpotQuote" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryThjSpotQuoteConfig": { "get": { "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询现货行情配置表", "parameters": [ { "type": "string", "description": "现货名称", "name": "spotname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Thjspotquoteconfig" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryUserLevelInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询用户等级信息", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.THJUserLevelInfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/QueryUserScoreLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "查询我的积分流水", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "[格式:1,2,3] 配置类型 - 1:注册红包 2:签到积分 3:推广积分 4:下级用户下单积分 5:自己采购下单积分 6:自己供求下单积分 7:抽奖配置", "name": "stype", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GThjuserscorelog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Ferroalloy/Signin": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "铁合金" ], "summary": "用户签到", "parameters": [ { "description": "用户签到请求", "name": "jsonBody", "in": "body", "required": true, "schema": { "$ref": "#/definitions/models.THJSigninReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.THJSigninRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/GZBSFWOrderOperate": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "保税服务单据操作信息", "parameters": [ { "type": "integer", "description": "单据ID", "name": "orderid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Gzbsfworderoperate" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/GetGZBSCGoods": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "获取保税商品表", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Gzbscgoods" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/GetGZMemberInfo": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "获取会员风采表", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Gzmemberinfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/GetGoods": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "获取钻石详情", "parameters": [ { "type": "string", "description": "商品编号", "name": "goodsno", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.GZGoods" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/GzCertAddressConfig": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "Rapaport最新报价表(广钻)", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Gzcertaddressconfig" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/GzCertAddressParam": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "钻石证书地址参数", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Gzcertaddressparam" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/HomeData": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "首页统计数据", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.GZHomeData" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/PriceCalc": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "钻石价格计算器", "parameters": [ { "type": "integer", "description": "形状 - 1:BR(圆形) 2:PS(异形)", "name": "zsshape", "in": "query", "required": true }, { "type": "string", "description": "颜色(D-M)", "name": "zscolor", "in": "query", "required": true }, { "type": "string", "description": "净度", "name": "zsclarity", "in": "query", "required": true }, { "type": "number", "description": "重量", "name": "weight", "in": "query", "required": true }, { "type": "number", "description": "汇率", "name": "rate", "in": "query", "required": true }, { "type": "number", "description": "折扣(%), 方向(加:10, 减:-10 )", "name": "discount", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Gzrapaportprice" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryBScOutOrderDetailatt": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "保税仓出库申请明细附表查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "申请ID", "name": "orderid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.BScoutorderdetailatt" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryBScinOutOrderDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "保税仓出入库申请明细表查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "申请ID", "name": "orderid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.BScinoutorderdetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryBscinoutorder": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "保税仓本月进口明细/本月出境明细/本月转厂明细查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "进出口月份(yyyMM)", "name": "jckdate", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Bscinoutorder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryBuyOrder": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询求购大厅委托单", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "商品(查询字段-模糊查询)", "name": "zsallproperties", "in": "query" }, { "type": "string", "description": "钻石分类, 格式:1,2,3", "name": "zscategorys", "in": "query" }, { "type": "integer", "description": "委托单号", "name": "wrtradeorderid", "in": "query" }, { "type": "string", "description": "买方(查询字段-模糊查询)", "name": "buyusername", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.BuyOrder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryDiamond": { "post": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "钻石搜索", "parameters": [ { "description": "钻石搜索入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/models.SellOrderQueryReq" } } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.SellOrder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryFworderoperate": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询保税服务单据操作", "parameters": [ { "type": "string", "description": "单据ID", "name": "orderid", "in": "query", "required": true }, { "type": "integer", "description": "操作后单据状态", "name": "status", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Fworderoperate" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGZBSFWOrder": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询保税服务单据", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "执行状态 - 1:未生效 2:进行中 3:已结束", "name": "executestatus", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GzbsfworderM" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGZBSFWOrderDetail": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询保税服务单据明细", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "单据ID", "name": "orderid", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GzbsfworderdetailM" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGZCJBSOrderFile": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "出境保税单据文件", "parameters": [ { "type": "integer", "description": "单据ID", "name": "orderid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GzcjbsorderfileM" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGZCJJCOrder": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询出境检测单据", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "执行状态 - 1:未生效 2:进行中 3:已结束", "name": "executestatus", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GzcjjcorderM" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGZCJJCOrderDetail": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询出境检测单据明细(批次信息)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "单据ID", "name": "orderid", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GzcjjcorderdetailM" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGZMyPresell": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "我的预售认购列表查询", "parameters": [ { "type": "integer", "description": "预售申请ID", "name": "presaleapplyid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GZMyPresell" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGZMyTradingPreSell": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "我参与的预售(预售中\\执行中)\\我参与的集采(集采中\\执行中) 列表查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "市场ID", "name": "marketid", "in": "query", "required": true }, { "type": "integer", "description": "状态 1:预售中\\集采中 2:执行中 3:已完成", "name": "status", "in": "query" }, { "type": "string", "description": "卖方", "name": "customername", "in": "query" }, { "type": "string", "description": "商品", "name": "wrstandardname", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GZMyTradingPresell" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGZPreSell": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "预售大厅/我的预售/集采大厅/我的集采 列表查询", "parameters": [ { "type": "integer", "description": "市场ID", "name": "marketid", "in": "query", "required": true }, { "type": "integer", "description": "预售状态 - 1:未开始 2:进行中 3:已结束 4:已关闭 5:处理中 6::处理失败 7:已完成", "name": "presalestatus", "in": "query" }, { "type": "string", "description": "预售状态 - 1:未开始 2:进行中 3:已结束 4:已关闭 5:处理中 6::处理失败 7:已完成 - 逗号分隔", "name": "presalestatuses", "in": "query" }, { "type": "string", "description": "现货商品名称", "name": "wrstandardname", "in": "query" }, { "type": "string", "description": "预售方", "name": "customername", "in": "query" }, { "type": "integer", "description": "发行方用户ID", "name": "selluserid", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GZPresell" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGZWrPreSaleApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "我的预售申请列表查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "市场ID", "name": "marketid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Wrpresaleapply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGzbscPosition": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "保税商品报关头寸表查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GGzbscposition" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGzbscinOutOrder": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "保税仓出入库申请表查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "单据类型 - 1:进仓 2:出仓(枚举:GZBSCOrderType)", "name": "ordertype", "in": "query", "required": true }, { "type": "integer", "description": "列表类型 - 0.全部 1.待上传 2.进行中 3.已结束", "name": "listtype", "in": "query" }, { "type": "integer", "description": "出仓类型 - 1:转厂 2:出境(枚举:GZBSCOutType)", "name": "outtype", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GGzbscinoutorder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGzbscreckonorder": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "保税仓结算单表查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "支付状态 - 2:待支付 3:已支付(枚举:GZBSCPayStatus)", "name": "paystatus", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Gzbscreckonorder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGzbscusermonthpay": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "保税仓用户月付款通知书表查询(计费管理)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "支付状态 - 1:待确认 2:待支付 3:已支付(枚举:GZBSCPayStatus)", "name": "paystatus", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GGzbscusermonthpay" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGzbscuserpowerfee": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "保税仓月电费登记表查询", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "月份(yyyMM)", "name": "trademonth", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GGzbscuserpowerfee" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryGzcjjcorderoperate": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询出境检测单据操作", "parameters": [ { "type": "string", "description": "单据ID", "name": "orderid", "in": "query", "required": true }, { "type": "integer", "description": "操作后单据状态", "name": "status", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Gzcjjcorderoperate" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryMemberReport": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询会员报表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表 (日报表不传此参数)", "name": "cycletype", "in": "query" }, { "type": "string", "description": "开始时段(日报表:yyyymmdd 月报表:yyyymm 年报表:yyyy)", "name": "begindate", "in": "query", "required": true }, { "type": "string", "description": "结束时段(日报表:yyyymmdd 月报表:yyyymm 年报表:yyyy)", "name": "enddate", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Reckondaytaaccount" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryMyBargainApply": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询询价-求购", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "申请状态(不传查全部) - 1:待确认 2:已确认 3:已拒绝 4:已撤销 5:系统撤销 6:处理失败 7:确认中", "name": "applystatus", "in": "query" }, { "type": "integer", "description": "查询类型 - 0:我的询价 1:我订单的询价", "name": "type", "in": "query" }, { "type": "string", "description": "关联委托单ID", "name": "wrtradeorderid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MyBargainApply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryMyBuyOrder": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询我的求购", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "商品(查询字段-模糊查询)", "name": "zsallproperties", "in": "query" }, { "type": "string", "description": "钻石分类, 格式:1,2,3", "name": "zscategorys", "in": "query" }, { "type": "integer", "description": "委托单号", "name": "wrtradeorderid", "in": "query" }, { "type": "boolean", "description": "是否历史查询", "name": "ishis", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MyBuyOrder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryMyDeListing": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询我的摘牌", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "商品(查询字段-模糊查询)", "name": "zsallproperties", "in": "query" }, { "type": "string", "description": "钻石分类, 格式:1,2,3", "name": "zscategorys", "in": "query" }, { "type": "integer", "description": "成交单号", "name": "wrtradedetailid", "in": "query" }, { "type": "integer", "description": "方向,0-购买 1-出售", "name": "buyorsell", "in": "query" }, { "type": "string", "description": "对手方(模糊匹配)", "name": "matchusername", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MyDeListing" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryMyDelistingApply": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询询价-出售", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "申请状态(不传查全部) - 1:待确认 2:已确认 3:已拒绝 4:已撤销 5:系统撤销 6:处理失败 7:确认中", "name": "applystatus", "in": "query" }, { "type": "integer", "description": "查询类型 - 0:我的询价 1:我订单的询价", "name": "type", "in": "query" }, { "type": "string", "description": "买委托单ID", "name": "buywrtradeorderid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MyDelistingApply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryMyFavorite": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询我的收藏", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "钻石分类, 格式:1,2,3", "name": "zscategorys", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MyFavorite" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryMyPerformanc": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询我的履约", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "商品(查询字段-模糊查询)", "name": "zsallproperties", "in": "query" }, { "type": "integer", "description": "方向,0-买 1-卖", "name": "buyorsell", "in": "query" }, { "type": "boolean", "description": "是否历史查询", "name": "ishis", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MyPerformanc" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryMySellOrder": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询我的出售", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "商品(查询字段-模糊查询)", "name": "zsallproperties", "in": "query" }, { "type": "string", "description": "钻石分类, 格式:1,2,3", "name": "zscategorys", "in": "query" }, { "type": "integer", "description": "委托单号", "name": "wrtradeorderid", "in": "query" }, { "type": "boolean", "description": "是否历史查询", "name": "ishis", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MySellOrder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryMyWRPosition": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "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": "wruserid", "in": "query", "required": true }, { "type": "string", "description": "商品(查询字段-模糊查询)", "name": "zsallproperties", "in": "query" }, { "type": "string", "description": "钻石分类, 格式:1,2,3", "name": "zscategorys", "in": "query" }, { "type": "integer", "description": "仓库ID", "name": "warehouseid", "in": "query" }, { "type": "integer", "description": "是否上架 1-已上架 2-未上架 3-履约中", "name": "marketflag", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MyWRPosition" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryPresaleorderapplyprice": { "get": { "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询预售申请价格表", "parameters": [ { "type": "string", "description": "预售申请ID", "name": "applyid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Presaleorderapplyprice" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QuerySellOrder": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询出售大厅委托单", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "商品(查询字段-模糊查询)", "name": "zsallproperties", "in": "query" }, { "type": "string", "description": "钻石分类, 格式:1,2,3", "name": "zscategorys", "in": "query" }, { "type": "integer", "description": "委托单号", "name": "wrtradeorderid", "in": "query" }, { "type": "string", "description": "卖方(查询字段-模糊查询)", "name": "buyusername", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.SellOrder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryTradeReport": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询交易报表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表 (日报表不传此参数)", "name": "cycletype", "in": "query" }, { "type": "string", "description": "开始时段(日报表:yyyymmdd 月报表:yyyymm 年报表:yyyy)", "name": "begindate", "in": "query", "required": true }, { "type": "string", "description": "结束时段(日报表:yyyymmdd 月报表:yyyymm 年报表:yyyy)", "name": "enddate", "in": "query", "required": true }, { "type": "integer", "description": "商品分类", "name": "zscategory", "in": "query" }, { "type": "integer", "description": "商品币种", "name": "zscurrencytype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Reckongzmemtradesum" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryWRPositionReport": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "produces": [ "application/json" ], "tags": [ "广钻" ], "summary": "查询仓储报表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "string", "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表 (日报表不传此参数)", "name": "cycletype", "in": "query" }, { "type": "string", "description": "开始时段(日报表:yyyymmdd 月报表:yyyymm 年报表:yyyy)", "name": "begindate", "in": "query", "required": true }, { "type": "string", "description": "结束时段(日报表:yyyymmdd 月报表:yyyymm 年报表:yyyy)", "name": "enddate", "in": "query", "required": true }, { "type": "integer", "description": "商品分类", "name": "zscategory", "in": "query" }, { "type": "integer", "description": "商品币种", "name": "zscurrencytype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WRPositionReport" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Guangzuan/QueryWarehouseInfo": { "get": { "security": [ { "ApiKeyAuth": [] }, { "LoginID": [] }, { "Group": [] } ], "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": "userid", "in": "query", "required": true }, { "type": "string", "description": "仓库状态(可多项,逗号隔开) 1:正常 2:注销 3:待审核 4:审核拒绝", "name": "status", "in": "query" }, { "type": "boolean", "description": "是返回交易所仓库", "name": "isincludeexchange", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GZWarehouseinfo" } } }, "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" } } } } }, "/Hnsh/QueryPresaleGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "华南石化" ], "summary": "查询定金预售商品", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.PresaleGoods" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Market/GetAllExExchanges": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用市场" ], "summary": "获取所有外部交易所信息", "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.Goods" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Market/GetMarketSections": { "get": { "produces": [ "application/json" ], "tags": [ "通用市场" ], "summary": "查询新板块设置", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.GetMarketSectionsRsp" } } }, "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": { "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" } } } } }, "/Mine/QueryMineCpTradePreSaleResults": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "我的" ], "summary": "我的持仓-预售持仓", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MineCpTradePreSaleResult" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Mine/QueryMineTradeGoodsDeliveryOfflines": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "我的" ], "summary": "交收提货-线下交收单", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MineTradeGoodsDeliveryOffline" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Mine/QueryMineTradeOrderDetails": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "我的" ], "summary": "我的订单-预售认购", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "boolean", "description": "是否历史查询", "name": "ishis", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MineTradeOrderDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Mine/QueryMineTradeOrders": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "我的" ], "summary": "我的订单-转让委托", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "boolean", "description": "是否历史查询", "name": "ishis", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MineTradeOrder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Mine/QueryMineTradePositionExs": { "get": { "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" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MineTradePositionEx" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Mine/QueryMineTradeTradeDetails": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "我的" ], "summary": "我的订单-转让成交", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "boolean", "description": "是否历史查询", "name": "ishis", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MineTradeTradeDetail" } } }, "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": "integer", "description": "商品ID", "name": "goodsID", "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" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "分页标志 0-page从0开始 1-page从1开始", "name": "pageflag", "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" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "分页标志 0-page从0开始 1-page从1开始", "name": "pageflag", "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" }, { "type": "integer", "description": "商品ID", "name": "goodsID", "in": "query" }, { "type": "string", "description": "增量成交单号,用于增量查询", "name": "incTradeID", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/order.QueryTradeDetailRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Order/QueryTradeHolderDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "通用单据" ], "summary": "查询持仓明细", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query" }, { "type": "string", "description": "资金账号, 格式 1,2,3", "name": "accids", "in": "query" }, { "type": "string", "description": "交易模式, 格式 1,2,3", "name": "trademodes", "in": "query" }, { "type": "string", "description": "市场id, 格式 1,2,3", "name": "marketids", "in": "query" }, { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query" }, { "type": "integer", "description": "买卖方向 0-买 1-卖", "name": "buyorsell", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.TradeHolderDetail" } } }, "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" }, { "type": "string", "description": "增量委托单号", "name": "incOrderID", "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" } } } } }, "/Presale/QueryPresaleAuctions": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "预售" ], "summary": "查询预售竞拍列表", "parameters": [ { "type": "integer", "description": "预售模式 - 1:一口价 2:大宗式竞拍 3:挂牌预售(HSBY) 4:定金预售(大宗) 5:定金预售(中签)", "name": "presalemode", "in": "query", "required": true }, { "type": "integer", "description": "预售状态 - 1:未开始 2:预售中 3:已结束 4:已关闭", "name": "presalestatus", "in": "query" }, { "type": "string", "description": "预售状态 - 1:未开始 2:预售中 3:已结束 4:已关闭 (多个逗号分隔)", "name": "presalestatusstr", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.PresaleAuction" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Presale/QueryPresaleDefault": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "预售" ], "summary": "查询转让详情", "parameters": [ { "type": "integer", "description": "商品ID", "name": "goodsid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/models.PresaleDefault" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryAccountInOutApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询充值提现", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "申请起始日期(格式yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "申请截止日期(格式yyyymmdd)", "name": "enddate", "in": "query" }, { "type": "string", "description": "模糊搜索名称", "name": "likename", "in": "query" }, { "type": "integer", "description": "状态 1-待审核 2-审核通过 3-审核拒绝", "name": "applystatus", "in": "query" }, { "type": "integer", "description": "查询类型 1-提现(出金) 2-充值(入金)", "name": "querytype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjAccountOutInApply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryAreaFinanceConfig": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询企业配置表", "parameters": [ { "type": "integer", "description": "机构用户ID 其他做市关系,都设置为 1", "name": "userid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjAreaFinanceConfig" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryBankAccountSign": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询签约银行信息(提现账户管理)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjBankAccountSign" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryBankInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询开户行", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjBankInfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryBrokerApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询经纪人申请", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "userid", "in": "query" }, { "type": "string", "description": "状态 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "name": "filterstatus", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjBrokerApply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryBrokerApplyEx": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询经纪人信息和申请记录", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "userid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjBrokerApplyEx" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryBrokerRewardLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询奖励流水(我的奖励)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjBrokerRewardLog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryContract": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询融资明细(合同)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query" }, { "type": "integer", "description": "scf合同id", "name": "scfcontractid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjContract" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryContractLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询融资明细流水(融资明细详情页中的流水)", "parameters": [ { "type": "integer", "description": "scf合同id", "name": "scfcontractid", "in": "query", "required": true }, { "type": "string", "description": "资金类型(逗号隔开) - 1:首付款 2:尾款 3:利息 4:追加款", "name": "amounttype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjContractLog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryCusBankSignBank": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询托管银行", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjCusBankSignBankEx" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryCustomerInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "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 }, { "type": "integer", "description": "客户类型 1-个人 2-企业", "name": "userinfotype", "in": "query" }, { "type": "string", "description": "客户名称(模糊匹配)", "name": "customername", "in": "query" }, { "type": "string", "description": "昵称(模糊匹配)", "name": "nickname", "in": "query" }, { "type": "integer", "description": "是否包含子级 1-包含", "name": "includesub", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjCustomer" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryGoodsEx": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "交易商品扩展表", "parameters": [ { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Qhjgoodsex" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryMyTeam": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询我的团队", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMyTeamEx" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryMyTeamOrder": { "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": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "交易模式", "name": "trademode", "in": "query" }, { "type": "string", "description": "名称(模糊搜索账户)", "name": "filtername", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjTeamOrder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryParentAreaList": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询所属机构列表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjParentAreaList" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryPayOrder": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询待付款单据", "parameters": [ { "type": "integer", "description": "资金账号id", "name": "accountid", "in": "query", "required": true }, { "type": "integer", "description": "成交单号", "name": "tradeid", "in": "query" }, { "type": "string", "description": "付款标识(可多个,逗号隔开) - 1:未支付 2:已支付 3:已过期 4:已撤销 5:结算过期 6:预售终止", "name": "payflag", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjPayOrder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryPickArea": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询提货门店", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjPickArea" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryPickGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询提货商品", "parameters": [ { "type": "integer", "description": "交易商品id", "name": "goodsid", "in": "query", "required": true }, { "type": "string", "description": "状态(可多选,逗号隔开) - 1:正常 2:停用 3:注销", "name": "status", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjPickGoods" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryRSTriggerLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询定投记录(定投管理/详情/定投记录)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query" }, { "type": "integer", "description": "定投策略id", "name": "regularlystrategyid", "in": "query" }, { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" }, { "type": "string", "description": "名称(模糊搜索账户)", "name": "filtername", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjRSTriggerLog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryRStrategy": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询定投设置(我的定投/历史定投[状态=已终止])", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query" }, { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query" }, { "type": "string", "description": "策略状态(可多选,逗号隔开) - 1:正常 2:暂停 3:终止", "name": "status", "in": "query" }, { "type": "string", "description": "名称(模糊搜索账户)", "name": "filtername", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjRStrategy" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryReckonPriceLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询定投价(结算价)", "parameters": [ { "type": "integer", "description": "商品ID", "name": "goodsid", "in": "query" }, { "type": "string", "description": "交易日 格式(yyyymmdd)", "name": "tradedate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjReckonPriceLog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryScoreLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询积分流水(我的积分)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" }, { "type": "integer", "description": "最近多少条", "name": "lastnum", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjScoreLog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QuerySiteColumnDetail": { "get": { "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询资讯", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjSiteColumnDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryTradeGoodsPickup": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询提货", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "提货状态 1:备货中 2:待取货(自提) 3:已取货(自提) 4:待收货(邮寄) 5:已收货(邮寄) 6:自动收货(邮寄) 7:已拒绝 8:已撤销", "name": "takeorderstatus", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjTradeGoodsPickup" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryUserCollectConfig": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询提现账户设置", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.UserCollectConfig" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Qhj/QueryUserReceiveInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金" ], "summary": "查询收货地址信息", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.UserReceiveInfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjMgr/QueryAccountInOutApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(PCWeb)" ], "summary": "查询充值提现", "parameters": [ { "type": "integer", "description": "查询类型 1-提现(出金) 2-充值(出金)", "name": "querytype", "in": "query", "required": true }, { "type": "integer", "description": "状态 1-待审核 2-审核通过 3-审核拒绝", "name": "applystatus", "in": "query" }, { "type": "string", "description": "申请起始日期(格式yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "申请截止日期(格式yyyymmdd)", "name": "enddate", "in": "query" }, { "type": "string", "description": "模糊搜索名称", "name": "likename", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMgrAccountOutInApply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjMgr/QueryBrokerApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(PCWeb)" ], "summary": "查询经纪人申请", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "userid", "in": "query" }, { "type": "string", "description": "状态 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "name": "filterstatus", "in": "query" }, { "type": "string", "description": "名称(模糊匹配)", "name": "filtername", "in": "query" }, { "type": "integer", "description": "是否包含子级 1-包含", "name": "includesub", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMgrBrokerApply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjMgr/QueryBrokerRewardReport": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(PCWeb)" ], "summary": "查询经纪人奖励报表(废弃)", "parameters": [ { "type": "integer", "description": "所属机构ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "name": "cycletype", "in": "query", "required": true }, { "type": "string", "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD) 全(0)【原值】", "name": "cycletime", "in": "query", "required": true }, { "type": "string", "description": "名称(模糊匹配)", "name": "filtername", "in": "query" }, { "type": "integer", "description": "是否包含子级 1-包含", "name": "includesub", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMgrBrokerRewardReport" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjMgr/QueryContract": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(PCWeb)" ], "summary": "查询融资信息(合同)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query" }, { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query" }, { "type": "string", "description": "名称(模糊搜索账户)", "name": "filtername", "in": "query" }, { "type": "string", "description": "风险级别(逗号隔开) - 1:正常 2:追加货款 3:支付尾款", "name": "risklevel", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMgrContract" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjMgr/QueryCustomerInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(PCWeb)" ], "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 }, { "type": "integer", "description": "客户类型 1-个人 2-企业", "name": "userinfotype", "in": "query" }, { "type": "string", "description": "客户名称(模糊匹配)", "name": "customername", "in": "query" }, { "type": "string", "description": "昵称(模糊匹配)", "name": "nickname", "in": "query" }, { "type": "string", "description": "所属客户经理(模糊匹配)", "name": "brokername", "in": "query" }, { "type": "string", "description": "生日查询(格式 mmdd 或 mm) 只填2位表示月份匹配(mm, 如05 - 5月), 4位表示查月日匹配(mmdd, 如0503 -5月3日)", "name": "birthday", "in": "query" }, { "type": "integer", "description": "是否包含子级 1-包含", "name": "includesub", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMgrCustomer" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjMgr/QueryPickGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(PCWeb)" ], "summary": "查询提货商品", "parameters": [ { "type": "string", "description": "状态(可多选,逗号隔开) - 1:正常 2:停用 3:注销", "name": "status", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMgrPickGoods" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjMgr/QuerySubArea": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(PCWeb)" ], "summary": "查询子机构列表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMgrSubArea" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjMgr/QueryTradeDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(PCWeb)" ], "summary": "查询成交明细", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 1-个人 2-企业", "name": "userinfotype", "in": "query" }, { "type": "integer", "description": "交易模式", "name": "trademode", "in": "query" }, { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query" }, { "type": "string", "description": "名称(模糊搜索账户)", "name": "filtername", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" }, { "type": "integer", "description": "是否包含子级 1-包含", "name": "includesub", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMgrTradeDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjMgr/QueryTradeOrderDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(PCWeb)" ], "summary": "查询委托明细", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 1-个人 2-企业", "name": "userinfotype", "in": "query" }, { "type": "integer", "description": "交易模式", "name": "trademode", "in": "query" }, { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query" }, { "type": "string", "description": "名称(模糊搜索账户)", "name": "filtername", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" }, { "type": "integer", "description": "是否包含子级 1-包含", "name": "includesub", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMgrTradeOrderDetailRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjMgr/QueryTradePayOrder": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(PCWeb)" ], "summary": "查询待付款单", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "付款标识(逗号隔开,如1,2) - 1:未支付 2:已支付 3:已过期 4:已撤销 5:结算过期 6:预售终止", "name": "payflag", "in": "query" }, { "type": "integer", "description": "用户类型 1-个人 2-企业", "name": "userinfotype", "in": "query" }, { "type": "integer", "description": "交易模式", "name": "trademode", "in": "query" }, { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query" }, { "type": "string", "description": "名称(模糊搜索账户)", "name": "filtername", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" }, { "type": "integer", "description": "是否包含子级 1-包含", "name": "includesub", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMgrTradePayOrder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjMgr/QueryTradePosition": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(PCWeb)" ], "summary": "查询持仓汇总", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型 1-个人 2-企业", "name": "userinfotype", "in": "query" }, { "type": "integer", "description": "交易模式", "name": "trademode", "in": "query" }, { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query" }, { "type": "string", "description": "名称(模糊搜索账户)", "name": "filtername", "in": "query" }, { "type": "integer", "description": "是否包含子级 1-包含", "name": "includesub", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMgrPositionRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjSys/QueryAgreementChangeLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(协议和签约信息)" ], "summary": "查询协议配置变更流水", "parameters": [ { "type": "integer", "description": "协议ID", "name": "agreementid", "in": "query" }, { "type": "integer", "description": "协议版本号", "name": "agreementversion", "in": "query" }, { "type": "integer", "description": "协议类型 - 1:注册 2:登录 3:交易", "name": "agreementtype", "in": "query" }, { "type": "string", "description": "协议编号(模糊匹配)", "name": "agreementno", "in": "query" }, { "type": "string", "description": "协议名称(模糊匹配)", "name": "agreementname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjAgreementChangeLog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjSys/QueryAgreementConfig": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(协议和签约信息)" ], "summary": "查询协议配置", "parameters": [ { "type": "integer", "description": "协议ID", "name": "agreementid", "in": "query" }, { "type": "integer", "description": "协议版本号", "name": "agreementversion", "in": "query" }, { "type": "integer", "description": "协议类型 - 1:注册 2:登录 3:交易", "name": "agreementtype", "in": "query" }, { "type": "integer", "description": "是否有效 - 是否有效 - 1:正常 2:停用 3:注销", "name": "isvalid", "in": "query" }, { "type": "string", "description": "协议编号(模糊匹配)", "name": "agreementno", "in": "query" }, { "type": "string", "description": "协议名称(模糊匹配)", "name": "agreementname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjAgreementConfig" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjSys/QueryCustomerSignStatus": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(协议和签约信息)" ], "summary": "查询客户协议签约状态", "parameters": [ { "type": "integer", "description": "客户ID", "name": "userid", "in": "query" }, { "type": "integer", "description": "环节类型 - 1:注册 2:登录 3:购买 4:融资购买 5:定投 6:卖出 99:首次交易", "name": "nodetype", "in": "query" }, { "type": "integer", "description": "商品ID [默认为0, NodeType\u003e=3 的为商品值]", "name": "goodsid", "in": "query" }, { "type": "string", "description": "创建交易日(yyyyMMdd)", "name": "tradedate", "in": "query" }, { "type": "string", "description": "用户名称(模糊匹配)", "name": "username", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjCustomerSignStatus" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjSys/QueryNodeAgreementConfig": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(协议和签约信息)" ], "summary": "查询协议节点配置", "parameters": [ { "type": "integer", "description": "配置id(SEQ_QHJ_NODEAGREEMENTCONFIG)", "name": "configid", "in": "query" }, { "type": "integer", "description": "环节类型 - 1:注册 2:登录 3:购买 4:融资购买 5:定投 6:卖出", "name": "nodetype", "in": "query" }, { "type": "integer", "description": "商品ID [默认为0, NodeType\u003e=3 的为商品值]", "name": "goodsid", "in": "query" }, { "type": "integer", "description": "协议ID", "name": "agreementid", "in": "query" }, { "type": "integer", "description": "协议类型 - 1:注册 2:登录 3:交易", "name": "agreementtype", "in": "query" }, { "type": "integer", "description": "协议版本号", "name": "agreementversion", "in": "query" }, { "type": "string", "description": "协议编号(模糊匹配)", "name": "agreementno", "in": "query" }, { "type": "string", "description": "协议名称(模糊匹配)", "name": "agreementname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjNodeAgreementConfig" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjSys/QueryQhjCustomerSignLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(协议和签约信息)" ], "summary": "查询客户协议签约流水", "parameters": [ { "type": "integer", "description": "流水ID(SEQ_QHJ_CUSTOMERSIGNLOG)", "name": "logid", "in": "query" }, { "type": "integer", "description": "客户ID", "name": "userid", "in": "query" }, { "type": "integer", "description": "环节类型 - 1:注册 2:登录 3:购买 4:融资购买 5:定投 6:卖出", "name": "nodetype", "in": "query" }, { "type": "integer", "description": "商品ID [默认为0, NodeType\u003e=3 的为商品值]", "name": "goodsid", "in": "query" }, { "type": "integer", "description": "协议ID", "name": "agreementid", "in": "query" }, { "type": "string", "description": "用户名称(模糊匹配)", "name": "username", "in": "query" }, { "type": "string", "description": "协议编号(模糊匹配)", "name": "agreementno", "in": "query" }, { "type": "string", "description": "协议名称(模糊匹配)", "name": "agreementname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjCustomerSignLog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/QhjSys/QueryUserNodeCfgAndStatus": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "大连千海金(协议和签约信息)" ], "summary": "查询用户协议节点配置和状态", "parameters": [ { "type": "integer", "description": "客户ID", "name": "userid", "in": "query" }, { "type": "integer", "description": "配置id(SEQ_QHJ_NODEAGREEMENTCONFIG)", "name": "configid", "in": "query" }, { "type": "string", "description": "环节类型(可多个,逗号隔开) - 1:注册 2:登录 3:购买 4:融资购买 5:定投 6:卖出", "name": "nodetype", "in": "query" }, { "type": "integer", "description": "商品ID [默认为0, NodeType\u003e=3 的为商品值]", "name": "goodsid", "in": "query" }, { "type": "integer", "description": "协议ID", "name": "agreementid", "in": "query" }, { "type": "integer", "description": "协议类型 - 1:注册 2:登录 3:交易", "name": "agreementtype", "in": "query" }, { "type": "integer", "description": "协议版本号", "name": "agreementversion", "in": "query" }, { "type": "string", "description": "协议编号(模糊匹配)", "name": "agreementno", "in": "query" }, { "type": "string", "description": "协议名称(模糊匹配)", "name": "agreementname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.QhjUserNodeCfgAndStatus" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Quote/GetTouristQuoteDay": { "get": { "produces": [ "application/json" ], "tags": [ "行情服务" ], "summary": "获取游客商品盘面信息", "parameters": [ { "type": "string", "description": "商品代码列表,格式:1,2,3", "name": "goodsCodes", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/quote.QueryQuoteDayRsp" } } }, "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: 日线 12:周线 13:月线 14:年线", "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/QueryHistoryTikDatas": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "行情服务" ], "summary": "查询行情Tik数据", "parameters": [ { "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.HistoryTikData" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Quote/QueryQuoteDay": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "行情服务" ], "summary": "获取商品盘面信息", "parameters": [ { "type": "string", "description": "此参数不填则查所有;商品代码列表,格式:CU2102,CU2103,AL2107", "name": "goodsCodes", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/quote.QueryQuoteDayRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Quote/QueryTSData": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "行情服务" ], "summary": "分时图数据查询", "parameters": [ { "type": "string", "description": "商品代码", "name": "goodsCode", "in": "query", "required": true }, { "type": "integer", "description": "关联市场ID", "name": "makretId", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/quote.QueryTSDataRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Report/QueryReportBankAccountOutInLog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "报表" ], "summary": "报表 - 交易商结算单 - 出入金明细", "parameters": [ { "type": "integer", "description": "资金账户", "name": "accountid", "in": "query", "required": true }, { "type": "string", "description": "查询日期 日报表-yyyyMMdd 月报表-yyyyMM", "name": "tradedate", "in": "query", "required": true }, { "type": "integer", "description": "报表类型 日报表-1 月报表-2", "name": "reporttype", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ReportBankAccountOutInLog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Report/QueryReportMonthTaaccount": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "报表" ], "summary": "报表 - 交易商结算单 - 资金信息(月)", "parameters": [ { "type": "integer", "description": "资金账户", "name": "accountid", "in": "query", "required": true }, { "type": "string", "description": "月份(yyyyMM)", "name": "cycletime", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Reporttaaccount" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Report/QueryReportReckonDayPosition": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "报表" ], "summary": "报表 - 交易商结算单 - 持仓汇总", "parameters": [ { "type": "integer", "description": "资金账户", "name": "accountid", "in": "query", "required": true }, { "type": "string", "description": "查询日期 日报表-yyyyMMdd 月报表-yyyyMM", "name": "reckondate", "in": "query", "required": true }, { "type": "integer", "description": "报表类型 日报表-1 月报表-2", "name": "reporttype", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ReportReckonDayPosition" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Report/QueryReportReckonDayTaaccount": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "报表" ], "summary": "报表 - 交易商结算单 - 资金信息(日)", "parameters": [ { "type": "integer", "description": "资金账户", "name": "accountid", "in": "query", "required": true }, { "type": "string", "description": "日照日期(yyyyMMdd)", "name": "reckondate", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ReportReckondaytaaccount" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Report/QueryReportTradeDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "报表" ], "summary": "报表 - 交易商结算单 - 成交明细", "parameters": [ { "type": "integer", "description": "资金账户", "name": "accountid", "in": "query", "required": true }, { "type": "string", "description": "查询日期 日报表-yyyyMMdd 月报表-yyyyMM", "name": "histradedate", "in": "query", "required": true }, { "type": "integer", "description": "报表类型 日报表-1 月报表-2", "name": "reporttype", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.ReportTradeDetail" } } }, "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/GetGtwithholdsigninfo": { "get": { "produces": [ "application/json" ], "tags": [ "资金账户" ], "summary": "获取代扣签约信息表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Gtwithholdsigninfo" } } }, "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": "integer", "description": "分页标志 0-page从0开始 1-page从1开始", "name": "pageflag", "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/QueryGtwithholddepositapply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "资金账户" ], "summary": "查询代扣入金申请表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" }, { "type": "integer", "description": "批扣结果 - 0-扣费成功、1-扣费失败", "name": "billresult", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Gtwithholddepositapply" } } }, "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": "integer", "description": "分页标志 0-page从0开始 1-page从1开始", "name": "pageflag", "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" } } } } }, "/TaAccount/QueryRelatedTaAccount": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "资金账户" ], "summary": "查询关联资金账户信息", "parameters": [ { "type": "integer", "description": "关联UserID", "name": "relateduserid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.RelatedTaAccount" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tencent/CreateConsoleLoginUrl": { "post": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "腾讯电子签" ], "summary": "创建电子签控制台登录链接", "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tencent/CreateFlowByTemplateDirectly": { "post": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "腾讯电子签" ], "summary": "通过合同模板名称直接发起签署流程", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/tencent.CreateFlowByTemplateDirectlyReq" } } ], "responses": { "200": { "description": "出参", "schema": { "allOf": [ { "$ref": "#/definitions/app.Response" }, { "type": "object", "properties": { "Data": { "$ref": "#/definitions/tencent.CreateFlowByTemplateDirectlyRsp" } } } ] } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tencent/GetFlowStatus": { "get": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "腾讯电子签" ], "summary": "获取合同状态", "parameters": [ { "type": "string", "description": "合同编号", "name": "contractno", "in": "query", "required": true } ], "responses": { "200": { "description": "记录状态 - 1:未签署 2:签署中 3:已签署 4:签署拒绝", "schema": { "type": "integer" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tencent/InitMdUserSwapProtocol": { "post": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "腾讯电子签" ], "summary": "按用户ID和机构ID创建机构交易协议申请信息", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/tencent.InitTencentESSReq" } } ], "responses": { "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tencent/InitTencentESS": { "post": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "腾讯电子签" ], "summary": "按用户ID和机构ID创建腾讯电子签业务信息", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/tencent.InitTencentESSReq" } } ], "responses": { "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tencent/QianNotice": { "post": { "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "腾讯电子签" ], "summary": "腾讯电子签回调接口", "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tencent/QueryUsereSignRecords": { "get": { "security": [ { "ApiKeyAuth": [] } ], "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "腾讯电子签" ], "summary": "查询用户电子签记录表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userId", "in": "query", "required": true }, { "type": "integer", "description": "所属会员ID", "name": "memberUserId", "in": "query", "required": true }, { "type": "integer", "description": "记录ID", "name": "recordId", "in": "query" }, { "type": "integer", "description": "模板配置ID", "name": "templateConfigId", "in": "query" }, { "type": "integer", "description": "模板类型 - 1:实名认证 2:开户协议 3:日结算单 4:交易协议", "name": "templatetype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Useresignrecord" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tjmd/QueryQuoteGoodsList": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "用户类型必传, 查掉期报价列表 marketids=掉期市场id", "produces": [ "application/json" ], "tags": [ "天津麦顿" ], "summary": "查询掉期报价列表", "parameters": [ { "type": "integer", "description": "用户类型", "name": "usertype", "in": "query", "required": true }, { "type": "string", "description": "市场id, 格式 1,2,3", "name": "marketids", "in": "query" }, { "type": "integer", "description": "商品组id", "name": "goodsgroupid", "in": "query" }, { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.TjmdQuoteGoods" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tjmd/QueryTjmdHolderDetailTradeInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "天津麦顿" ], "summary": "掉期商品订单详情(交易确认书)", "parameters": [ { "type": "string", "description": "成交单号", "name": "tradeid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.TjmdHolderDetailTradeInfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tjmd/QueryTjmdMarketSection": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "天津麦顿" ], "summary": "查询市场板块", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.TjmdMarketSection" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tjmd/QueryTjmdTodayAccountMargin": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "天津麦顿" ], "summary": "查询今日账户保证金配置", "parameters": [ { "type": "string", "description": "市场id", "name": "marketid", "in": "query" }, { "type": "string", "description": "商品id", "name": "goodsid", "in": "query" }, { "type": "string", "description": "资金账号", "name": "accountid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.TjmdTodayAccountMargin" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tjmd/QueryTjmdTradeOrderDetail": { "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": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户类型", "name": "usertype", "in": "query", "required": true }, { "type": "string", "description": "市场id, 格式 1,2,3", "name": "marketids", "in": "query" }, { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query", "required": true }, { "type": "integer", "description": "买卖方向 0-买 1-卖", "name": "buyorsell", "in": "query", "required": true }, { "type": "integer", "description": "所属会员ID,传入后会将此机构的单放在最前面,主要给麦顿使用", "name": "memberuserid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.TjmdTradeOrderDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Tjmd/QueryTjmdTransferApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "天津麦顿" ], "summary": "查询掉期协议单", "parameters": [ { "type": "integer", "description": "类型 1-我的申请 2-对方申请", "name": "applytype", "in": "query", "required": true }, { "type": "string", "description": "市场id, 格式 1,2,3", "name": "marketids", "in": "query" }, { "type": "string", "description": "资金账号, 格式 25000000001,25000000003", "name": "accountids", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.TjmdTransferApply" } } }, "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 }, { "type": "string", "description": "联系电话", "name": "contactNum", "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/GetTodayAccountConfigInfo": { "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/models.GetTodayAccountConfigInfoRsp" } }, "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/LoginQuery": { "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/user.LoginQueryRsp" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/QueryMdUserSwapProtocol": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "获取用户掉期协议签署表", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userId", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Mduserswapprotocol" } } }, "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 }, { "type": "boolean", "description": "是否解密", "name": "isDecrypt", "in": "query" } ], "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" } } } } }, "/User/UpdateUserHeadUrl": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "更新用户头像", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/user.UpdateUserHeadUrlReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/User/UpdateUserInfoWechatAndEmail": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "用户信息" ], "summary": "更新用户微信和邮箱", "parameters": [ { "description": "入参", "name": "data", "in": "body", "required": true, "schema": { "$ref": "#/definitions/user.UpdateUserInfoWechatAndEmailReq" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WRTrade/GetAllDeliveryGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易", "仓单贸易" ], "summary": "获取带仓单分类的种类信息", "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/InsertXhcpSellBackApply": { "post": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "新增回收申请(新会陈皮)", "parameters": [ { "description": "回收申请", "name": "jsonBody", "in": "body", "required": true, "schema": { "$ref": "#/definitions/models.XhcpSellBackApplyEx" } } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/app.Response" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryDeliveryGoodsSection": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询板块(分类)", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrDeliveryGoodsSection" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryFaProductDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "页面 买卖大厅 -\u003e 选择融资方案", "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询融资产品列表", "parameters": [ { "type": "integer", "description": "仓单要素id", "name": "wrfactortypeid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrFAProductDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryFilterItem": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询筛选框列表 - 作废(以前给pcweb简单筛选框用的,后来改版了)", "parameters": [ { "type": "string", "description": "类型(可多选,逗号隔开) 1-品种 2-品类(商品) 3-仓库", "name": "itype", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrFilterItem" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryFtDeliveryGoods": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询品种品类筛选框列表", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrFtDeliveryGoods" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryHoldLB": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "页面 现货仓单-\u003e现货明细? , 表名叫仓单持有记录, 有挂单特有维度,为防误解汇总也有相关维度, 新写接口,不跟汇总合在一起了。", "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询仓单持有记录", "parameters": [ { "type": "integer", "description": "资金账号", "name": "accountid", "in": "query", "required": true }, { "type": "integer", "description": "仓库id", "name": "warehouseid", "in": "query" }, { "type": "integer", "description": "品种id", "name": "deliverygoodsid", "in": "query" }, { "type": "integer", "description": "品类id", "name": "wrstandardid", "in": "query" }, { "type": "integer", "description": "仓单要素id", "name": "wrfactortypeid", "in": "query" }, { "type": "string", "description": "商品要素项名称模糊匹配, 逗号隔开, 如 产地1,品牌1,规格12mm", "name": "dgitemname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrHoldLB" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryOrderQuote": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "仓单交易 wrfactortypeid 唯一确定1条记录, 仓单预售 wrfactortypeid + deliverymonth 唯一确定1条记录", "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询大厅行情列表", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "仓单贸易市场id", "name": "marketid", "in": "query" }, { "type": "integer", "description": "价格方式 - 1:固定价 2-浮动价", "name": "wrpricetype", "in": "query", "required": true }, { "type": "integer", "description": "0:仓单预售 1:仓单贸易", "name": "haswr", "in": "query" }, { "type": "string", "description": "商品要素项名称模糊匹配, 逗号隔开, 如 产地1,品牌1,规格12mm", "name": "dgitemname", "in": "query" }, { "type": "integer", "description": "仓库id(筛选条件)", "name": "warehouseid", "in": "query" }, { "type": "integer", "description": "品种id", "name": "deliverygoodsid", "in": "query" }, { "type": "integer", "description": "品类id", "name": "wrstandardid", "in": "query" }, { "type": "integer", "description": "品牌id(dgfactoryitemid)", "name": "brandid", "in": "query" }, { "type": "integer", "description": "年份id(dgfactoryitemid)", "name": "yearsid", "in": "query" }, { "type": "string", "description": "仓单要素id", "name": "wrfactortypeid", "in": "query" }, { "type": "string", "description": "交收月(yyyy-mm) 仓单预售填写", "name": "deliverymonth", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrOrderQuote" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryOrderQuoteDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询买卖大厅", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "仓单贸易市场id", "name": "marketid", "in": "query" }, { "type": "integer", "description": "价格方式 - 1:固定价 2-浮动价", "name": "wrpricetype", "in": "query", "required": true }, { "type": "integer", "description": "0:仓单预售 1:仓单贸易", "name": "haswr", "in": "query" }, { "type": "integer", "description": "仓单要素id", "name": "wrfactortypeid", "in": "query", "required": true }, { "type": "integer", "description": "期货商品id(浮动价方式时填)", "name": "goodsid", "in": "query" }, { "type": "integer", "description": "买卖方向 0-买 1-卖", "name": "buyorsell", "in": "query", "required": true }, { "type": "string", "description": "交收月(yyyy-mm) 查仓单预售的买卖大厅时填写", "name": "deliverymonth", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrOrderQuoteDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryOrderQuoteMyq": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询贸易圈挂牌大厅", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "仓单贸易市场id", "name": "marketid", "in": "query" }, { "type": "integer", "description": "0:仓单预售 1:仓单贸易", "name": "haswr", "in": "query" }, { "type": "integer", "description": "买卖方向 0-买 1-卖", "name": "buyorsell", "in": "query", "required": true }, { "type": "integer", "description": "品种id", "name": "deliverygoodsid", "in": "query" }, { "type": "integer", "description": "品类id", "name": "wrstandardid", "in": "query" }, { "type": "string", "description": "交收月(yyyy-mm) 仓单预售填写", "name": "deliverymonth", "in": "query" }, { "type": "string", "description": "商品要素项名称模糊匹配, 逗号隔开, 如 产地1,品牌1,规格12mm", "name": "dgitemname", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrQuoteOrderMyq" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryPerformancePlan": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询履约信息", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "买卖方向 0-买 1-卖", "name": "buyorsell", "in": "query", "required": true }, { "type": "string", "description": "履约状态(可多个,逗号隔开) 1:待激活 2:正常 3:处理错误 4:违约待处理 5:违约处理中 6:完成 7.违约已完成 8:释放冻结失败 9:超时待处理 10:超时关闭", "name": "status", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrPerformancePlan" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryPermancePlanTmp": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "返回指定用户的模板和公共模板(用户id为空)\n注意:天津麦顿客户 填写marketid参数,其它参数不用填;其它客户不用填marketid字段", "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询履约模板", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query" }, { "type": "string", "description": "模板类型(逗号隔开), 0:通用 1:交割 2:仓单贸易 3:预售集采 7:竞拍-竞价式 8:竞拍-大宗式 9:荷兰式--失效枚举:4:竞拍-降价式 (无仓单) 5:挂牌期权 6:竞拍-降价式", "name": "tmptype", "in": "query" }, { "type": "integer", "description": "是否包含公共模板(用户id为空的) 1-包含", "name": "includepub", "in": "query" }, { "type": "integer", "description": "市场id(天津麦顿指定此参数,其它不用)", "name": "marketid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrPerformanceTemplateEx" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QuerySiteColumnConfig": { "get": { "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询资讯栏目配置", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "栏目类型 - 1:行情资讯 10:会员服务 30:关于我们 100:核心企业栏目-百色", "name": "columntype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Sitecolumnconfig" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QuerySiteColumnDetail": { "get": { "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询资讯", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "所属栏目id", "name": "columnid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrSiteColumnDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QuerySpotGroupTradeSum": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询指数", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrSpotGroupTradeSumEx" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QuerySpotGroupTradeSumDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "查询的结果将会按日期 从小到大 排序", "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询指数详细(价格走势图)", "parameters": [ { "type": "integer", "description": "现货商品id", "name": "deliverygoodsid", "in": "query", "required": true }, { "type": "integer", "description": "查询最新多少条记录(如不填写此项, 默认查30条)", "name": "lastnum", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrSpotGroupTradeSumDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrAverageTradePrice": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询成交价(历史走势)", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "0:仓单预售 1:仓单贸易", "name": "haswr", "in": "query", "required": true }, { "type": "integer", "description": "仓单要素id", "name": "wrfactortypeid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrAverageTradePrice" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrBrandAndYears": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询品牌和年份", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrBrandAndYears" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrBsGoodsInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "合约交易/买卖大厅/详情", "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询合约交易买卖大厅详情", "parameters": [ { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrBsGoodsInfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrBuybackDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询仓单回购明细", "parameters": [ { "type": "integer", "description": "融资合同id", "name": "scfcontractid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrBuybackDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrClientAdSpaceConfig": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询固定广告配置", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrClientAdSpaceConfig" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrDeliveryAvalidHoldLB": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询合约交收可点选仓单", "parameters": [ { "type": "integer", "description": "资金账号", "name": "accountid", "in": "query", "required": true }, { "type": "integer", "description": "商品id", "name": "goodsid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrDeliveryAvalidHoldLB" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrDeliveryDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询交收", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "资金账号id", "name": "accountid", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrDeliveryDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrDraftUserInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询实名认证信息", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "用户状态 1:正常 2:注销", "name": "userstatus", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrDraftUserInfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrFactorTypeInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询仓单要素详细信息", "parameters": [ { "type": "integer", "description": "仓单要素id", "name": "wrfactortypeid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrFactorTypeInfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrFactorTypeInfoEx": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询仓单要素详细信息列表项", "parameters": [ { "type": "integer", "description": "仓单要素id", "name": "wrfactortypeid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrTypeItem" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrFinanceBuyApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "页面 融资信息+ / 申请单", "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询融资购买申请", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrFinanceBuyApply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrFriendApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询好友申请记录", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrFriendApply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrGoodsInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询仓单商品信息", "parameters": [ { "type": "integer", "description": "仓单贸易市场id", "name": "marketid", "in": "query" }, { "type": "integer", "description": "0:仓单预售 1:仓单贸易", "name": "haswr", "in": "query", "required": true }, { "type": "integer", "description": "仓单要素id", "name": "wrfactortypeid", "in": "query", "required": true }, { "type": "integer", "description": "履约模板id(如果指定了履约模板id,履约信息将按模板id查, 否则去市场配置表中找模板)", "name": "tmplateid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrGoodsInfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrMarketTradeConfig": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询市场交易参数配置", "parameters": [ { "type": "integer", "description": "市场id", "name": "marketid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrMarketTradeConfig" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrOrderDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "页面 现货仓单 | 预售仓单 -\u003e 委托单", "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询仓单委托单", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "仓单贸易市场id", "name": "marketid", "in": "query" }, { "type": "integer", "description": "0:仓单预售 1:仓单贸易", "name": "haswr", "in": "query", "required": true }, { "type": "integer", "description": "是否仅查可撤单据 1:可撤 注:此参数仅对当前记录有效, 且不含47模式市场", "name": "bcancel", "in": "query" }, { "type": "integer", "description": "仓单贸易类型 - 1:挂牌 2:摘牌 3:提货卖(文化中国) 4:提货买(文化中国)", "name": "wrtradetype", "in": "query" }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrOrderDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrOutInApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询提货申请", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrOutInApply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrPerformancePlanStep": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询履约信息详情", "parameters": [ { "type": "integer", "description": "履约计划id(performanceplanid)", "name": "planid", "in": "query", "required": true }, { "type": "integer", "description": "当前步骤id", "name": "curstepid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrPerformancePlanStep" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrPerformanceStepType": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询履约步骤枚举", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrPerformanceStepType" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrPosition": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "页面 现货仓单-\u003e现货汇总/库存汇总; 预售仓单-\u003e订单汇总", "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询现货(预售)仓单持仓", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "查询类型 1-现货汇总 2-库存汇总(订单汇总)", "name": "querytype", "in": "query", "required": true }, { "type": "integer", "description": "0:仓单预售 1:仓单贸易", "name": "haswr", "in": "query", "required": true }, { "type": "string", "description": "商品要素项名称模糊匹配, 逗号隔开, 如 产地1,品牌1,规格12mm", "name": "dgitemname", "in": "query" }, { "type": "integer", "description": "仓库id(筛选条件)", "name": "warehouseid", "in": "query" }, { "type": "integer", "description": "品种id", "name": "deliverygoodsid", "in": "query" }, { "type": "integer", "description": "品类id", "name": "wrstandardid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrPosition" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrPreSaleInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询新品发布", "parameters": [ { "type": "integer", "description": "市场id", "name": "marketid", "in": "query" }, { "type": "string", "description": "预售状态(逗号隔开,如1,2,3) 1:未开始 2:进行中 3:已结束 4:已关闭", "name": "presalestatus", "in": "query" }, { "type": "integer", "description": "摇号标识 - 0:未摇号 1:已摇号", "name": "lotteryflag", "in": "query" }, { "type": "integer", "description": "最近多少条记录(按创建时间倒序)", "name": "lastnum", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrPreSaleInfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrReckonSpotGoodsTradeSum": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询价格走势", "parameters": [ { "type": "integer", "description": "市场id", "name": "marketid", "in": "query", "required": true }, { "type": "integer", "description": "现货商品id", "name": "wrstandardid", "in": "query", "required": true }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" }, { "type": "integer", "description": "最近多少条记录(按交易日倒序)", "name": "lastnum", "in": "query" }, { "type": "boolean", "description": "是否今日", "name": "istoday", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrReckonSpotGoodsTradeSum" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrScfContract": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询仓单贸易融资合同", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "融资合同id", "name": "scfcontractid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrScfContract" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrScfContractInterest": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询融资合同费用明细", "parameters": [ { "type": "integer", "description": "融资合同id", "name": "scfcontractid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrScfContractInterest" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrSearchUser": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询用户", "parameters": [ { "type": "string", "description": "用户名称(模糊匹配)", "name": "username", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrSearchUser" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrSpecialMatchOrder": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "页面 现货仓单 | 预售仓单 -\u003e 指定成交", "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询指定成交", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "仓单贸易市场id", "name": "marketid", "in": "query" }, { "type": "integer", "description": "0:仓单预售 1:仓单贸易", "name": "haswr", "in": "query", "required": true }, { "type": "integer", "description": "1:指定好友(贸易圈) 2:指定对手 - [挂牌]", "name": "isspecified", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrSpecialMatchOrder" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrStandardFactoryItem": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询品类要素定义项", "parameters": [ { "type": "integer", "description": "品类id", "name": "wrstandardid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrStandardFactoryItemEx" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrTradeBargainApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "description": "1.页面 挂单/议价单, 只需传单号就行 \u003cbr\u003e2.页面 议价-\u003e我的议价 参数 userid=登录userid \u003cbr\u003e3.页面 议价-\u003e对方议价 填写matchuserid=登录用户id", "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询议价单", "parameters": [ { "type": "integer", "description": "议价人id(摘牌方)", "name": "userid", "in": "query" }, { "type": "integer", "description": "挂牌方id(查对方议价时,填写此项)", "name": "matchuserid", "in": "query" }, { "type": "integer", "description": "关联委托单id", "name": "wrtradeorderid", "in": "query" }, { "type": "integer", "description": "0:仓单预售 1:仓单贸易", "name": "haswr", "in": "query", "required": true }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WRTradeBargainApply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrTradeDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询仓单成交明细", "parameters": [ { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" }, { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "仓单贸易市场id", "name": "marketid", "in": "query" }, { "type": "integer", "description": "0:仓单预售 1:仓单贸易", "name": "haswr", "in": "query", "required": true }, { "type": "string", "description": "开始交易日(yyyymmdd)", "name": "begindate", "in": "query" }, { "type": "string", "description": "结束交易日(yyyymmdd)", "name": "enddate", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrTradeDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrTradeOrderDetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "合约交易v2" ], "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": "integer", "description": "买卖方向 0-买 1-卖", "name": "buyorsell", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrTradeOrderDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrTradeQuote": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询仓单贸易成交行情", "parameters": [ { "type": "integer", "description": "现货商品id", "name": "wrstandardid", "in": "query", "required": true }, { "type": "string", "description": "开始日期(yyyymmdd)", "name": "begindate", "in": "query", "required": true }, { "type": "string", "description": "结束日期(yyyymmdd)", "name": "enddate", "in": "query", "required": true }, { "type": "integer", "description": "市场id", "name": "marketid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Wrtradetradequote" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrUserFriend": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询我的朋友", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "新朋友userid, 如果填写了此项则查找新朋友", "name": "newuserid", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrUserFriend" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryWrUserReceiptInfo": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询发票信息", "parameters": [ { "type": "integer", "description": "用户id", "name": "userid", "in": "query" }, { "type": "integer", "description": "发票类型 - 1:个人 2:企业", "name": "receipttype", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.WrUserReceiptInfo" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/WrTrade2/QueryXhcpSellBackApply": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "仓单贸易v2" ], "summary": "查询我的回收申请(新会陈皮)", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Xhcpsellbackapply" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/ZJ/GetBankTip": { "get": { "produces": [ "application/json" ], "tags": [ "中江" ], "summary": "获取中江网银端出入金提示信息", "responses": { "200": { "description": "OK", "schema": { "type": "string" } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/ZJ/GetCusBankChannels": { "get": { "produces": [ "application/json" ], "tags": [ "中江" ], "summary": "获取中江出入金渠道显示列表", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "type": "string" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Zhongrong/GetUserInfo": { "get": { "consumes": [ "application/json" ], "produces": [ "application/json" ], "tags": [ "中融" ], "summary": "登录账号、手机号精确查询用户", "parameters": [ { "type": "integer", "description": "登录账号或手机号", "name": "param", "in": "query", "required": true } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/zhongrong.GetUserInfoRsp" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Zhongrong/QueryInTradePositionTransfer": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "中融" ], "summary": "获取持仓过户申请表信息 - 我的转入", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.InTradepositiontransfer" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/Zhongrong/QueryOutTradepositiontransfer": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "中融" ], "summary": "获取持仓过户申请表信息 - 我的转出", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.OutTradepositiontransfer" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/sbyj/GetMyOrders": { "get": { "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" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.RedisTradeHolderDetailEx" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/sbyj/GetTouristGoods": { "get": { "produces": [ "application/json" ], "tags": [ "水贝亿爵" ], "summary": "获取水贝亿爵游客商品列表", "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.TouristGoods" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/sbyj/QueryMyDeliveryofflinedetail": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "水贝亿爵" ], "summary": "查询我的交收-订单明细", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "交收单号(905+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "name": "deliveryorderid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MyDeliveryofflinedetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/sbyj/QueryMyDeliveryofflineoperatelog": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "水贝亿爵" ], "summary": "查询我的交收-操作明细", "parameters": [ { "type": "string", "description": "交收单号(905+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "name": "deliveryorderid", "in": "query", "required": true }, { "type": "integer", "description": "操作类型 - 1:交收流程 2:付款流水", "name": "operatetype", "in": "query" }, { "type": "integer", "description": "付款方式 - 1:线上支付2:线下支付 - 枚举deliveryPayMode", "name": "deliverypaymode", "in": "query" }, { "type": "integer", "description": "确认状态 - 1:未确认 2:已确认 - 枚举confirmStatus", "name": "confirmstatus", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MyDeliveryofflineoperatelog" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/sbyj/QueryMyTradegoodsdeliveryoffline": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "水贝亿爵" ], "summary": "查询我的交收", "parameters": [ { "type": "integer", "description": "用户ID", "name": "userid", "in": "query", "required": true }, { "type": "string", "description": "格式:1,2,3 交收单状态2(52模式使用) - 1:待审核 2:待确认 3:待付款 4:付款中 5:已完成付款 6:处理中 20:交收完成 21:审核拒绝 22:确认过期 23:付款过期 24:财务撤销 -- 枚举deliveryStatus", "name": "status", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.MyTradegoodsdeliveryoffline" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/sbyj/QueryTradeCloseDetails": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "水贝亿爵" ], "summary": "查询我的终止订单", "parameters": [ { "type": "integer", "description": "资金账户", "name": "accountid", "in": "query", "required": true }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.TradeCloseDetail" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } }, "/sbyj/QueryTradeHolderDetailEx": { "get": { "security": [ { "ApiKeyAuth": [] } ], "produces": [ "application/json" ], "tags": [ "水贝亿爵" ], "summary": "查询我的订单", "parameters": [ { "type": "integer", "description": "资金账户", "name": "accountid", "in": "query", "required": true }, { "type": "string", "description": "交易日(yyyyMMdd)", "name": "tradedate", "in": "query" }, { "type": "integer", "description": "商品ID", "name": "goodsid", "in": "query" }, { "type": "integer", "description": "持仓数量", "name": "holderqty", "in": "query" }, { "type": "integer", "description": "页码", "name": "page", "in": "query" }, { "type": "integer", "description": "每页条数", "name": "pagesize", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "type": "array", "items": { "$ref": "#/definitions/models.Tradeholderdetailex" } } }, "500": { "description": "Internal Server Error", "schema": { "$ref": "#/definitions/app.Response" } } } } } }, "definitions": { "app.Response": { "type": "object", "properties": { "code": { "type": "integer" }, "data": {}, "msg": { "type": "string" }, "page": { "description": "页码", "type": "integer" }, "pagesize": { "description": "每页条数", "type": "integer" }, "total": { "description": "总条数", "type": "integer" } } }, "asign.APIAddEnterpriseUserReq": { "type": "object", "required": [ "account" ], "properties": { "account": { "description": "用户唯一识别码(可用证件号、手机号等具有唯一属性的标识作为参数传递)", "type": "string" }, "companyName": { "description": "企业名称", "type": "string" }, "contactIdCard": { "description": "联系人身份证号(与企业的法定代表人可以是同一个人)", "type": "string" }, "contactName": { "description": "联系人姓名(与企业的法定代表人可以是同一个人)", "type": "string" }, "creditCode": { "description": "企业证件号", "type": "string" }, "creditType": { "description": "企业证件类型, 不传默认为1; 1:统一社会信用代码 2:表示其他证件类型", "type": "integer" }, "idCard": { "description": "法人身份证、台胞证、港澳通行证等证件号", "type": "string" }, "idCardType": { "description": "证件类型, 不传默认为1; 1:居民身份证 2:台湾居民来往大陆通行证 3:港澳居民来往内地通行证等...", "type": "integer" }, "isNotice": { "description": "用户发起合同或需要签署时是否进行短信通知: 0-否(默认), 1-是", "type": "integer" }, "isSignPwdNotice": { "description": "是否将签约密码以短信形式通知用户: 0-不通知(默认), 1-通知", "type": "integer" }, "mobile": { "description": "签约手机,该手机号将用于企业用户合同签署时短信验证,请确保真实有效", "type": "string" }, "name": { "description": "企业法人姓名", "type": "string" }, "serialNo": { "description": "实名认证流水号(若您希望不传此值,由您自行完成认证。请联系商务人员开通权限)", "type": "string" }, "signPwd": { "description": "签约密码明文,如果为空我方将随机生成签约密码(当签约方式为“签约密码签约”时会使用到,可通过重置接口修改)", "type": "string" } } }, "asign.APIAddUserRsp": { "type": "object", "required": [ "sealNo" ], "properties": { "sealNo": { "description": "生成默认印章编号", "type": "string" } } }, "asign.APIBankCard4Rsp": { "type": "object", "properties": { "result": { "description": "认证结果 0.暂无结果/认证中 1.成功 2.失败", "type": "integer" }, "serialNo": { "description": "认证流水号", "type": "string" }, "type": { "description": "认证类型", "type": "string" } } }, "asign.APICaptchaResendReq": { "type": "object", "required": [ "serialNo" ], "properties": { "serialNo": { "description": "认证流水号", "type": "string" } } }, "asign.APICaptchaVerifyReq": { "type": "object", "required": [ "captcha", "serialNo" ], "properties": { "captcha": { "description": "短信验证码", "type": "string" }, "serialNo": { "description": "认证流水号", "type": "string" } } }, "asign.APICaptchaVerifyRsp": { "type": "object", "properties": { "result": { "description": "认证结果 0.暂无结果/认证中 1.成功 2.失败", "type": "integer" }, "serialNo": { "description": "认证流水号", "type": "string" }, "type": { "description": "认证类型", "type": "string" } } }, "asign.APICompanyBankCard4Req": { "type": "object", "required": [ "bankCard", "companyName", "creditCode", "idCardNo", "mobile", "realName" ], "properties": { "bankCard": { "description": "法人银行卡号(仅限印有“银联”字样的银行卡)", "type": "string" }, "companyName": { "description": "企业名称", "type": "string" }, "creditCode": { "description": "社会统一信用代码", "type": "string" }, "idCardNo": { "description": "法人身份证号", "type": "string" }, "mobile": { "description": "法人手机号(限中国大陆11位手机号)", "type": "string" }, "realName": { "description": "法人姓名", "type": "string" } } }, "asign.APIGetUserReq": { "type": "object", "properties": { "account": { "description": "用户唯一识别码", "type": "string" }, "creditCode": { "description": "社会统一信用代码", "type": "string" }, "idCard": { "description": "证件号码", "type": "string" } } }, "asign.BankCard4Req": { "type": "object", "required": [ "type", "userId" ], "properties": { "company": { "description": "企业法人银行卡四要素,实体类型为企业时必填", "$ref": "#/definitions/asign.CompanyBankCard4" }, "person": { "description": "个人银行卡四要素,实体类型为个人时必填", "$ref": "#/definitions/asign.PersonBankCard4" }, "type": { "description": "实体类型 1:个人 2:企业", "type": "integer" }, "userId": { "description": "用户ID", "type": "integer" } } }, "asign.BankCard4Rsp": { "type": "object", "properties": { "serialNo": { "description": "认证流水号", "type": "string" } } }, "asign.CaptchaResendReq": { "type": "object", "properties": { "serialNo": { "description": "认证流水号", "type": "string" }, "timeStamp": { "description": "时间戳,可不传(S1016)", "type": "string" } } }, "asign.CaptchaVerifyReq": { "type": "object", "required": [ "captcha", "serialNo", "type", "userId" ], "properties": { "captcha": { "description": "短信验证码", "type": "string" }, "serialNo": { "description": "认证流水号", "type": "string" }, "type": { "description": "实体类型 1:个人 2:企业", "type": "integer" }, "userId": { "description": "用户ID", "type": "integer" } } }, "asign.CompanyBankCard4": { "type": "object", "properties": { "bankCard": { "description": "法人银行卡号(仅限印有“银联”字样的银行卡)", "type": "string" }, "companyName": { "description": "企业名称", "type": "string" }, "creditCode": { "description": "社会统一信用代码", "type": "string" }, "idCardNo": { "description": "法人身份证号", "type": "string" }, "idCardPhoto": { "description": "营业执照", "type": "string" }, "mobile": { "description": "法人手机号(限中国大陆11位手机号)", "type": "string" }, "realName": { "description": "法人姓名", "type": "string" } } }, "asign.CreateContractReq": { "type": "object", "required": [ "recordId" ], "properties": { "recordId": { "description": "用户电子签记录表记录ID", "type": "integer" } } }, "asign.CreateContractRsp": { "type": "object", "properties": { "signUrl": { "description": "合同签署链接", "type": "string" } } }, "asign.CreateSealReq": { "type": "object", "required": [ "account" ], "properties": { "IsDefault": { "description": "是否为默认印章:1 - 是,0 - 否", "type": "integer" }, "account": { "description": "用户唯一识别码", "type": "string" }, "base64ImageStr": { "description": "base64格式的印模图片", "type": "string" }, "sealName": { "description": "印章抬头文字(60字符以内)【注】印章下方横向展示的文字,例如“合同专用章”等。若不显示文字可传空格", "type": "string" } } }, "asign.PersonBankCard4": { "type": "object", "properties": { "bankCard": { "description": "银行卡号(仅限印有“银联”字样的银行卡)", "type": "string" }, "bankId": { "description": "银行编码", "type": "string" }, "idCardNo": { "description": "身份证号", "type": "string" }, "idCardPhoto": { "description": "证件照正面", "type": "string" }, "idCardPhotoBackURL": { "description": "证件照背面", "type": "string" }, "mobile": { "description": "手机号码(限中国大陆11位手机号)", "type": "string" }, "realName": { "description": "真实姓名", "type": "string" } } }, "asign.SyncContractStatusReq": { "type": "object", "required": [ "recordId" ], "properties": { "recordId": { "description": "用户电子签记录表记录ID", "type": "integer" } } }, "asign.SyncContractStatusRsp": { "type": "object", "properties": { "contractName": { "description": "合同名称", "type": "string" }, "contractNo": { "description": "合同唯一编号", "type": "string" }, "status": { "description": "爱签合同状态:0:等待签约 1:签约中 2:已签约 3:过期 4:拒签 6:作废 -2:状态异常", "type": "integer" } } }, "common.ClientMenu": { "type": "object", "properties": { "children": { "description": "子菜单列表", "type": "array", "items": { "$ref": "#/definitions/common.ClientMenu" } }, "code": { "description": "ID", "type": "string" }, "isshow": { "description": "是否显示", "type": "boolean" }, "remark": { "description": "备注", "type": "string" }, "rulekey": { "description": "对应权限主键,对应FUNCMENULIST表RESOURCECODE", "type": "string" }, "sort": { "description": "排序", "type": "integer" }, "title": { "description": "标题", "type": "string" }, "type": { "description": "类型,1:菜单 2:按钮", "type": "integer" }, "url": { "description": "URL", "type": "string" } } }, "common.PCWebMenu": { "type": "object", "properties": { "auth": { "description": "页面权限列表", "type": "array", "items": { "$ref": "#/definitions/common.PCWebMenuAuth" } }, "children": { "description": "子菜单列表", "type": "array", "items": { "$ref": "#/definitions/common.PCWebMenu" } }, "code": { "description": "ID,新版本中权限KEY也是这个字段", "type": "string" }, "component": { "description": "路由组件", "type": "string" }, "isshow": { "description": "是否显示", "type": "boolean" }, "path": { "description": "路由路径", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "rulekey": { "description": "权限主键,非空表示需要判断控制,非空值不可重复", "type": "string" }, "sort": { "description": "排序", "type": "integer" }, "title": { "description": "标题", "type": "string" }, "url": { "description": "URL", "type": "string" } } }, "common.PCWebMenuAuth": { "type": "object", "properties": { "code": { "description": "ID,新版本中权限KEY也是这个字段", "type": "string" }, "isshow": { "description": "是否显示", "type": "boolean" }, "label": { "description": "标题", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "rulekey": { "description": "权限主键,非空表示需要判断控制,非空值不可重复", "type": "string" } } }, "common.QueryImageConfigsRsp": { "type": "object", "required": [ "configid" ], "properties": { "areauserid": { "description": "所属机构ID", "type": "integer" }, "configid": { "description": "配置ID(SEQ_SZDZ2_IMAGECONFIG)", "type": "integer" }, "createdate": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "imagedetailpath": { "description": "详情图片 [UrlType = 3时 有且必填,其它类型不需要]", "type": "string" }, "imagepath": { "description": "图片", "type": "string" }, "imagetype": { "description": "类型 - 1:首页轮播(移动) 2:我的(移动)", "type": "integer" }, "isshow": { "description": "是否展示 - 0:不展示 1:展示", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "modifierid": { "description": "操作人", "type": "integer" }, "sort": { "description": "排序", "type": "integer" }, "title": { "description": "标题", "type": "string" }, "trademode": { "description": "交易模式", "type": "integer" }, "updatedate": { "description": "修改时间", "type": "string" }, "url": { "description": "链接(地址或商品ID)", "type": "string" }, "urltype": { "description": "链接类型 - 1:直接地址 2:商品ID", "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" }, "enumdicname": { "description": "品类单位名称", "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" }, "pgoodscode": { "description": "p合约代码", "type": "string" }, "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.PendingAuditCntRsp": { "type": "object", "properties": { "areastockqty": { "description": "待审核数量: 库存申请", "type": "integer" }, "businessdjqty": { "description": "待审核数量: 点价", "type": "integer" }, "businessfpqty": { "description": "待审核数量: 发票", "type": "integer" }, "businessjsqty": { "description": "待审核数量: 结算", "type": "integer" }, "businesskxqty": { "description": "待审核数量: 款项", "type": "integer" }, "hedgeplanqty": { "description": "待审核数量: 套保计划", "type": "integer" }, "spotcontractqty": { "description": "待审核数量: 现货合同", "type": "integer" }, "userqty": { "description": "待审核数量: 用户", "type": "integer" } } }, "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" }, "auditid": { "description": "审核人ID", "type": "string" }, "auditname": { "description": "审核人名称", "type": "string" }, "auditremark": { "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" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货商品ID", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "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" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类id", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "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" }, "auditid": { "description": "审核人ID", "type": "string" }, "auditname": { "description": "审核人名称", "type": "string" }, "auditremark": { "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" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货商品ID", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "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" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类id", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "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" }, "auditid": { "description": "审核人ID", "type": "string" }, "auditname": { "description": "审核人名称", "type": "string" }, "auditremark": { "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" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货商品ID", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "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" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类id", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "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" }, "auditid": { "description": "审核人ID", "type": "string" }, "auditname": { "description": "审核人名称", "type": "string" }, "auditremark": { "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" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货商品ID", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "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" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类id", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "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" }, "auditid": { "description": "审核人ID", "type": "string" }, "auditname": { "description": "审核人名称", "type": "string" }, "auditremark": { "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" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货商品ID", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "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" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类id", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "ermcp.QryGGCovertCfgRsp": { "type": "object", "properties": { "convertratio": { "description": "折算系数", "type": "number" }, "destgoodsgroupid": { "description": "目标品种ID", "type": "integer" }, "dstcode": { "description": "目录品种代码", "type": "string" }, "dstexchangecode": { "description": "目标期货交易所", "type": "string" }, "dstname": { "description": "目标品种名称", "type": "string" }, "dstunitid": { "description": "目标品种单位ID", "type": "integer" }, "dstunitidname": { "description": "目标品种单位名称", "type": "string" }, "modifytime": { "description": "修改时间", "type": "string" }, "srccode": { "description": "源品种代码", "type": "string" }, "srcexchangecode": { "description": "源期货交易所", "type": "string" }, "srcgoodsgroupid": { "description": "源品种ID", "type": "integer" }, "srcname": { "description": "源品种名称", "type": "string" }, "srcunitid": { "description": "源品种单位ID", "type": "integer" }, "srcunitidname": { "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.ErmcpGGConvertCfg" } }, "mg": { "description": "套保品种基本信息", "$ref": "#/definitions/models.ErmcpMiddleGoodsModel" }, "wrcList": { "description": "现货品种列表(现货商品折算配置)", "type": "array", "items": { "$ref": "#/definitions/models.WRSConverTDetail" } } } }, "ermcp.QryMiddleGoodsRsp": { "type": "object", "properties": { "areauserid": { "description": "机构用户ID", "type": "integer" }, "createtime": { "description": "修改时间", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "evaluateratio": { "description": "估价系数", "type": "number" }, "goodsgroupid": { "description": "关联期货品种ID", "type": "integer" }, "goodsunitid": { "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" }, "needarbitrageratio": { "description": "套利比例", "type": "number" }, "needhedgeratio": { "description": "套保比率", "type": "number" }, "qtydecimalplace": { "description": "数量小数位", "type": "integer" }, "relatedgoodsid": { "description": "关联交易商品ID", "type": "integer" }, "relatedgoodstype": { "description": "关联商品类型 - 1:期货合约 2:现货品种", "type": "integer" }, "remark": { "description": "备注", "type": "string" } } }, "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.QryUserInfoRsp": { "type": "object", "properties": { "address": { "description": "通讯地址", "type": "string" }, "attachment1": { "description": "附件1", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "cardbackphotourl": { "description": "证件反面图片地址", "type": "string" }, "cardfrontphotourl": { "description": "证件正面图片地址", "type": "string" }, "cardnum": { "description": "证件号码", "type": "string" }, "cardtype": { "description": "证件类型", "type": "integer" }, "cardtypename": { "description": "证件类型名称", "type": "string" }, "cityid": { "description": "市", "type": "integer" }, "contactname": { "description": "联系人", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "customername": { "description": "企业名称", "type": "string" }, "districtid": { "description": "区域", "type": "integer" }, "email": { "description": "邮件", "type": "string" }, "legalpersonname": { "description": "法人姓名(企业)", "type": "string" }, "memberuserid": { "description": "所属机构ID", "type": "integer" }, "mobile": { "description": "手机号码", "type": "string" }, "modifytime": { "description": "修改时间", "type": "string" }, "nickname": { "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" }, "taxpayernum": { "description": "纳税人识别号", "type": "string" }, "telphone": { "description": "联系电话", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "userinfotype": { "description": "客户类型", "type": "string" } } }, "ermcp.QryWarehouseRsp": { "type": "object", "properties": { "address": { "description": "详细地址", "type": "string" }, "areauserid": { "description": "所属机构", "type": "integer" }, "autoid": { "description": "自增ID(仓库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" } } }, "ermcp.QueryErmcpTradePositionRsp": { "type": "object", "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "curpositionqty": { "description": "持仓(总仓数量, 期末头寸)", "type": "integer" }, "curtdposition": { "description": "今仓数量(期末今日头寸)", "type": "integer" }, "curtdpositionenabled": { "description": "今仓可用", "type": "integer" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "enableqty": { "description": "可用(总仓可用)", "type": "integer" }, "exexchangename": { "description": "外部交易所名称", "type": "string" }, "exexehangecode": { "description": "外部交易所代码", "type": "string" }, "exexehangeid": { "description": "外部交易所id", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID(自增ID SEQ_GOODS)", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "last": { "description": "现价", "type": "number" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "openaverageprice": { "description": "开仓均价【头寸变化更新】 = 开仓成本 / 期末头寸 / 合约单位", "type": "number" }, "opencost": { "description": "开仓成本", "type": "number" }, "openpl": { "description": "逐笔浮盈【实时行情更新】(MTP:开仓盈亏、平仓盈亏) 买方向 = (最新价 - 开仓均价) * 买期末头寸 * 合约单位;卖方向 = (开仓均价 - 最新价) * 卖期末头寸 * 合约单位", "type": "number" }, "outgoodscode": { "description": "商品代码(外部)", "type": "string" }, "positionaverageprice": { "description": "持仓均价【头寸变化更新】= 持仓成本 / 期末头寸 / 合约单位", "type": "number" }, "positioncost": { "description": "持仓成本", "type": "number" }, "positionpl": { "description": "盯市浮盈【实时行情更新】(MTP:浮动盈亏、持仓盈亏) 买方向 = (最新价 - 持仓均价) * 买期末头寸 * 合约单位;卖方向 = (持仓均价 - 最新价) * 卖期末头寸 * 合约单位", "type": "number" }, "positionplrate": { "description": "持仓盈亏比例【实时行情更新】 = 持仓盈亏 / 开仓成本", "type": "number" }, "usedmargin": { "description": "占用保证金", "type": "number" } } }, "ermcp.RealtimeExposurePositionRsp": { "type": "object", "properties": { "agreeunit": { "description": "合约单位", "type": "string" }, "areauserid": { "description": "所属机构id", "type": "integer" }, "convertratio": { "description": "期货品种系数(折算系数)", "type": "number" }, "curhedgeqty": { "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" }, "hedgeaccountcode": { "description": "对冲账号(只有外部账号才有值)", "type": "string" }, "middlegoodscode": { "description": "套保商品代码", "type": "string" }, "middlegoodsid": { "description": "套保商品id", "type": "integer" }, "middlegoodsname": { "description": "套保商品名称", "type": "string" }, "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" }, "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" }, "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" }, "arbitrageqty": { "description": "套利量", "type": "number" }, "diffArbitrageQty": { "description": "期初均价", "type": "number" }, "diffExposoureQty": { "description": "期初均价", "type": "number" }, "diffFutuQty": { "description": "期初均价", "type": "number" }, "diffHedgeQty": { "description": "期初均价", "type": "number" }, "diffQty": { "description": "期初均价", "type": "number" }, "diffSpotHedgeQty": { "description": "期初均价", "type": "number" }, "diffSpotQty": { "description": "期初均价", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "hedgeqty": { "description": "套保量", "type": "number" }, "needarbitrageqty": { "description": "应套利量", "type": "number" }, "needarbitrageratio": { "description": "套利比例", "type": "number" }, "needhedgeqty": { "description": "应套保量", "type": "number" }, "oriarbitrageqty": { "description": "期初套利量", "type": "number" }, "orihedgeqty": { "description": "期初套保量", "type": "number" }, "orineedhedgeexposoure": { "description": "期初套保敞口", "type": "number" }, "oritotalexposure": { "description": "期初总敞口", "type": "number" }, "oritotalfutureqty": { "description": "期初期货总量", "type": "number" }, "oritotalneedhedgeqty": { "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" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "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" }, "taxpayernum": { "description": "纳税人识别号", "type": "string" }, "telphone": { "description": "联系电话(加密存储)", "type": "string" }, "userid": { "description": "用户ID(自增ID)SEQ_WSKH_USERINFO", "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" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "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" }, "taxpayernum": { "description": "纳税人识别号", "type": "string" }, "telphone": { "description": "联系电话(加密存储)", "type": "string" }, "userid": { "description": "用户ID(自增ID)SEQ_WSKH_USERINFO", "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.Arearole": { "type": "object", "required": [ "roletype", "userid" ], "properties": { "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人ID", "type": "integer" }, "fromuserid": { "description": "所属机构(组织机构)( OrgType = 1时为自己, = 2\\3时取上级机构的所属机构)", "type": "integer" }, "isreturnscore": { "description": "是否返还积分 [经纪会员-辽东湾] - 0:不返还 1:返还", "type": "integer" }, "modifierid": { "description": "修改人ID", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "orgtype": { "description": "组织机构类型 1:机构\\分支节点 2:交易员\\叶子节点 3:部门\\分支节点", "type": "integer" }, "outuserid": { "description": "外部账户[场外期权做市商]", "type": "string" }, "parentuserid": { "description": "上级组织机构(组织机构)", "type": "integer" }, "roletype": { "description": "角色类型 - 1:交易所 2:运营机构 3:营销中心 4:仓库机构 5:三方服务机构 6:自营会员 7:经纪会员 8:做市会员 9:产业会员 10:金融机构 11:商城店铺 12:子机构 13:报价商 14:积分服务商 15:供货商 16:圈内会员 17:物流机构 18:报价配置机构 19:场外期权做市商 20:组织机构 21:顶级机构 22:业务员 23:跟单员 24:交易员 25:客户 98:代理 99:门店", "type": "integer" }, "rootuserid": { "description": "顶级组织机构用户ID(组织机构)", "type": "integer" }, "shoppassword": { "description": "商城店铺登陆密码(商城店铺角色使用)", "type": "string" }, "sublevelpath": { "description": "组织机构层级路径(逗号分隔,首尾加逗号)", "type": "string" }, "suborgtype": { "description": "子机构类型(千海金) - 0:机构 1:代理 2:门店", "type": "integer" }, "tradeaccountid": { "description": "默认交易资金账号ID(做市会员被动接单使用、商城店铺默认资金账 号、圈内会员默认资金账号) - 作废, 使用UserReckonAccount", "type": "integer" }, "transurl": { "description": "物流地址(物流机构)", "type": "string" }, "userid": { "description": "机构用户ID其他做市关系,都设置为 1", "type": "integer" } } }, "models.BScinoutorderdetail": { "type": "object", "required": [ "orderid", "userid" ], "properties": { "backagenum": { "description": "件数", "type": "integer" }, "bagweightgm": { "description": "连袋重(克)", "type": "number" }, "countryname": { "description": "产销国", "type": "string" }, "currencydes": { "description": "币种", "type": "string" }, "currencyname": { "description": "币制", "type": "string" }, "customsno": { "description": "报关单号(进仓:录入时更新,出仓申请时有)", "type": "string" }, "customsvalue": { "description": "报关总值", "type": "number" }, "detailid": { "description": "明细ID(807+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "executionflag": { "description": "海关执行标志", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodsnum": { "description": "商品编号", "type": "string" }, "goodsspec": { "description": "规格", "type": "string" }, "legalunit": { "description": "法定计量单位", "type": "string" }, "netweightct": { "description": "净重(克拉)", "type": "number" }, "netweightgm": { "description": "净重(克)", "type": "number" }, "orderid": { "description": "申请ID", "type": "string" }, "origincountry": { "description": "原产国", "type": "string" }, "prepricegm": { "description": "单价(克)", "type": "number" }, "rawdetail": { "description": "原料明细", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "reportunit": { "description": "申报计量单位", "type": "string" }, "storageperiod": { "description": "存储(监管)期限", "type": "string" }, "totalprice": { "description": "总价", "type": "number" }, "unitprice": { "description": "单价", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.BScoutorderdetailatt": { "type": "object", "required": [ "orderid", "userid" ], "properties": { "countryname": { "description": "产销国", "type": "string" }, "curcustomsvalue": { "description": "本次扣减货值(报关总值)", "type": "number" }, "curnetweightct": { "description": "本次扣减量(克拉)", "type": "number" }, "curnetweightgm": { "description": "本次扣减净重(克)", "type": "number" }, "currencyname": { "description": "币制", "type": "string" }, "curtotalprice": { "description": "本次扣减货值", "type": "number" }, "customsno": { "description": "报关单号", "type": "string" }, "customsvalue": { "description": "报关总值", "type": "number" }, "detailattid": { "description": "明细ID(810+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "executionflag": { "description": "海关执行标志", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodsnum": { "description": "商品编号", "type": "string" }, "goodsspec": { "description": "规格型号", "type": "string" }, "jckdate": { "description": "进口日期", "type": "string" }, "legalunit": { "description": "法定计量单位", "type": "string" }, "netweightct": { "description": "净重(克拉)", "type": "number" }, "netweightgm": { "description": "净重(克)", "type": "number" }, "orderid": { "description": "申请ID", "type": "string" }, "remaincurnetweightgm": { "description": "结余净重(克)", "type": "number" }, "remaincustomsvalue": { "description": "结余报关总值", "type": "number" }, "remainnetweightct": { "description": "结余净重(克拉)", "type": "number" }, "remaintotalprice": { "description": "结余总价", "type": "number" }, "reportunit": { "description": "申报计量单位", "type": "string" }, "storageperiod": { "description": "存储(监管)期限", "type": "string" }, "totalprice": { "description": "总价", "type": "number" }, "unitprice": { "description": "单价", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.Bankbranchnuminfo": { "type": "object", "required": [ "branchname" ], "properties": { "branchcity": { "description": "市县", "type": "string" }, "branchname": { "description": "支行名称", "type": "string" }, "branchnum": { "description": "支行行号", "type": "string" }, "branchprovince": { "description": "省份", "type": "string" }, "isexpired": { "description": "是否过期", "type": "string" } } }, "models.Bankcusbankextendconfig": { "type": "object", "required": [ "cusbankid" ], "properties": { "cusbankid": { "description": "托管银行编号", "type": "string" }, "extendbiztype": { "description": "扩展业务类型 - 1:签约 2:入金 3:出金 4:签约信息修改", "type": "integer" }, "fieldcode": { "description": "字段代码", "type": "string" }, "fieldid": { "description": "字段ID", "type": "integer" }, "fieldname": { "description": "字段名称", "type": "string" }, "fieldtype": { "description": "字段类型 - 1:扩展字段 2:协议字段", "type": "integer" }, "ismandatory": { "description": "是否必填 - 0:不必填 1:必填", "type": "integer" }, "status": { "description": "状态 - 0:正常 1:注销", "type": "integer" }, "usabletype": { "description": "可用类型 - 1:通用 2:机构专用 3:投资者专用", "type": "integer" } } }, "models.Bscinoutorder": { "type": "object", "required": [ "jckdate", "userid" ], "properties": { "applicanttime": { "description": "申请时间", "type": "string" }, "bagweightgm": { "description": "连袋重(克)", "type": "number" }, "checklistno": { "description": "核注清单号", "type": "string" }, "confirmdate": { "description": "进出仓确认时间", "type": "string" }, "confirmername": { "description": "进出仓确认人", "type": "string" }, "confirmtradedate": { "description": "进出仓确认交易日(yyyyMMdd)", "type": "string" }, "contactname": { "description": "申请方联系人", "type": "string" }, "contactnum": { "description": "申请方联系电话", "type": "string" }, "customsno": { "description": "报关单号", "type": "string" }, "customstotalvalue": { "description": "报关总值", "type": "number" }, "goodsname": { "description": "商品名称 - 明细的商品名称拼接(\"/\")", "type": "string" }, "jckdate": { "description": "进出口日期", "type": "string" }, "logisticscompany": { "description": "物流公司名称", "type": "string" }, "logisticsno": { "description": "托运单号", "type": "string" }, "netweightct": { "description": "净重(克拉)", "type": "number" }, "netweightgm": { "description": "净重(克)", "type": "number" }, "orderid": { "description": "申请ID(806+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "ordernum": { "description": "单据编号", "type": "string" }, "orderstatus": { "description": "进出仓状态 - 1.待确认 2.待上传 3.报关中 4.进仓中 5.出仓中 20.已关闭 21.确认拒绝(枚举:GZBSCOrderStatus)", "type": "integer" }, "ordertype": { "description": "单据类型 - 1:进仓 2:出仓(枚举:GZBSCOrderType)", "type": "integer" }, "outtype": { "description": "出仓类型 - 1:转厂 2:出境(枚举:GZBSCOutType)", "type": "integer" }, "sealno": { "description": "进出仓封条号", "type": "string" }, "signeedate": { "description": "收发货人日期", "type": "string" }, "signeename": { "description": "收发货人", "type": "string" }, "totalprice": { "description": "总价", "type": "number" }, "useraddress": { "description": "申请方地点", "type": "string" }, "userid": { "description": "申请用户ID", "type": "integer" }, "username": { "description": "申请方名称", "type": "string" } } }, "models.BuyOrder": { "type": "object", "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "buyusername": { "description": "买方", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "ordertime": { "description": "委托时间", "type": "string" }, "origin": { "description": "原产地", "type": "string" }, "performancetemplateid": { "description": "履约计划模板ID", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "validtime": { "description": "有效期限", "type": "string" }, "warehouseids": { "description": "仓库ID - 多个, 逗号分隔", "type": "string" }, "warehouseinfosdisplay": { "type": "string" }, "wrtradeorderid": { "description": "[委托单号]买委托单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrtradeorderstatus": { "description": "委托状态 - 参考枚举'WRTradeOrderStatus' - 1:委托请求 2:待冻结 3:委托成功 4:委托失败 5:配对成功 6:已撤 7:部成 8:已成 9:部成部撤 10:成交失败 11:委托拒绝 12:经过摘牌(先摘后挂专用) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用) 17:冻结PD成功 18:冻结PD失败 19:冻结能量成功 20:冻结能量失败 21:预约已报价 22:过期未付 23:优惠券处理中 24:仓单生成失败 25:首付扣款失败 26:履约失败 27:撤单解冻贷款失败WRTrade_OrderDetail、", "type": "integer" }, "zscategory": { "description": "钻石分类 - 枚举”ZSCategory“", "type": "integer" }, "zscategorydisplay": { "type": "string" }, "zsclaritytype": { "description": "净度 - 两个, 逗号分隔", "type": "string" }, "zsclaritytypedisplay": { "type": "string" }, "zscolortype": { "description": "颜色 - 两个, 逗号分隔", "type": "string" }, "zscolortypedisplay": { "type": "string" }, "zscrystaltype": { "description": "晶型 - 多个,逗号分隔", "type": "string" }, "zscrystaltypedisplay": { "type": "string" }, "zscurrencytype": { "description": "货币类型 - 多个, 逗号分隔", "type": "string" }, "zscurrencytypedisplay": { "type": "string" }, "zscuttype": { "description": "切工 - 两个, 逗号分隔", "type": "string" }, "zscuttypedisplay": { "type": "string" }, "zsczcolor1type": { "description": "彩钻颜色1, 逗号分隔", "type": "string" }, "zsczcolor1typedisplay": { "type": "string" }, "zsczcolor2type": { "description": "彩钻颜色2, 逗号分隔", "type": "string" }, "zsczcolor2typedisplay": { "type": "string" }, "zsczcolor3type": { "description": "彩钻颜色3, 逗号分隔", "type": "string" }, "zsczcolor3typedisplay": { "type": "string" }, "zsfluorescencetype": { "description": "荧光 - 多个, 逗号分隔", "type": "string" }, "zsfluorescencetypedisplay": { "type": "string" }, "zspolishtype": { "description": "抛光度 - 两个, 逗号分隔", "type": "string" }, "zspolishtypedisplay": { "type": "string" }, "zsshapetype": { "description": "形状 - 多个, 逗号分隔", "type": "string" }, "zsshapetypedisplay": { "type": "string" }, "zssize": { "description": "尺寸 - 两个小数, 逗号分隔", "type": "string" }, "zssizedisplay": { "description": "颜色", "type": "string" }, "zsstyletype": { "description": "款式 - 多个, 逗号分隔", "type": "string" }, "zsstyletypedisplay": { "type": "string" }, "zssymmetrytype": { "description": "对称度 - 两个, 逗号分隔", "type": "string" }, "zssymmetrytypedisplay": { "type": "string" }, "zstabledisplay": { "description": "求购信息", "type": "string" } } }, "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.DgFactoryItem": { "type": "object", "properties": { "dgfactoryitemid": { "description": "选择项ID(SEQ_DGFACTORYITEM)", "type": "integer" }, "dgfactoryitemtypeid": { "description": "要素项类型", "type": "integer" }, "dgfactoryitemvalue": { "description": "要素项值(类型为仓库时填写仓库名称)", "type": "string" }, "orderindex": { "description": "顺序", "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.Ermcp2AreaExposure": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "enumdicname": { "description": "单位", "type": "string" }, "futureqty": { "description": "期货套期量", "type": "number" }, "futureqtychange": { "description": "期货变动量 = FutureQty - OriFutureQty", "type": "number" }, "goodsunitid": { "description": "单位ID", "type": "integer" }, "hedgedspotexposure": { "description": "被套期现货敞口量", "type": "number" }, "hedgedspratio": { "description": "套期期现比例 = 期货套期量/被套期现货敞口量", "type": "number" }, "hedgedtotalexposourechange": { "description": "被套期敞口变动量 = HedgedTotalExposure - OriHedgedTotalExposure", "type": "number" }, "hedgedtotalexposure": { "description": "套期敞口量 = 被套期现货敞口量+期货套期量", "type": "number" }, "hedgeplanqty": { "description": "套期计划量", "type": "number" }, "hedgeplanqtychange": { "description": "计划变动量 = HedgePlanQty - OriHedgePlanQty", "type": "number" }, "hedgespotqty": { "description": "被套期现货量", "type": "number" }, "middlegoodsid": { "description": "套保品种", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "orifutureqty": { "description": "期初期货套期量", "type": "number" }, "orihedgedspotexposure": { "description": "期初被套期现货敞口量", "type": "number" }, "orihedgedtotalexposure": { "description": "期初套期敞口量", "type": "number" }, "orihedgeplanqty": { "description": "期初套期计划量", "type": "number" }, "orihedgespotqty": { "description": "期初被套期现货量", "type": "number" }, "orispotexposure": { "description": "期初现货敞口量", "type": "number" }, "orispotqty": { "description": "期初现货总量", "type": "number" }, "oritotalexposure": { "description": "期初总敞口量", "type": "number" }, "spotexposure": { "description": "现货敞口量", "type": "number" }, "spotqty": { "description": "现货总量", "type": "number" }, "spotqtychange": { "description": "现货变动量 = SpotQty - OriSpotQty", "type": "number" }, "spratio": { "description": "总期现比例 = 期货套期量/现货敞口量", "type": "number" }, "totalexposure": { "description": "总敞口量 = 现货敞口量 + 期货套期量", "type": "number" }, "totalexposurechange": { "description": "总敞口变动量 = TotalExposure - OriTotalExposure", "type": "number" }, "updatetime": { "description": "更新时间 --DATE", "type": "string" } } }, "models.Ermcp2hedgeditem": { "type": "object", "properties": { "accountname": { "description": "套期主体", "type": "string" }, "applyid": { "description": "申请人", "type": "integer" }, "applysrc": { "description": "申请来源 - 1:管理端 2:终端", "type": "integer" }, "areauserid": { "description": "企业ID", "type": "integer" }, "auditid": { "description": "审核人", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "audittradedate": { "description": "审核交易日(yyyyMMdd)", "type": "string" }, "createtime": { "description": "申请时间", "type": "string" }, "curprice": { "description": "当前市场价", "type": "number" }, "curstock": { "description": "期末库存量 = 采购总量 - 销售总量", "type": "number" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "enddate": { "description": "完成日期", "type": "string" }, "endtradedate": { "description": "完成交易日", "type": "string" }, "enumdicname": { "description": "单位", "type": "string" }, "exeamount": { "description": "执行市价总额", "type": "number" }, "exeavgprice": { "description": "执行市场均价= 执行市价总额 / 执行现货量", "type": "number" }, "execontractamount": { "description": "执行定价总额", "type": "number" }, "exeqty": { "description": "执行现货量", "type": "number" }, "exerestamount": { "description": "执行剩余市价总额【现货贸易】", "type": "number" }, "futurefloatpl": { "description": "期货浮动损益", "type": "number" }, "futurehedgepl": { "description": "期货实际损益", "type": "number" }, "futurehedgeplchange": { "description": "期货实际损益变动", "type": "number" }, "futurepl": { "description": "期货套期损益", "type": "number" }, "futureplchange": { "description": "期货套期损益变动", "type": "number" }, "hedgeamount": { "description": "套期市价总额", "type": "number" }, "hedgecontractamount": { "description": "套期定价总额 【定价采购合同】【现货贸易】", "type": "number" }, "hedgeditemid": { "description": "被套期项目ID(624+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "hedgeditemname": { "description": "项目名称", "type": "string" }, "hedgeditemnum": { "description": "项目编号", "type": "string" }, "hedgeditemstatus": { "description": "项目状态 - 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "type": "integer" }, "hedgedtype": { "description": "套期类型 - 1:采购计划项目 2:销售计划项目 3:现货贸易项目 4:库存存货项目 5:定价采购合同项目", "type": "integer" }, "hedgeqty": { "description": "套期现货量", "type": "number" }, "hedgerate": { "description": "套保比率", "type": "number" }, "hedgerestamount": { "description": "套期剩余市价总额【现货贸易】", "type": "number" }, "hedgesumpl": { "description": "套期汇总损益 = 期货汇总损益 + 现货汇总损益", "type": "number" }, "middlegoodslist": { "description": "套期商品列表", "type": "array", "items": { "$ref": "#/definitions/models.Ermcp2himiddlegoods" } }, "oriavgprice": { "description": "期初市场均价 = 套期市价总额 / 套期现货量", "type": "number" }, "orifuturehedgepl": { "description": "期初期货实际损益", "type": "number" }, "orifuturepl": { "description": "期初期货套期损益", "type": "number" }, "orispothedgepl": { "description": "期初现货实际损益", "type": "number" }, "orispotpl": { "description": "期初现货套期损益", "type": "number" }, "planenddate": { "description": "计划结束日期", "type": "string" }, "planstartdate": { "description": "计划开始日期", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "spotbookamount": { "description": "现货账面总额", "type": "number" }, "spotfloatpl": { "description": "现货浮动损益 =(当前市场价 - 期初市场价)*未执行现货量 * 方向(销售计划 为 -1, 其它为1)", "type": "number" }, "spothedgepl": { "description": "现货套期损益 =(执行市场均价-期初市场均价)*执行现货量 * 方向(销售计划 为 -1, 其它为1)", "type": "number" }, "spothedgeplchange": { "description": "现货实际损益变动", "type": "number" }, "spotpl": { "description": "现货套期损益 = 现货实际损益 + 现货浮动损益", "type": "number" }, "spotplchange": { "description": "现货套期损益变动", "type": "number" }, "spottradepl": { "description": "现货贸易损益【现货贸易】= 执行合同定价总额 - 套期合同定价总额", "type": "number" }, "sumobspl": { "description": "汇总绝对损益【现货贸易】=现货贸易损益+增值税损益+期货套期损益", "type": "number" }, "tradeuserid": { "description": "交易用户ID", "type": "integer" }, "unexeqty": { "description": "未执行现货量 = 套期现货量 - 执行现货量", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "vatpl": { "description": "增值税损益【现货贸易】= 现货贸易损益 * (增值税率 /(1+增值税率))", "type": "number" }, "vatrate": { "description": "增值税", "type": "number" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" } } }, "models.Ermcp2hedgeditemlink": { "type": "object", "required": [ "relatedspotcontractid" ], "properties": { "areauserid": { "description": "企业ID", "type": "integer" }, "createtime": { "description": "[关联时间]创建时间", "type": "string" }, "customeruserid": { "description": "对手方 【3:采购合同 4:销售合同】", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "enumdicname": { "description": "单位", "type": "string" }, "hedgeditemid": { "description": "被套期项目ID", "type": "integer" }, "hedgeditemlinkid": { "description": "现货关联表ID(626+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "hedgeditemnum": { "description": "项目编号", "type": "string" }, "hedgedtype": { "description": "套期类型 - 1:采购计划项目 2:销售计划项目 3:现货贸易项目 4:库存存货项目 5:定价采购合同项目", "type": "integer" }, "relatedamount": { "description": "市价总额 = 关联数量 * 期初市场价", "type": "number" }, "relatedhedgeplanid": { "description": "关联计划ID 【1:采购计划 2:销售计划】", "type": "integer" }, "relatedqty": { "description": "关联数量", "type": "number" }, "relatedspotcontractid": { "description": "关联合同ID 【3:采购合同 4:销售合同】", "type": "integer" }, "relatedtype": { "description": "关联类型 - 1:套期关联 2:执行关联", "type": "integer" }, "spotgoodsbrandid": { "description": "现货品牌ID", "type": "integer" }, "spotpricedamount": { "description": "[关联定价总额]定价总额", "type": "number" }, "spotpricedavgprice": { "description": "[关联现货均价]现货均价 = 定价总额 / 关联数量", "type": "number" }, "spottype": { "description": "现货类型 - 1:采购计划 2:销售计划 3:采购合同 4:销售合同 5:库存存货", "type": "integer" }, "tradeuserid": { "description": "交易用户ID", "type": "integer" }, "unexeqty": { "description": "未执行现货量【项目关联时值】", "type": "number" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品", "type": "string" } } }, "models.Ermcp2hedgeditemsDetail": { "type": "object", "properties": { "accountname": { "description": "套期主体", "type": "string" }, "areauserid": { "description": "企业ID", "type": "integer" }, "createtime": { "description": "[日期时间]创建时间", "type": "string" }, "customeruserid": { "description": "对手方 【3:采购合同 4:销售合同】", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "enumdicname": { "description": "单位", "type": "string" }, "hedgeditemid": { "description": "被套期项目ID", "type": "string" }, "hedgeditemspotid": { "description": "现货明细ID(625+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "hedgedtype": { "description": "套期类型[计划类型] - 1:采购计划项目 2:销售计划项目 3:现货贸易项目 4:库存存货项目 5:定价采购合同项目", "type": "integer" }, "hedgeplanno": { "description": "计划编号", "type": "string" }, "middlegoodschange": { "description": "套期商品变化量 = RELATEDQTY * 折算系数 * (1/(1+增值税))", "type": "number" }, "oriavgprice": { "description": "期初市场价[当初市场价]", "type": "number" }, "relatedamount": { "description": "市价总额 = 关联数量 * 期初市场价", "type": "number" }, "relatedhedgeplanid": { "description": "关联计划ID 【1:采购计划 2:销售计划】", "type": "integer" }, "relatedqty": { "description": "[期间变化量]关联数量", "type": "number" }, "relatedspotcontractid": { "description": "关联合同ID 【3:采购合同 4:销售合同】", "type": "integer" }, "relatedtype": { "description": "关联类型 - 1:套期关联 2:执行关联", "type": "integer" }, "spotgoodsbrandid": { "description": "现货品牌ID - 存“DGFactoryItem”表\"DGFactoryItemID\" = 2", "type": "integer" }, "spotpricedamount": { "description": "定价总额", "type": "number" }, "spotpricedavgprice": { "description": "现货均价 = 定价总额 / 关联数量", "type": "number" }, "spottype": { "description": "现货类型 - 1:采购计划 2:销售计划 3:采购合同 4:销售合同 5:库存存货", "type": "integer" }, "tradeuserid": { "description": "交易用户ID", "type": "integer" }, "unexeqty": { "description": "未执行现货量 = 套期现货量 - 执行现货量", "type": "number" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品", "type": "string" } } }, "models.Ermcp2hedgeditemspot": { "type": "object", "required": [ "hedgeditemid" ], "properties": { "areauserid": { "description": "企业ID", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "customeruserid": { "description": "对手方 【3:采购合同 4:销售合同】", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "enumdicname": { "description": "单位", "type": "string" }, "hedgeditemid": { "description": "被套期项目ID", "type": "string" }, "hedgeditemspotid": { "description": "现货明细ID(625+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "hedgedtype": { "description": "套期类型[计划类型] - 1:采购计划项目 2:销售计划项目 3:现货贸易项目 4:库存存货项目 5:定价采购合同项目", "type": "integer" }, "hedgeplanno": { "description": "计划编号", "type": "string" }, "oriavgprice": { "description": "期初市场价[当初市场价]", "type": "number" }, "relatedamount": { "description": "市价总额 = 关联数量 * 期初市场价", "type": "number" }, "relatedhedgeplanid": { "description": "关联计划ID 【1:采购计划 2:销售计划】", "type": "integer" }, "relatedqty": { "description": "关联数量[数量]", "type": "number" }, "relatedspotcontractid": { "description": "关联合同ID 【3:采购合同 4:销售合同】", "type": "integer" }, "relatedtype": { "description": "关联类型 - 1:套期关联 2:执行关联", "type": "integer" }, "spotgoodsbrandid": { "description": "现货品牌ID - 存“DGFactoryItem”表\"DGFactoryItemID\" = 2", "type": "integer" }, "spotpricedamount": { "description": "定价总额", "type": "number" }, "spotpricedavgprice": { "description": "现货均价 = 定价总额 / 关联数量", "type": "number" }, "spottype": { "description": "现货类型 - 1:采购计划 2:销售计划 3:采购合同 4:销售合同 5:库存存货", "type": "integer" }, "tradeuserid": { "description": "交易用户ID", "type": "integer" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品", "type": "string" } } }, "models.Ermcp2hedgeditemspotDetail": { "type": "object", "required": [ "hedgeditemid" ], "properties": { "accountname": { "description": "对手方", "type": "string" }, "areauserid": { "description": "企业ID", "type": "integer" }, "brandname": { "description": "品牌", "type": "string" }, "contractno": { "description": "合同编号", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "customeruserid": { "description": "对手方 【3:采购合同 4:销售合同】", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "enumdicname": { "description": "单位", "type": "string" }, "hedgeditemid": { "description": "被套期项目ID", "type": "string" }, "hedgeditemspotid": { "description": "现货明细ID(625+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "hedgedtype": { "description": "套期类型[计划类型] - 1:采购计划项目 2:销售计划项目 3:现货贸易项目 4:库存存货项目 5:定价采购合同项目", "type": "integer" }, "oriavgprice": { "description": "期初市场价[当初市场价]", "type": "number" }, "relatedamount": { "description": "市价总额 = 关联数量 * 期初市场价", "type": "number" }, "relatedhedgeplanid": { "description": "关联计划ID 【1:采购计划 2:销售计划】", "type": "integer" }, "relatedqty": { "description": "关联数量[数量]", "type": "number" }, "relatedspotcontractid": { "description": "关联合同ID 【3:采购合同 4:销售合同】", "type": "integer" }, "relatedtype": { "description": "关联类型 - 1:套期关联 2:执行关联", "type": "integer" }, "spotgoodsbrandid": { "description": "现货品牌ID - 存“DGFactoryItem”表\"DGFactoryItemID\" = 2", "type": "integer" }, "spotpricedamount": { "description": "定价总额[金额]", "type": "number" }, "spotpricedavgprice": { "description": "现货均价 = 定价总额 / 关联数量", "type": "number" }, "spottype": { "description": "现货类型[合同类型] - 1:采购计划 2:销售计划 3:采购合同 4:销售合同 5:库存存货", "type": "integer" }, "tradeuserid": { "description": "交易用户ID", "type": "integer" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品", "type": "string" } } }, "models.Ermcp2himiddlegoods": { "type": "object", "required": [ "hedgeditemid", "middlegoodsid" ], "properties": { "futurehedgeqty": { "description": "期货持仓套期量", "type": "number" }, "hedgeditemid": { "description": "被套期项目ID(624+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "hiexpsoure": { "description": "期现敞口量 = 未执行套期量 + 期货持仓套期量", "type": "number" }, "middlegoodscode": { "description": "套保商品代码", "type": "string" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "middlegoodsname": { "description": "套保商品名称", "type": "string" }, "unexehedgeqty": { "description": "未执行套期量 = 未执行现货量*折算系数* (1/(1+增值税)) * 套期比例(项目上)", "type": "number" } } }, "models.Ermcp2stockspotchangelog": { "type": "object", "properties": { "accountname": { "description": "套期主体", "type": "string" }, "aftervalue": { "description": "现货量", "type": "number" }, "beforevalue": { "description": "变更前现货量", "type": "number" }, "contractno": { "description": "[编号]现货合同编号", "type": "string" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "customerusername": { "description": "对手方", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "exetype": { "description": "执行类型 - 1:采购合同 2:销售合同 3:生产入库 4:生产出库", "type": "integer" }, "logid": { "description": "流水ID(604+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "logvalue": { "description": "[期间变化量]现货量变更值", "type": "number" }, "middlegoodschange": { "description": "套期商品变化量 = LogValue * 折算系数 * (1/(1+增值税))", "type": "number" }, "operatelogtype": { "description": "操作流水类型 - 2:点价数量 21:正常完结(合同) 22:异常终止(合同) 24:采购入库 25:销售出库 26:生产入库 27:生产出库", "type": "integer" }, "relatedid": { "description": "现货合同ID", "type": "integer" }, "spotgoodsbrandid": { "description": "现货品牌ID", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "机构ID", "type": "integer" }, "warehouseinfoid": { "description": "仓库ID", "type": "integer" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" } } }, "models.Ermcp3AreaSpot": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "convertratio": { "description": "套保系数", "type": "number" }, "decreaseqty": { "description": "减少数量=-(销售已定价数量+采购计划数量)", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "increaseqty": { "description": "增加数量=销售计划数量+采购已定价数量", "type": "number" }, "oritoalspotqty": { "description": "昨日数量", "type": "number" }, "totalspotqty": { "description": "当前数量(现货头寸总量) = (销售计划数量 - 销售已定价数量) - (采购计划数量 - 采购已定价数量)", "type": "number" }, "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.Ermcp3AreaSpotDetail": { "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" }, "wrstandardid": { "description": "现货商品ID(SEQ_WRSTANDARD)", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.Ermcp3AreaSpotPLReport": { "type": "object", "properties": { "accountid": { "description": "期货账户ID (作废, 默认为0)", "type": "integer" }, "accountname": { "description": "机构名称", "type": "string" }, "actualpl": { "description": "现货损益", "type": "number" }, "areauserid": { "description": "所属机构\\交易用户ID", "type": "integer" }, "begindate": { "description": "开始交易日", "type": "string" }, "biztype": { "description": "业务类型 - 1:套保 2:套利", "type": "integer" }, "brandname": { "description": "品牌名称", "type": "string" }, "curamount": { "description": "期末额", "type": "number" }, "curaverageprice": { "description": "期初均价", "type": "number" }, "curbuyamount": { "description": "期末采购总额", "type": "number" }, "curbuyqty": { "description": "期末采购总量", "type": "number" }, "curmarketvalue": { "description": "期初均价", "type": "number" }, "curqty": { "description": "期末量", "type": "number" }, "currencyid": { "description": "结算币种ID【原值】", "type": "integer" }, "currencyname": { "description": "币种名称", "type": "string" }, "cursellamount": { "description": "期末销售总额", "type": "number" }, "cursellqty": { "description": "期末销售总量", "type": "number" }, "curspotprice": { "description": "期初均价", "type": "number" }, "cycletime": { "description": "周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(0)【原值】", "type": "string" }, "cycletype": { "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】", "type": "integer" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "enddate": { "description": "结束交易日", "type": "string" }, "enumdicname": { "description": "现货品种单位名称(作废)", "type": "string" }, "floatpl": { "description": "期初均价", "type": "number" }, "goodsunitid": { "description": "现货品种单位id(作废)", "type": "integer" }, "oriamount": { "description": "期初额", "type": "number" }, "oriaverageprice": { "description": "期初均价", "type": "number" }, "oribuyamount": { "description": "期初采购总额", "type": "number" }, "oribuyqty": { "description": "期初采购总量", "type": "number" }, "oriqty": { "description": "期初量", "type": "number" }, "orisellamount": { "description": "期初销售总额", "type": "number" }, "orisellqty": { "description": "期初销售总量", "type": "number" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "spotgoodsbrandid": { "description": "现货品牌ID", "type": "integer" }, "todaybuyamount": { "description": "今日采购额(今采购额)", "type": "number" }, "todaybuyaverageprice": { "description": "期初均价", "type": "number" }, "todaybuyqty": { "description": "今日采购量(今采购量)", "type": "number" }, "todayinqty": { "description": "今日入库量(今入库量)", "type": "number" }, "todayoutqty": { "description": "今日出库量(今出库量)", "type": "number" }, "todaysellamount": { "description": "今日销售额(今销售额)", "type": "number" }, "todaysellaverageprice": { "description": "期初均价", "type": "number" }, "todaysellqty": { "description": "今日销售量(今销售量)", "type": "number" }, "unitid": { "description": "品类单位id", "type": "integer" }, "unitidname": { "description": "品类单位名称", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "wrstandardcode": { "description": "现货商品(品类)代码", "type": "string" }, "wrstandardid": { "description": "现货品类ID", "type": "integer" }, "wrstandardname": { "description": "现货商品(品类)名称", "type": "string" } } }, "models.Ermcp3AreaStock": { "type": "object", "required": [ "userid" ], "properties": { "brandname": { "description": "品牌名称", "type": "string" }, "curstock": { "description": "期末库存量(今日量)", "type": "number" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种id", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodsunitid": { "description": "现货商品单位id", "type": "integer" }, "oristock": { "description": "期初库存量(昨日量)", "type": "number" }, "spotgoodsbrandid": { "description": "现货品牌ID", "type": "integer" }, "todaybuyinqty": { "description": "今日采购入库量", "type": "number" }, "todayproduceinqty": { "description": "今日生产入库量", "type": "number" }, "todayproduceoutqty": { "description": "今日生产出库量", "type": "number" }, "todayselloutqty": { "description": "今日销售出库量", "type": "number" }, "unitid": { "description": "单位id", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "机构ID", "type": "integer" }, "username": { "description": "机构名称", "type": "string" }, "warehousecode": { "description": "仓库代码", "type": "string" }, "warehouseinfoid": { "description": "仓库ID", "type": "string" }, "warehousename": { "description": "仓库名称", "type": "string" }, "warehousetype": { "description": "仓库类型 - 1 厂库 2 自有库 3 合作库", "type": "integer" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类ID", "type": "string" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "models.Ermcp3AreaStockApply": { "type": "object", "properties": { "applyid": { "description": "申请人", "type": "integer" }, "applyname": { "description": "申请人名称", "type": "string" }, "applyremark": { "description": "申请备注", "type": "string" }, "applysrc": { "description": "申请来源 - 1:管理端 2:终端", "type": "integer" }, "applystatus": { "description": "申请状态 - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "auditid": { "description": "审核人", "type": "integer" }, "auditname": { "description": "审核人名称", "type": "string" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "audittradedate": { "description": "审核交易日(yyyyMMdd)", "type": "string" }, "brandname": { "description": "品牌名称", "type": "string" }, "buynickname": { "description": "采购方昵称", "type": "string" }, "buyuserid": { "description": "采购方userid", "type": "integer" }, "buyusername": { "description": "采购方名称", "type": "string" }, "contractno": { "description": "合同编号", "type": "string" }, "contractqty": { "description": "合同量", "type": "number" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种id", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "detailjson": { "description": "明细数据", "type": "string" }, "enumdicname": { "description": "现货商品单位名称", "type": "string" }, "inoutapplyid": { "description": "申请ID(607+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "inouttype": { "description": "出入库类型 - 5:采购入库 6:销售出库 7:生产入库 8:生产出库", "type": "integer" }, "pricetype": { "description": "定价类型 - 1:一口价 2:点价 3:暂定价", "type": "integer" }, "qty": { "description": "数量", "type": "number" }, "sellnickname": { "description": "销售方昵称", "type": "string" }, "selluserid": { "description": "销售方userid", "type": "integer" }, "sellusername": { "description": "销售方名称", "type": "string" }, "spotcontractid": { "description": "关联现货合同ID", "type": "string" }, "spotgoodsbrandid": { "description": "现货品牌ID", "type": "integer" }, "unitid": { "description": "单位id", "type": "integer" }, "userid": { "description": "机构ID", "type": "integer" }, "warehousecode": { "description": "仓库代码", "type": "string" }, "warehouseinfoid": { "description": "现货仓库ID", "type": "string" }, "warehousename": { "description": "仓库名称", "type": "string" }, "warehousetype": { "description": "仓库类型 - 1 厂库 2 自有库 3 合作库", "type": "integer" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类ID", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "models.Ermcp3AreaStockApplySum": { "type": "object", "properties": { "brandname": { "description": "品牌名称", "type": "string" }, "inouttype": { "description": "出入库类型 - 5:采购入库 6:销售出库 7:生产入库 8:生产出库", "type": "integer" }, "spotcontractid": { "description": "关联现货合同ID", "type": "string" }, "spotgoodsbrandid": { "description": "品牌id", "type": "integer" }, "totalqty": { "description": "总数量", "type": "number" }, "wrstandardid": { "description": "品类id", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "models.Ermcp3AreaStockReportEx": { "type": "object", "properties": { "begindate": { "description": "开始交易日", "type": "string" }, "brandname": { "description": "品牌名称", "type": "string" }, "curstock": { "description": "期末库存量", "type": "number" }, "cycletime": { "description": "周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(0)【原值】", "type": "string" }, "cycletype": { "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】", "type": "integer" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种id", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "diffqty": { "description": "库存变化量 = 期末 - 期初", "type": "number" }, "enddate": { "description": "结束交易日", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodsunitid": { "description": "现货单位id", "type": "integer" }, "oristock": { "description": "期初库存量", "type": "number" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "spotgoodsbrandid": { "description": "现货品牌ID", "type": "integer" }, "todaybuyinqty": { "description": "今采购入库量", "type": "number" }, "todayproduceinqty": { "description": "今内部入库量", "type": "number" }, "todayproduceoutqty": { "description": "今内部出库量", "type": "number" }, "todayselloutqty": { "description": "今销售出库量", "type": "number" }, "unbuyinqty": { "description": "采购未入库量(数据库未找到相关字段?)", "type": "number" }, "unitid": { "description": "品类单位id", "type": "integer" }, "unselloutqty": { "description": "销售未出库量(数据库未找到相关字段?)", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "机构ID", "type": "integer" }, "username": { "description": "机构名称", "type": "string" }, "warehousecode": { "description": "仓库代码", "type": "string" }, "warehouseinfoid": { "description": "仓库ID", "type": "string" }, "warehousename": { "description": "仓库名称", "type": "string" }, "warehousetype": { "description": "仓库类型 - 1 厂库 2 自有库 3 合作库", "type": "integer" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类ID", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "models.Ermcp3ArealSumPL": { "type": "object", "properties": { "accountname": { "description": "机构名称", "type": "string" }, "areauserid": { "description": "所属机构\\交易用户ID", "type": "integer" }, "begindate": { "description": "开始交易日", "type": "string" }, "currencyid": { "description": "结算币种ID", "type": "integer" }, "currencyname": { "description": "币种名称", "type": "string" }, "cycletime": { "description": "周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(0)【原值】", "type": "string" }, "cycletype": { "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】", "type": "integer" }, "enddate": { "description": "结束交易日", "type": "string" }, "enumdicname": { "description": "单位名称(套保品种)", "type": "string" }, "futureactualpl": { "description": "期货损益", "type": "number" }, "futurefloatpl": { "description": "期货浮动损益", "type": "number" }, "futurespotratio": { "description": "期现比例 = 期货头寸总量 / 现货头寸总量", "type": "number" }, "goodsunitid": { "description": "套保品种单位id", "type": "integer" }, "hedgeexposurepl": { "description": "套保敞口损益", "type": "number" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种ID(SEQ_ERMS_MIDDLEGOODS)", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "spotactualpl": { "description": "现货损益", "type": "number" }, "spotfloatpl": { "description": "现货浮动损益", "type": "number" }, "sumactualpl": { "description": "实际损益 = (ActualPL + FutureActualPL)", "type": "number" }, "sumpl": { "description": "总敞口损益 | 汇总损益", "type": "number" }, "totalfutureqty": { "description": "期货头寸总量", "type": "number" }, "totalneedhedgeqty": { "description": "应套保总量", "type": "number" }, "totalspotqty": { "description": "现货头寸总量", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.Ermcp3Brand": { "type": "object", "properties": { "areauserid": { "description": "用户id", "type": "integer" }, "brandid": { "description": "品牌id", "type": "integer" }, "brandname": { "description": "品牌名称", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "isvalid": { "description": "是否有效", "type": "integer" } } }, "models.Ermcp3Contract": { "type": "object", "properties": { "accountid": { "description": "期货账户id", "type": "string" }, "amount": { "description": "金额 [1:一口价、3:暂定价]", "type": "number" }, "attachment": { "description": "附件", "type": "string" }, "auditremark": { "description": "审核意见", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "biztype": { "description": "业务类型 1-套保 2-套利", "type": "integer" }, "brandname": { "description": "品牌名称", "type": "string" }, "buynickname": { "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" }, "currencyid": { "description": "币种id", "type": "integer" }, "currencyname": { "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" }, "meruserid": { "description": "跟单员id", "type": "integer" }, "meruserlogincode": { "description": "跟单员登录代码", "type": "string" }, "merusername": { "description": "跟单员名称", "type": "string" }, "pointdesc": { "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" }, "saleuserid": { "description": "业务员id", "type": "integer" }, "saleuserlogincode": { "description": "业务员登录代码", "type": "string" }, "saleusername": { "description": "业务员名称", "type": "string" }, "sellnickname": { "description": "采购方昵称", "type": "string" }, "selluserid": { "description": "销售方ID", "type": "integer" }, "sellusername": { "description": "销售方名称", "type": "string" }, "spotcontractid": { "description": "现货合同ID(602+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "spotgoodsbrandid": { "description": "现货品牌ID(DGFactoryItem表的ID)", "type": "integer" }, "spotgoodsdesc": { "description": "商品型号", "type": "string" }, "startdate": { "description": "点价开始日期 [2:点价 3:暂定价]", "type": "string" }, "subjectid": { "description": "交易主体ID", "type": "integer" }, "subjectname": { "description": "交易主体名称", "type": "string" }, "tradeuserid": { "description": "交易员id", "type": "integer" }, "tradeuserlogincode": { "description": "交易员登录代码", "type": "string" }, "tradeusername": { "description": "交易员名称", "type": "string" }, "unitid": { "description": "单位id(取品类上的单位id)", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "所属机构ID", "type": "integer" }, "vatrate": { "description": "增值税率", "type": "number" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类ID", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "models.Ermcp3ContractMiddleGoodsCfg": { "type": "object", "properties": { "agreeunit": { "description": "合约乘数", "type": "number" }, "convertratio": { "description": "期货品种系数", "type": "number" }, "covertqty": { "description": "折算手数 =【待点价量 / (合约乘数*期货品种系数) 】", "type": "integer" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "middlegoodspricedqty3": { "description": "已定价量(套保品种应套保量) = MiddleGoodsPricedQty2 * 套保比率", "type": "string", "example": "0" }, "pendingpricedqty": { "description": "待点价量", "type": "string", "example": "0" }, "relatedmiddlegoodsqty": { "description": "已关联量(套保品种-期货)", "type": "string", "example": "0" }, "spotcontractid": { "description": "现货合同ID(602+Unix秒时间戳(10位)+xxxxxx)", "type": "string" } } }, "models.Ermcp3ExposureContractDetail": { "type": "object", "properties": { "biztype": { "description": "业务类型 1-套保 2-套利", "type": "integer" }, "brandname": { "description": "品牌名称", "type": "string" }, "buyuserid": { "description": "采购方id", "type": "integer" }, "buyusername": { "description": "采购方名称", "type": "string" }, "contractno": { "description": "合同编号", "type": "string" }, "contracttype": { "description": "现货合同类型 - 1:采购 -1:销售", "type": "integer" }, "convertfactor": { "description": "标仓系数", "type": "number" }, "convertratio": { "description": "折算系数(套保品种)", "type": "number" }, "curqty": { "description": "今定价量", "type": "number" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种id", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "diffhedgeqty": { "description": "套保变动量", "type": "number" }, "diffneedhedgeqty": { "description": "应套保变动量", "type": "number" }, "diffqty": { "description": "套保品种今变动量", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "mgunitname": { "description": "套保品种单位名称", "type": "string" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种id", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "needarbitrageratio": { "description": "应套利比例", "type": "number" }, "needhedgeratio": { "description": "应套保比例", "type": "number" }, "pricedqty": { "description": "已定价量", "type": "number" }, "qty": { "description": "合同量", "type": "number" }, "reckondate": { "description": "交易日(reckondate)", "type": "string" }, "selluserid": { "description": "销售方id", "type": "integer" }, "sellusername": { "description": "销售方名称", "type": "string" }, "spotcontractid": { "description": "合同id", "type": "string" }, "todaypricedqty": { "description": "今定价量", "type": "number" }, "tradedate": { "description": "交易日", "type": "string" }, "unitid": { "description": "品类单位id", "type": "integer" }, "userid": { "description": "机构id", "type": "integer" }, "username": { "description": "交易用户", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品id", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.Ermcp3ExposureDetail": { "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" }, "mgunitid": { "description": "套保品种单位id", "type": "integer" }, "mgunitidname": { "description": "套保品种单位名称", "type": "string" }, "middlegoodsId": { "description": "套保商品id", "type": "integer" }, "middlegoodscode": { "description": "套保商品代码", "type": "string" }, "middlegoodsname": { "description": "套保商品名称", "type": "string" }, "qty": { "description": "数量", "type": "number" }, "relateNo": { "description": "现货合同/套保计划编号", "type": "string" }, "unitid": { "description": "现货商品单位id", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(SEQ_WRSTANDARD)", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.Ermcp3ExposureFutuDetail": { "type": "object", "properties": { "accountid": { "description": "交易账户id", "type": "integer" }, "accountname": { "description": "交易账户", "type": "string" }, "begindate": { "description": "开始交易日", "type": "string" }, "buyorsell": { "description": "方向 0-买 1-卖", "type": "integer" }, "diffmgqty": { "description": "套保品种今变化量", "type": "number" }, "diffneedqty": { "description": "应套保总量变化量", "type": "number" }, "difftradeqty": { "description": "交易品种今变化量", "type": "number" }, "enddate": { "description": "结束交易日", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品id", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "holdqty": { "description": "期末持仓量", "type": "number" }, "middlegoodscode": { "description": "套保商品代码", "type": "string" }, "middlegoodsid": { "description": "套保商品id", "type": "integer" }, "middlegoodsname": { "description": "套保商品名称", "type": "string" }, "oriholdqty": { "description": "期初持仓量", "type": "number" }, "reckondate": { "description": "交易日(RECKONDATE)", "type": "string" }, "todaycloseqty": { "description": "今平仓量", "type": "number" }, "todayopenqty": { "description": "今开仓量", "type": "number" }, "tradedate": { "description": "交易日(RECKONDATE)", "type": "string" }, "username": { "description": "用户名称(交易用户)", "type": "string" } } }, "models.Ermcp3ExposureHedgeplanDetail": { "type": "object", "properties": { "biztype": { "description": "业务类型(期现用途,业务类型就是期现用途) 1-套保 2-套利", "type": "integer" }, "changqty": { "description": "应套保总量变化量", "type": "number" }, "contracttype": { "description": "计划类型 - 1:采购 -1:销售", "type": "integer" }, "convertratio": { "description": "折算系数(套保品种)", "type": "number" }, "deliverygoodscode": { "description": "现货商品代码", "type": "string" }, "deliverygoodsid": { "description": "现货商品id", "type": "integer" }, "deliverygoodsname": { "description": "现货商吕名称", "type": "string" }, "dgunitid": { "description": "现货商品单位id", "type": "integer" }, "dgunitidname": { "description": "单位名称(现货商品)", "type": "string" }, "diffqty": { "description": "套保品种今变动量", "type": "number" }, "enumdicname": { "description": "单位名称(品类)", "type": "string" }, "hedgeplanid": { "description": "套保计划id", "type": "string" }, "hedgeplanno": { "description": "套保计划名称", "type": "string" }, "hedgeplanstatus": { "description": "套保计划状态 - 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "type": "integer" }, "mgunitidname": { "description": "单位名称(套保商品)", "type": "string" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种id", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "needarbitrageratio": { "description": "应套利比例", "type": "number" }, "needhedgeratio": { "description": "应套保比例", "type": "number" }, "pricedqty": { "description": "已定价量", "type": "number" }, "qty": { "description": "合同量", "type": "number" }, "reckondate": { "description": "交易日(reckondate)", "type": "string" }, "tradedate": { "description": "交易日(登记日)", "type": "string" }, "unitid": { "description": "品类单位id", "type": "integer" }, "userid": { "description": "机构id", "type": "integer" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类id", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "models.Ermcp3ExposureParamChLog": { "type": "object", "properties": { "accountid": { "description": "期货账户ID (作废, 默认为0)", "type": "integer" }, "aftervalue": { "description": "应套保\\套利量变更后(调整后应套保总量)", "type": "number" }, "areauserid": { "description": "所属机构\\交易用户ID", "type": "integer" }, "beforevalue": { "description": "应套保\\套利量变更前(调整前应套保总量)", "type": "number" }, "begindate": { "description": "开始交易日", "type": "string" }, "changelogtype": { "description": "变更流水类型 - 1:套保比率变更 2:套利比率变更", "type": "integer" }, "curvalue": { "description": "当前套保\\套利量(套保总量|套利总量)", "type": "number" }, "diffvalue": { "description": "应套保总量变化量", "type": "number" }, "enddate": { "description": "结束交易日", "type": "string" }, "logdatetime": { "description": "流水日期", "type": "string" }, "logid": { "description": "流水ID(609+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "paramaftervalue": { "description": "参数变更后(调整后参数值)", "type": "number" }, "parambeforevalue": { "description": "参数变更前(调整前参数值)", "type": "number" }, "reckondate": { "description": "交易日(reckondate)", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" } } }, "models.Ermcp3ExpourseReport": { "type": "object", "properties": { "accountid": { "description": "期货账户ID (作废, 默认为0)", "type": "integer" }, "accountname": { "description": "机构名称", "type": "string" }, "arbitrageqty": { "description": "套利量", "type": "number" }, "areauserid": { "description": "所属机构\\交易用户ID", "type": "integer" }, "begindate": { "description": "开始交易日", "type": "string" }, "buyfutureqty": { "description": "买入期货数量", "type": "number" }, "buyplanqty": { "description": "采购计划数量", "type": "number" }, "buypricedqty": { "description": "采购合同已定价数量", "type": "number" }, "cycletime": { "description": "周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(0)【原值】", "type": "string" }, "cycletype": { "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】", "type": "integer" }, "diffexposure": { "description": "变动量(套保敞口)", "type": "number" }, "difffutuqty": { "description": "变动量(期货)", "type": "number" }, "diffhedgeqty": { "description": "变动量(现货应套保总量)", "type": "number" }, "diffmgqtya": { "description": "套保变动量", "type": "number" }, "diffmgqtyb": { "description": "套利变动量", "type": "number" }, "diffneedqty": { "description": "应套变动量 = 应套保量 - 期初应套保量 + 应套利量 - 期初应套利量", "type": "number" }, "diffqty": { "description": "变动量(总敞口)", "type": "number" }, "diffspotqty": { "description": "变动量(现货) | 除税变动量", "type": "number" }, "enddate": { "description": "结束交易日", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "hedgeqty": { "description": "套保量", "type": "number" }, "mgneedhedgeratio": { "description": "套保比例(套保品的)", "type": "number" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "middlegoodsname": { "description": "套保商品名称", "type": "string" }, "middlgoodscode": { "description": "套保商品代码", "type": "string" }, "needarbitrageqty": { "description": "应套利量", "type": "number" }, "needarbitrageratio": { "description": "套利比例(套保品的)", "type": "number" }, "needhedgeexposoure": { "description": "应套保敞口(套保敞口)", "type": "number" }, "needhedgeqty": { "description": "应套保量", "type": "number" }, "needhedgeratio": { "description": "应套保敞口比例", "type": "number" }, "needqty": { "description": "应套总量 = 应套保量 + 应套利量", "type": "number" }, "oriarbitrageqty": { "description": "期初套利量", "type": "number" }, "oribuyfutureqty": { "description": "期初买入期货数量", "type": "number" }, "oribuyplanqty": { "description": "期初采购计划数量", "type": "number" }, "oribuypricedqty": { "description": "期初采购合同已定价数量", "type": "number" }, "orihedgeqty": { "description": "期初套保量", "type": "number" }, "orineedarbitrageqty": { "description": "期初应套利量", "type": "number" }, "orineedhedgeexposoure": { "description": "期初应套保敞口", "type": "number" }, "orineedhedgeqty": { "description": "期初应套保量", "type": "number" }, "orisellfutureqty": { "description": "期初卖出期货数量", "type": "number" }, "orisellplanqty": { "description": "期初销售计划数量", "type": "number" }, "orisellpricedqty": { "description": "期初销售合同已定价数量", "type": "number" }, "oritotalexposure": { "description": "期初实时总敞口", "type": "number" }, "oritotalfutureqty": { "description": "期初期货头寸总量", "type": "number" }, "oritotalneedhedgeqty": { "description": "期初应套保总量", "type": "number" }, "oritotalspotqty": { "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" }, "unitid": { "description": "单位id", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.Ermcp3FinanceReport": { "type": "object", "properties": { "accountname": { "description": "机构名称", "type": "string" }, "areauserid": { "description": "所属机构\\交易用户ID", "type": "integer" }, "begindate": { "description": "开始交易日", "type": "string" }, "biztype": { "description": "业务类型 - 1:套保 2:套利", "type": "integer" }, "brandname": { "description": "品牌名称", "type": "string" }, "buypreinvoicedamount": { "description": "采购预收票额(预收票额)", "type": "number" }, "buyprepaidamount": { "description": "采购预付款额(预付货款额)", "type": "number" }, "buytodayinvoiceamount": { "description": "采购今收票额(今收票额)", "type": "number" }, "buytodayrefundamount": { "description": "采购今收退款额(今收退款额)", "type": "number" }, "buytodaysettleamount": { "description": "采购今付款额(今付货款额)", "type": "number" }, "buyuninvoicedamount": { "description": "采购应收票额(应收票额)", "type": "number" }, "buyunpaidamount": { "description": "采购应付款额(应付货款额)", "type": "number" }, "currencyid": { "description": "结算币种ID", "type": "integer" }, "currencyname": { "description": "币种名称", "type": "string" }, "cycletime": { "description": "周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(0)【原值】", "type": "string" }, "cycletype": { "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】", "type": "integer" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "enddate": { "description": "结束交易日", "type": "string" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "sellpreinvoicedamount": { "description": "销售预开票额(预开票额)", "type": "number" }, "sellprepaidamount": { "description": "销售预收款额(预收货款额)", "type": "number" }, "selltodayinvoiceamount": { "description": "销售今开票额(今开票额)", "type": "number" }, "selltodayrefundamount": { "description": "销售今付退款额(今付退款额)", "type": "number" }, "selltodaysettleamount": { "description": "销售今收款额(今收货款额)", "type": "number" }, "selluninvoicedamount": { "description": "销售应开票额(应开票额)", "type": "number" }, "sellunpaidamount": { "description": "销售应收款额(应收货款额)", "type": "number" }, "spotgoodsbrandid": { "description": "现货品牌ID", "type": "integer" }, "todaypaysum": { "description": "今付款合计", "type": "number" }, "todayreceivesum": { "description": "今收款合计", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "models.Ermcp3GoodsGroup": { "type": "object", "required": [ "areauserid" ], "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "areauserid": { "description": "所属机构id(套保品是有areauserid的,当要排除已配置商品组时需要areauserid过滤)", "type": "integer" }, "canshort": { "description": "是否允许做空[通道交易] - 0:不能做空 1:可以做空", "type": "integer" }, "closepricemode": { "description": "强平价格方式 - 1:市价 2:最新价 3:涨跌停(未实现)", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "currencyid": { "description": "报价货币ID", "type": "integer" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "exchangefullname": { "description": "交易所全称", "type": "string" }, "excludecfg": { "description": "排除套保品已配置期货分类下的商品组(但显示已配置商品组) 1-排除", "type": "integer" }, "exexchangecode": { "description": "交易所代码", "type": "string" }, "exexchangeid": { "description": "外部交易所ID[通道交易]", "type": "integer" }, "exexchangename": { "description": "交易所名称", "type": "string" }, "goodsgroupid": { "description": "商品组ID(自增ID)", "type": "integer" }, "goodsgroupname": { "description": "商品组名称", "type": "string" }, "goodsgroupstatus": { "description": "商品组状态 - 1:正常 2:注销", "type": "integer" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "groupcategroyid": { "description": "品种分类ID", "type": "integer" }, "innerdealmode": { "description": "内部成交方式[通道交易] - 1:净头寸 2:开平 3:平今", "type": "integer" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "modifierid": { "description": "修改人", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "outerdealmode": { "description": "外部成交方式[通道交易]- 1:净头寸 2:开平 3:平今", "type": "integer" }, "outergroupcode": { "description": "外部商品组代码[通道交易]", "type": "string" }, "quoteminunit": { "description": "行情最小变动单位 [整数,报价小数位一起使用]", "type": "integer" }, "quotesourcegroupid": { "description": "所属行情源分组ID[参考行情市场用\\通道交易]", "type": "integer" }, "syncgoodsqty": { "description": "同步合约数[通道交易-投资管理用] - 0表示不限", "type": "integer" } } }, "models.Ermcp3HPMiddleGoods": { "type": "object", "properties": { "biztype": { "description": "业务类型 1:套保 2:套利", "type": "integer" }, "contracttype": { "description": "合同类型 1:采购 -1:销售", "type": "integer" }, "convertratio": { "description": "折算系数", "type": "number" }, "customername": { "description": "对手手名称", "type": "string" }, "customeruserid": { "description": "对手id", "type": "integer" }, "enumdicname": { "description": "现货单位名称", "type": "string" }, "hedgeplanid": { "description": "计划id", "type": "string" }, "hedgeplanno": { "description": "计划编号", "type": "string" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "middlegoodsplanqty3": { "description": "应套保计划量", "type": "number" }, "needhedgeratio": { "description": "套保比例", "type": "number" }, "pricedqty": { "description": "已定价量", "type": "number" }, "relatedmiddlegoodsqty": { "description": "已关联量(套保品种)(期货)", "type": "number" }, "unitid": { "description": "现货单位id", "type": "integer" }, "userid": { "description": "用户id", "type": "integer" }, "vatrate": { "description": "增值税率", "type": "number" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品id", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.Ermcp3HedgePlan": { "type": "object", "properties": { "accountid": { "description": "资金账号", "type": "integer" }, "areauserid": { "description": "用户ID", "type": "integer" }, "auditid": { "description": "审核id", "type": "integer" }, "auditname": { "description": "审核人名称", "type": "string" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 1-管理端 2-终端", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "contracttype": { "description": "计划类型 - 1:采购 -1:销售", "type": "integer" }, "convertfactor": { "description": "标仓系数", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "currencyid": { "description": "币种id", "type": "integer" }, "currencyname": { "description": "币种名称", "type": "string" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "enumdicname": { "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" }, "taaccountname": { "description": "资金账号名称", "type": "string" }, "tradeuserid": { "description": "交易用户id", "type": "integer" }, "tradeusername": { "description": "交易用户名称", "type": "string" }, "unitid": { "description": "单位id(现货商品)", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" }, "vatrate": { "description": "增值税率", "type": "number" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类id", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" }, "wrunitid": { "description": "品类单位id", "type": "integer" }, "wrunitidame": { "description": "品类单位名称", "type": "string" } } }, "models.Ermcp3InnerTradeLink": { "type": "object", "properties": { "accountid": { "description": "期货账号代码 | 资金账号ID", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "channelbuildtype": { "description": "委托单据类型 0:无 1:建仓 2:平仓", "type": "integer" }, "currencyid": { "description": "币种id", "type": "integer" }, "currencyname": { "description": "结算币种 名称", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "outtradeid": { "description": "外部成交单号", "type": "string" }, "taname": { "description": "期货账户名称", "type": "string" }, "tradeid": { "description": "期货单号 | 内部成交单号(108+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeqty": { "description": "期货成交数量", "type": "integer" }, "tradetime": { "description": "关联时间 | 成交时间 ps:因为数据库表里没有关联时间, 所以取外部成交单的成交时间", "type": "string" }, "username": { "description": "用户名称", "type": "string" } } }, "models.Ermcp3OutTradeLink": { "type": "object", "properties": { "buyorsell": { "description": "买卖方向 - 0:买 1:卖", "type": "integer" }, "channelbuildtype": { "description": "开平标志- 0:无 1:建仓 2:平仓", "type": "integer" }, "currencyname": { "description": "币种名称", "type": "string" }, "exexchangecode": { "description": "交易所代码", "type": "string" }, "exexchangename": { "description": "交易所名称", "type": "string" }, "goodscode": { "description": "合约代码", "type": "string" }, "goodsid": { "description": "合约id", "type": "integer" }, "goodsname": { "description": "合约名称", "type": "string" }, "hasinnerorder": { "description": "是否有内部单关联 - 0:无 1:有", "type": "integer" }, "hedgeaccountcode": { "description": "外部账号 | 对冲账号", "type": "string" }, "outtradeid": { "description": "外部订单号 | 外部成交单ID(114+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "tradetime": { "description": "成交时间", "type": "string" } } }, "models.Ermcp3PaAreaAuditCfg": { "type": "object", "properties": { "areauserid": { "description": "用户ID", "type": "integer" }, "buyinauditflag": { "description": "采购入库是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "costratioauditflag": { "description": "现货商品成本权重修改是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "customerauditflag": { "description": "客户资料是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "deliveryauditflag": { "description": "交收是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "invoiceauditflag": { "description": "发票是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "mgneedhedgeratioauditflag": { "description": "套保品种套保比例修改是否需要审 - 0:不需审核 1:需要审核", "type": "integer" }, "moneyauditflag": { "description": "款项是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "operatorid": { "description": "操作人", "type": "integer" }, "operatorsrc": { "description": "操作来源 - 1:管理端 2:终端", "type": "integer" }, "pointpriceauditflag": { "description": "点价是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "produceinauditflag": { "description": "生产入库是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "produceoutauditflag": { "description": "生产出库是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "selloutauditflag": { "description": "销售出库是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "sgconvertratioauditflag": { "description": "现货商品折算系数修改是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "sgvtaratioauditflag": { "description": "现货商品增值税税率修改是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "spotcontractauditflag": { "description": "现货合同是否需要审核 - 0:不需审核 1:需要审核", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.Ermcp3PaAreaSubject": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "canmodify": { "description": "是否可修改 - 0:否 1:是", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人ID", "type": "string" }, "creatorsrc": { "description": "创建人来源 - 1:管理端 2:终端 3:交易", "type": "integer" }, "modifierid": { "description": "修改人", "type": "string" }, "modifiersrc": { "description": "修改人来源 - 1:管理端 2:终端", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "parentsubjectid": { "description": "上级主体ID", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "subjectid": { "description": "主体ID(SEQ_ERMCP_PA_AREASUBJECT)", "type": "integer" }, "subjectname": { "description": "主体名称", "type": "string" }, "subjectstatus": { "description": "主体状态 - 1:正常 2: 停用", "type": "integer" }, "subjecttype": { "description": "主体类型 - 1:交易主体 2:业务部门", "type": "integer" } } }, "models.Ermcp3PaTradeLink": { "type": "object", "properties": { "accountid": { "description": "期货账户代码 | 账号ID", "type": "integer" }, "agreeunit": { "description": "合约乘数", "type": "number" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "channelbuildtype": { "description": "委托单据类型 0:无 1:建仓 2:平仓", "type": "integer" }, "charge": { "description": "手续费", "type": "number" }, "closepl": { "description": "平仓盈亏", "type": "number" }, "closetype": { "description": "平仓方式 - 0:无 1:平今 2:平昨", "type": "integer" }, "convertratio": { "description": "折算系数", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "executeprice": { "description": "执行价 [期权]", "type": "integer" }, "goodscode": { "description": "合约代码", "type": "string" }, "goodsgroupid": { "description": "对冲品种ID[期货合约商品组ID]", "type": "integer" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "合约名称", "type": "string" }, "goodunitid": { "description": "单位id", "type": "integer" }, "hedgeflag": { "description": "投机套保标志 - 0:无 1:投机 2:套保 3:套利 4:套期保值(平安\\合同) 5:单边(平安) 6:移仓(平安) 7:错单处理(平安) 8:跨期套利(平安) 9:套期保值(计划) 10:套利(合同) 11:换月(合同) 12:交割(金瑞)", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "middlegoodsqty": { "description": "套保品种数量 = TradeQty * AgreeUnit * ConvertRatio", "type": "number" }, "optioncode": { "description": "期权代码 [期权]", "type": "string" }, "ordertype": { "description": "单据类型 - 1:期货单 2:看涨期权单 3:看跌期权单", "type": "integer" }, "ordertypename": { "description": "订单类型", "type": "string" }, "parentaccountid": { "description": "所属母账户", "type": "integer" }, "premium": { "description": "权利金 [期权]", "type": "number" }, "relatedlot": { "description": "已关联数量(已关联数量手) | db:关联手数", "type": "number" }, "relatedouttradeid": { "description": "关联外部成交单ID", "type": "string" }, "relatedqty": { "description": "关联数量", "type": "number" }, "spotcontractid": { "description": "现货合同ID [4:套期保值\\10\\11]", "type": "string" }, "taname": { "description": "期货账户名称", "type": "string" }, "tradeamount": { "description": "成交金额(账户)", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "期货单号 | db:成交单号(108+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "tradelot": { "description": "成交数量(期货数量) ps:这是手数,转换为具体多少吨要乘以AGREEUNIT | db:成交手数", "type": "integer" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradetime": { "description": "时间 | db:成交时间", "type": "string" }, "tradetype": { "description": "成交类别 - 1:正常委托成交 2:风控斩仓成交 3:修正持仓成交 4:管理端斩仓成交", "type": "integer" }, "userid": { "description": "所属机构 - 所属母账户的UserID", "type": "string" }, "username": { "description": "用户名称", "type": "string" } } }, "models.Ermcp3ParamChangeApp": { "type": "object", "properties": { "aftervalue": { "description": "变更后", "type": "number" }, "applicationid": { "description": "申请ID(619+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "applyid": { "description": "申请人", "type": "string" }, "applyname": { "description": "申请人名称(代码)", "type": "string" }, "applyremark": { "description": "申请备注", "type": "string" }, "applysrc": { "description": "申请来源 - 1:管理端 2:终端", "type": "integer" }, "applystatus": { "description": "申请状态 - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "areauserid": { "description": "所属机构用户ID", "type": "integer" }, "auditid": { "description": "审核人", "type": "string" }, "auditname": { "description": "审核人名称(代码)", "type": "string" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "audittradedate": { "description": "审核交易日(yyyyMMdd)", "type": "string" }, "beforevalue": { "description": "变更前", "type": "number" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种id", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种ID [ParamChangeType = 2,3,4]", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "operatetype": { "description": "操作类型 - 1:新增 2:修改", "type": "integer" }, "paramchangetype": { "description": "参数变更类型 - 1:增值税率变更(现货商品) 2:折算系数变更(现货商品) 3:成本权重(现货商品) 4:套保比率变更(套保品种)", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID [ParamChangeType = 1,2,3]", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.Ermcp3RootUserAccount": { "type": "object", "properties": { "accountname": { "description": "账户名称(机构名称)", "type": "string" }, "accountstatus": { "description": "账户状态 - 1:待激活 2:待审核 3:待复审 4:正常 5:审核拒绝 6:停用(注销) 7:注销(删除)", "type": "integer" }, "applysrc": { "description": "申请来源 - 1:管理端 2:终端", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "audituserid": { "description": "审核人", "type": "integer" }, "broker": { "description": "所属经纪人ID", "type": "integer" }, "canceltime": { "description": "销户时间", "type": "string" }, "canceluserid": { "description": "销户人", "type": "integer" }, "canrecommend": { "description": "是否可推荐 - 0:不可 1;可", "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" }, "nickname": { "description": "昵称", "type": "string" }, "parenttopuser": { "description": "上级顶级机构 [092=0,1时,默认为1, 092=2时若自已为顶级,则填入自己,自己不为顶级,填入ParentUserID的\"ParentTopUser\"]", "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" }, "rootuserid": { "description": "根用户ID", "type": "integer" }, "subaccountlevel": { "description": "子账户层数", "type": "integer" }, "subarealevelpath": { "description": "子机构层级路径(逗号分隔,首尾加逗号)", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "usertype": { "description": "账户类型 - 1:交易所 2:机构 3:会员子机构 4:经纪人 5:投资者 6:客户 7:企业成员(云平台)", "type": "integer" } } }, "models.Ermcp3SCMiddleGoods": { "type": "object", "properties": { "biztype": { "description": "业务类型 1:套保 2:套利", "type": "integer" }, "contractno": { "description": "合同编号", "type": "string" }, "contracttype": { "description": "合同类型 1:采购 -1:销售", "type": "integer" }, "convertratio": { "description": "折算系数", "type": "number" }, "customername": { "description": "对手手名称", "type": "string" }, "customeruserid": { "description": "对手id", "type": "integer" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "enumdicname": { "description": "现货单位名称", "type": "string" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "middlegoodspricedqty3": { "description": "应套保数量 = MiddleGoodsPricedQty2 * 套保比率", "type": "number" }, "needhedgeratio": { "description": "套保比例", "type": "number" }, "pricedqty": { "description": "已定价量", "type": "number" }, "relatedmiddlegoodsqty": { "description": "已关联量(套保品种)(期货)", "type": "number" }, "spotcontractid": { "description": "合同编号", "type": "string" }, "unitid": { "description": "现货单位id", "type": "integer" }, "userid": { "description": "用户id", "type": "integer" }, "vatrate": { "description": "增值税率", "type": "number" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品id", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.Ermcp3SCMiddleGoodsReport": { "type": "object", "properties": { "begindate": { "description": "开始交易日", "type": "string" }, "contractno": { "description": "合同编号", "type": "string" }, "contracttype": { "description": "合同类型 1:采购 -1:销售", "type": "integer" }, "convertratio": { "description": "期初均价", "type": "number" }, "cycletime": { "description": "周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(0)【原值】", "type": "string" }, "cycletype": { "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】", "type": "integer" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "diffprice": { "description": "期初均价", "type": "number" }, "diffqty": { "description": "期初均价", "type": "number" }, "enddate": { "description": "结束交易日", "type": "string" }, "hedgeplanqty": { "description": "期初均价", "type": "number" }, "matchname": { "description": "交易对手方(个人:用户名称 企业:简称)", "type": "string" }, "matchnickname": { "description": "交易对手方昵称", "type": "string" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "middlegoodspricedqty": { "description": "期初均价", "type": "number" }, "middlegoodspricedqty2": { "description": "期初均价", "type": "number" }, "middlegoodspricedqty3": { "description": "期初均价", "type": "number" }, "needhedgeratio": { "description": "期初均价", "type": "number" }, "pricedamount": { "description": "期初均价", "type": "number" }, "pricedamount2": { "description": "期初均价", "type": "number" }, "pricedqty": { "description": "期初均价", "type": "number" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "relatedmiddlegoodsamount": { "description": "期初均价", "type": "number" }, "relatedmiddlegoodsqty": { "description": "期初均价", "type": "number" }, "spotcontractid": { "description": "现货合同ID(602+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "todayavgfutuprice": { "description": "期初均价", "type": "number" }, "todayavgprice": { "description": "期初均价", "type": "number" }, "todayavgprice2": { "description": "期初均价", "type": "number" }, "todaypricedamount": { "description": "期初均价", "type": "number" }, "todaypricedamount2": { "description": "期初均价", "type": "number" }, "todaypricedqty": { "description": "期初均价", "type": "number" }, "todayrelatedfutureqty": { "description": "期初均价", "type": "number" }, "todayrelatedmiddlegoodsamount": { "description": "期初均价", "type": "number" }, "todayrelatedmiddlegoodsqty": { "description": "期初均价", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "合同所属用户id", "type": "integer" }, "vatrate": { "description": "期初均价", "type": "number" }, "wrstandardcode": { "description": "商品(品类) 代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品(品类) 名称", "type": "string" } } }, "models.Ermcp3SellBuyContract": { "type": "object", "properties": { "accountid": { "description": "期货账户id", "type": "string" }, "accountname": { "description": "账户名称", "type": "string" }, "attachment": { "description": "附件", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "bizsubjectid": { "description": "归属业务部门ID - SubjectID", "type": "integer" }, "biztype": { "description": "业务类型 1-套保 2-套利", "type": "integer" }, "brandname": { "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" }, "currencyid": { "description": "币种id", "type": "integer" }, "currencyname": { "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" }, "goodsgroupid": { "description": "点价商品组id", "type": "integer" }, "goodsid": { "description": "点价商品ID", "type": "integer" }, "goodsname": { "description": "点价商品名称", "type": "string" }, "invoiceamount": { "description": "已开票额", "type": "number" }, "loanamount": { "description": "贷款总额=已定价额+调整金额", "type": "number" }, "margin": { "description": "保证金", "type": "number" }, "meruserid": { "description": "跟单员id", "type": "integer" }, "meruserlogincode": { "description": "跟单员登录代码", "type": "string" }, "merusername": { "description": "跟单员名称", "type": "string" }, "nickname": { "description": "账户昵称", "type": "string" }, "orireckonrealqty": { "description": "应交收量", "type": "number" }, "payamount": { "description": "已收付额(收款或付款)", "type": "number" }, "preinvoiceamount": { "description": "预收(开)票额", "type": "number" }, "prepayamount": { "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" }, "saleuserid": { "description": "业务员id", "type": "integer" }, "saleuserlogincode": { "description": "业务员登录代码", "type": "string" }, "saleusername": { "description": "业务员名称", "type": "string" }, "spotcontractid": { "description": "合同ID", "type": "string" }, "spotgoodsbrandid": { "description": "现货品牌ID(DGFactoryItem表的ID)", "type": "integer" }, "spotgoodsdesc": { "description": "商品型号(商品规格)", "type": "string" }, "startdate": { "description": "点价开始日", "type": "string" }, "subjectid": { "description": "交易主体ID", "type": "integer" }, "subjectname": { "description": "交易主体名称", "type": "string" }, "totalamount": { "description": "合计总额", "type": "number" }, "tradeuserid": { "description": "交易员id", "type": "integer" }, "tradeuserlogincode": { "description": "交易员登录代码", "type": "string" }, "tradeusername": { "description": "交易员名称", "type": "string" }, "unpayamount": { "description": "应收付款额(应支付或应收款) | 未付款额", "type": "number" }, "unpricedqty": { "description": "未定价量", "type": "number" }, "unsureqty": { "description": "未确定量 | 未交收量", "type": "number" }, "userid": { "description": "机构ID", "type": "integer" }, "vatrate": { "description": "增值税率", "type": "number" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类ID", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "models.Ermcp3SpotGoodsPrice": { "type": "object", "properties": { "areauserid": { "description": "所属机构id", "type": "integer" }, "brandname": { "description": "品牌名称", "type": "string" }, "currencyid": { "description": "报价货币ID", "type": "integer" }, "currencyname": { "description": "币种名称", "type": "string" }, "deliverygoodscode": { "description": "现货商品代码", "type": "string" }, "deliverygoodsid": { "description": "现货商品id", "type": "integer" }, "deliverygoodsname": { "description": "现货商品名称", "type": "string" }, "enumdicname": { "description": "现货商品单位名称", "type": "string" }, "gbenumdicname": { "description": "品类单位名称", "type": "string" }, "gmunitid": { "description": "品类单位id", "type": "integer" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "operateid": { "description": "最后操作人", "type": "integer" }, "operatesrc": { "description": "最后操作来源 - 1:管理端 2:终端", "type": "integer" }, "operatetime": { "description": "最后操作时间", "type": "string" }, "operatorname": { "description": "操作人名称", "type": "string" }, "spotgoodsbrandid": { "description": "现货品牌ID(通用则为0, 不为0则须先有品类ID)", "type": "integer" }, "spotgoodsprice": { "description": "现货价格", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "unitid": { "description": "现货商品单位id", "type": "integer" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "现货品类ID(通用则为0)", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "models.Ermcp3SpotGoodsPriceLog": { "type": "object", "properties": { "areauserid": { "description": "所属机构id", "type": "integer" }, "brandname": { "description": "品牌名称", "type": "string" }, "currencyid": { "description": "报价货币ID", "type": "integer" }, "deliverygoodscode": { "description": "现货商品代码", "type": "string" }, "deliverygoodsid": { "description": "现货商品id", "type": "integer" }, "deliverygoodsname": { "description": "现货商品名称", "type": "string" }, "enumdicname": { "description": "现货商品单位名称", "type": "string" }, "gbenumdicname": { "description": "品类单位名称", "type": "string" }, "gmunitid": { "description": "品类单位id", "type": "integer" }, "logid": { "description": "日志id", "type": "integer" }, "operateid": { "description": "最后操作人", "type": "integer" }, "operatesrc": { "description": "最后操作来源 - 1:管理端 2:终端", "type": "integer" }, "operatetime": { "description": "最后操作时间", "type": "string" }, "operatorname": { "description": "操作人名称", "type": "string" }, "spotgoodsbrandid": { "description": "现货品牌ID(通用则为0, 不为0则须先有品类ID)", "type": "integer" }, "spotgoodsprice": { "description": "现货价格", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "unitid": { "description": "现货商品单位id", "type": "integer" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "现货品类ID(通用则为0)", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "models.Ermcp3SubTaaccount": { "type": "object", "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "parentaccountcode": { "description": "所属根账号代码(母账号代码)", "type": "string" }, "parentaccountid": { "description": "所属根账号(母账号)", "type": "integer" }, "taname": { "description": "资金账号名称", "type": "string" }, "tradestatus": { "description": "交易状态 - 1:正常 2:受限 3:冻结(停用) 4:禁止建仓(人工受限) 5:禁止交易(人工冻结) 6:待激活 7:已删除(注销)", "type": "integer" }, "username": { "description": "交易用户", "type": "string" } } }, "models.Ermcp3TaFutuReDataReport": { "type": "object", "properties": { "accountid": { "description": "交易账户", "type": "integer" }, "accountname": { "description": "交易账号名称", "type": "string" }, "agreeunit": { "description": "商品合约单位", "type": "number" }, "begindate": { "description": "开始交易日", "type": "string" }, "buyorsell": { "description": "持仓方向", "type": "integer" }, "charge": { "description": "手续费", "type": "number" }, "closeavgprice": { "description": "期初均价", "type": "number" }, "closepl": { "description": "平仓损益", "type": "number" }, "currencyid": { "description": "结算币种ID", "type": "integer" }, "currencyname": { "description": "币种名称", "type": "string" }, "cycletime": { "description": "周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(0)【原值】", "type": "string" }, "cycletype": { "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】", "type": "integer" }, "enddate": { "description": "结束交易日", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "floatpl": { "description": "浮动损益", "type": "number" }, "goodscode": { "description": "交易合约代码", "type": "string" }, "goodsgroupid": { "description": "交易品种", "type": "integer" }, "goodsgroupname": { "description": "交易品种名称", "type": "string" }, "goodsgroupspotqty": { "description": "交易品种期末量 (= 期末持仓量 * 合约乘数)", "type": "number" }, "goodsid": { "description": "交易合约", "type": "integer" }, "goodsname": { "description": "交易合约名称", "type": "string" }, "goodunitid": { "description": "交易合约单位id", "type": "integer" }, "holdamount": { "description": "期末持仓额", "type": "number" }, "holdqty": { "description": "期初均价", "type": "number" }, "lastholdamount": { "description": "当前持仓额", "type": "number" }, "lastprice": { "description": "最新价", "type": "number" }, "middlegoodsid": { "description": "套保品种id", "type": "integer" }, "middlegoodsname": { "description": "套保商品名称", "type": "string" }, "middlegoodsqty": { "description": "套保品种期末量 (=交易品种期末量 * 期货品种折算系数)", "type": "number" }, "middlgoodscode": { "description": "套保商品代码", "type": "string" }, "openamount": { "description": "期末开仓额", "type": "number" }, "openavgprice": { "description": "期初均价", "type": "number" }, "oriholdamount": { "description": "期初持仓额", "type": "number" }, "oriholdqty": { "description": "期初均价", "type": "number" }, "oriopenamount": { "description": "期初开仓额", "type": "number" }, "outergroupcode": { "description": "交易品种代码", "type": "string" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "reckonholdamount": { "description": "结算持仓额", "type": "number" }, "reckonpl": { "description": "结算损益", "type": "number" }, "reckonpl2": { "description": "结算逐笔盈亏", "type": "number" }, "reckonprice": { "description": "结算价", "type": "number" }, "relateduserid": { "description": "账户关联用户ID", "type": "integer" }, "todaycloseamount": { "description": "今平仓额", "type": "number" }, "todaycloseqty": { "description": "期初均价", "type": "number" }, "todaygoodsgroupspotqty": { "description": "交易品种变化量 (=(期末持仓量 - 期初持仓量)* 合约乘数)", "type": "number" }, "todaymiddlegoodsqty": { "description": "套保品种变化量 (= 交易品种变化量*期货品种折算系数)", "type": "number" }, "todayopenamount": { "description": "今开仓额", "type": "number" }, "todayopenqty": { "description": "期初均价", "type": "number" }, "userid": { "description": "账户所属用户ID", "type": "integer" } } }, "models.Ermcp3TradeLinkDetail": { "type": "object", "properties": { "accountid": { "description": "资金账号", "type": "integer" }, "agreeunit": { "description": "合约乘数", "type": "number" }, "areauserid": { "description": "所属机构", "type": "string" }, "bizsubjectid": { "description": "归属业务部门ID - SubjectID", "type": "string" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "channelbuildtype": { "description": "委托单据类型 0:无 1:建仓 2:平仓", "type": "integer" }, "contractno": { "description": "现货编号 (合同编号)", "type": "string" }, "convertratio": { "description": "折算系数", "type": "number" }, "createtime": { "description": "关联时间 | 创建时间", "type": "string" }, "creatorid": { "description": "创建人ID", "type": "string" }, "creatorsrc": { "description": "创建人来源 - 1:管理端 2:终端 3:交易", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "合约代码", "type": "string" }, "goodsgroupid": { "description": "对冲品种ID[期货合约商品组ID]", "type": "integer" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "合约名称", "type": "string" }, "hedgeflag": { "description": "业务类型 | 投机套保标志 - 0:无 1:投机 2:套保 3:套利 4:套期保值(平安\\合同) 5:单边(平安) 6:移仓(平安) 7:错单处理(平安) 8:跨期套利(平安) 9:套期保值(计划) 10:套利(合同) 11:换月(合同) 12:交割(金瑞)", "type": "integer" }, "linkdetailid": { "description": "关联ID(614+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "linkstatus": { "description": "关联状态 - 1:成功 2:失败 3:解绑", "type": "integer" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "relatedlot": { "description": "关联手数", "type": "number" }, "relatedmode": { "description": "关联方式 - 1:自动关联 2:手动关联 3:解绑关联", "type": "integer" }, "relatedqty": { "description": "关联数量 = RelatedLot * AgreeUnit * ConvertRatio", "type": "number" }, "retcode": { "description": "返回码", "type": "integer" }, "saleuserid": { "description": "业务员ID", "type": "string" }, "spotcontractid": { "description": "现货合同\\套保计划ID [4,10,11 - 现货合同ID] [9:套期保值(计划) - 套保计划ID]", "type": "string" }, "taname": { "description": "期货账户", "type": "string" }, "tradedate": { "description": "关联交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "期货订单号 | 内部成交单ID", "type": "string" }, "tradelot": { "description": "成交数量 | 成交手数", "type": "integer" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradetime": { "description": "期货成交时间", "type": "string" }, "tradetradedate": { "description": "成交交易日(yyyyMMdd)", "type": "string" }, "username": { "description": "用户名称", "type": "string" } } }, "models.Ermcp3Wrstandard": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "cantrade": { "description": "是否允许交易 - 0:不允许 1:允许 -1:未配置(数据库里没有记录)", "type": "integer" }, "convertfactor": { "description": "标仓系数", "type": "number" }, "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.Ermcp8EnableHedgeditem": { "type": "object", "properties": { "accountname": { "description": "套期主体", "type": "string" }, "hedgeditemid": { "description": "被套期项目ID(624+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "hedgeditemname": { "description": "项目名称", "type": "string" }, "hedgeditemnum": { "description": "项目编号", "type": "string" }, "hedgedtype": { "description": "套期类型 - 1:采购计划项目 2:销售计划项目 3:现货贸易项目 4:库存存货项目 5:定价采购合同项目", "type": "integer" }, "planenddate": { "description": "计划结束日期", "type": "string" }, "planstartdate": { "description": "计划开始日期", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品", "type": "string" } } }, "models.Ermcp8HedgeditemReport": { "type": "object", "properties": { "accountname": { "description": "套期主体", "type": "string" }, "areauserid": { "description": "企业ID", "type": "integer" }, "curprice": { "description": "[当日现货市场价]当前市场价", "type": "number" }, "enumdicname": { "description": "单位", "type": "string" }, "exeamount": { "description": "[执行现货金额]执行市价总额", "type": "number" }, "exeavgprice": { "description": "[执行价]执行市场均价= 执行市价总额 / 执行现货量", "type": "number" }, "exeqty": { "description": "[执行数量]执行现货量", "type": "number" }, "futurehedgepl": { "description": "期货实际损益", "type": "number" }, "futurehedgeplchange": { "description": "期货实际变动 = 期货实际损益 - 期初期货实际损益", "type": "number" }, "futurepl": { "description": "期货套期损益", "type": "number" }, "futureplchange": { "description": "期货套期变动 = 期货套期损益 - 期初期货套期损益", "type": "number" }, "hedgeamount": { "description": "[套期现货金额]套期市价总额", "type": "number" }, "hedgeditemnum": { "description": "项目编号,模糊查询", "type": "string" }, "hedgeditemstatus": { "description": "项目状态 - 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "type": "integer" }, "hedgedtype": { "description": "套期类型 - 1:采购计划项目 2:销售计划项目 3:现货贸易项目 4:库存存货项目 5:定价采购合同项目", "type": "integer" }, "hedgeqty": { "description": "[套期数量]套期现货量", "type": "number" }, "oriavgprice": { "description": "[期初价]期初市场均价 = 套期市价总额 / 套期现货量", "type": "number" }, "orifuturehedgepl": { "description": "期初期货实际损益", "type": "number" }, "orifuturepl": { "description": "期初期货套期损益", "type": "number" }, "orispothedgepl": { "description": "期初现货实际损益", "type": "number" }, "orispotpl": { "description": "期初现货套期损益", "type": "number" }, "planenddate": { "description": "计划结束日期", "type": "string" }, "planstartdate": { "description": "计划开始日期", "type": "string" }, "spothedgepl": { "description": "现货实际损益 =(执行市场均价-期初市场均价)*执行现货量 * 方向(销售计划 为 -1, 其它为1)", "type": "number" }, "spothedgeplchange": { "description": "现货实际变动 = 现货实际损益 - 期初现货实际损益", "type": "number" }, "spotpl": { "description": "现货套期损益 = 现货实际损益 + 现货浮动损益", "type": "number" }, "spotplchange": { "description": "现货套期变动 = 现货套期损益 - 期初现货套期损益", "type": "number" }, "tradeuserid": { "description": "交易用户ID", "type": "integer" }, "unexeqty": { "description": "未执行现货量 = 套期现货量 - 执行现货量", "type": "number" }, "wrstandardcode": { "description": "现货品类代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "[现货商品]现货品类名称", "type": "string" } } }, "models.Ermcp8RunningHedgeditem": { "type": "object", "properties": { "accountname": { "description": "套期主体", "type": "string" }, "applyid": { "description": "申请人", "type": "integer" }, "applysrc": { "description": "申请来源 - 1:管理端 2:终端", "type": "integer" }, "areauserid": { "description": "企业ID", "type": "integer" }, "auditid": { "description": "审核人", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "audittradedate": { "description": "审核交易日(yyyyMMdd)", "type": "string" }, "createtime": { "description": "申请时间", "type": "string" }, "curprice": { "description": "当前市场价", "type": "number" }, "curstock": { "description": "期末库存量 = 采购总量 - 销售总量", "type": "number" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "enddate": { "description": "完成日期", "type": "string" }, "endtradedate": { "description": "完成交易日", "type": "string" }, "enumdicname": { "description": "单位", "type": "string" }, "exeamount": { "description": "执行市价总额", "type": "number" }, "exeavgprice": { "description": "执行市场均价= 执行市价总额 / 执行现货量", "type": "number" }, "execontractamount": { "description": "执行定价总额", "type": "number" }, "exeqty": { "description": "执行现货量", "type": "number" }, "exerestamount": { "description": "执行剩余市价总额【现货贸易】", "type": "number" }, "futurefloatpl": { "description": "期货浮动损益", "type": "number" }, "futurehedgepl": { "description": "期货实际损益", "type": "number" }, "futurehedgeplchange": { "description": "期货实际损益变动", "type": "number" }, "futurepl": { "description": "期货套期损益", "type": "number" }, "futureplchange": { "description": "期货套期损益变动", "type": "number" }, "hedgeamount": { "description": "套期市价总额", "type": "number" }, "hedgecontractamount": { "description": "套期定价总额 【定价采购合同】【现货贸易】", "type": "number" }, "hedgeditemid": { "description": "被套期项目ID(624+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "hedgeditemname": { "description": "项目名称", "type": "string" }, "hedgeditemnum": { "description": "项目编号", "type": "string" }, "hedgeditemstatus": { "description": "项目状态 - 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回", "type": "integer" }, "hedgedtype": { "description": "套期类型 - 1:采购计划项目 2:销售计划项目 3:现货贸易项目 4:库存存货项目 5:定价采购合同项目", "type": "integer" }, "hedgeqty": { "description": "套期现货量", "type": "number" }, "hedgerate": { "description": "套保比率", "type": "number" }, "hedgerestamount": { "description": "套期剩余市价总额【现货贸易】", "type": "number" }, "hedgesumpl": { "description": "套期汇总损益 = 期货汇总损益 + 现货汇总损益", "type": "number" }, "middlegoodslist": { "description": "套期商品列表", "type": "array", "items": { "$ref": "#/definitions/models.Ermcp2himiddlegoods" } }, "oriavgprice": { "description": "期初市场均价 = 套期市价总额 / 套期现货量", "type": "number" }, "orifuturehedgepl": { "description": "期初期货实际损益", "type": "number" }, "orifuturepl": { "description": "期初期货套期损益", "type": "number" }, "orispothedgepl": { "description": "期初现货实际损益", "type": "number" }, "orispotpl": { "description": "期初现货套期损益", "type": "number" }, "planenddate": { "description": "计划结束日期", "type": "string" }, "planstartdate": { "description": "计划开始日期", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "spotbookamount": { "description": "现货账面总额", "type": "number" }, "spotfloatpl": { "description": "现货浮动损益 =(当前市场价 - 期初市场价)*未执行现货量 * 方向(销售计划 为 -1, 其它为1)", "type": "number" }, "spothedgepl": { "description": "现货套期损益 =(执行市场均价-期初市场均价)*执行现货量 * 方向(销售计划 为 -1, 其它为1)", "type": "number" }, "spothedgeplchange": { "description": "现货实际损益变动", "type": "number" }, "spotpl": { "description": "现货套期损益 = 现货实际损益 + 现货浮动损益", "type": "number" }, "spotplchange": { "description": "现货套期损益变动", "type": "number" }, "spottradepl": { "description": "现货贸易损益【现货贸易】= 执行合同定价总额 - 套期合同定价总额", "type": "number" }, "sumobspl": { "description": "汇总绝对损益【现货贸易】=现货贸易损益+增值税损益+期货套期损益", "type": "number" }, "tradeuserid": { "description": "交易用户ID", "type": "integer" }, "unexeqty": { "description": "未执行现货量 = 套期现货量 - 执行现货量", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "vatpl": { "description": "增值税损益【现货贸易】= 现货贸易损益 * (增值税率 /(1+增值税率))", "type": "number" }, "vatrate": { "description": "增值税", "type": "number" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" } } }, "models.ErmcpBizGroupEx": { "type": "object", "properties": { "acclist": { "description": "账号列表", "type": "array", "items": { "$ref": "#/definitions/models.ErmcpBizGroupTaAccount" } }, "bizgroupid": { "description": "业务分组id", "type": "integer" }, "biztype": { "description": "业务类型 1-套保 2-套利", "type": "integer" }, "wrlist": { "description": "现货商品表", "type": "array", "items": { "$ref": "#/definitions/models.ErmcpBizGroupSpotGoods" } } } }, "models.ErmcpBizGroupSpotGoods": { "type": "object", "properties": { "areauserid": { "description": "所属机构id", "type": "integer" }, "bizgroupid": { "description": "分组id", "type": "integer" }, "biztype": { "description": "业务类型 1-套保 2-套利", "type": "integer" }, "deliverygoodscode": { "description": "现货商品代码", "type": "string" }, "deliverygoodsid": { "description": "现货商品id", "type": "integer" }, "deliverygoodsname": { "description": "现货商品名称", "type": "string" }, "unitid": { "description": "现货商品单位id", "type": "integer" } } }, "models.ErmcpBizGroupTaAccount": { "type": "object", "properties": { "accountid": { "description": "账号id", "type": "integer" }, "accountname": { "description": "账号名称", "type": "string" }, "areauserid": { "description": "所属机构id", "type": "integer" }, "bizgroupid": { "description": "业务分组id", "type": "integer" }, "ismain": { "description": "是否主账号 1-是 0-否", "type": "integer" } } }, "models.ErmcpDGFactoryItem": { "type": "object", "properties": { "areauserid": { "description": "用户id", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "dgfactoryitemid": { "description": "选择项ID(SEQ_DGFACTORYITEM)", "type": "integer" }, "dgfactoryitemtypeid": { "description": "要素项类型", "type": "integer" }, "dgfactoryitemvalue": { "description": "要素项值(类型为仓库时填写仓库名称)", "type": "string" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "orderindex": { "description": "顺序", "type": "integer" }, "warehouseid": { "description": "仓库ID(类型为仓库时填写)", "type": "integer" } } }, "models.ErmcpDeliveryGoods": { "type": "object", "properties": { "agreeunit": { "description": "合约单位[散货时默认为1, 整装时默认为标准数量]", "type": "integer" }, "areauserid": { "description": "所属机构", "type": "integer" }, "auditflag": { "description": "交割是否需要审核 - 0:不需要 1:需要审核 默认为0", "type": "integer" }, "categoryid": { "description": "类别ID(SEQ_WRCATEGORY)", "type": "integer" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID(SEQ_DELIVERYGOODS)", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "deliverygoodstype": { "description": "现货品种类型: 1-整装不拆分 2-散装记录明细 3:整装拆分 4:散装不记录明细", "type": "integer" }, "dgstatus": { "description": "品种状态 - 作废 - 0:未激活 1:正常", "type": "integer" }, "enumdicname": { "description": "现货品种单位名称", "type": "string" }, "goodsunitid": { "description": "现货品种单位ID", "type": "integer" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "standardqty": { "description": "标准数量(库位数量) [标准品特有]", "type": "integer" }, "standardqtyrange": { "description": "标准数量偏差范围 [标准品特有]", "type": "integer" } } }, "models.ErmcpFuturesCompany": { "type": "object", "properties": { "brokerid": { "description": "经纪公司代码", "type": "string" }, "channeladdress": { "description": "对冲渠道服务地址(多个地址用逗号分隔) -- 192.168.30.10:3000,192.168.30.10:3001", "type": "string" }, "channelid": { "description": "对冲渠道ID", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "string" }, "fcid": { "description": "期货公司ID(SEQ_ERMCP_FUTURESCOMPANY)", "type": "integer" }, "fcname": { "description": "期货公司名称", "type": "string" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "mhpaddress": { "description": "MHP服务地址(IP:Port)", "type": "string" }, "riskrulegroupid": { "description": "风控规则组ID", "type": "string" }, "tradefeetmpid": { "description": "手续费模板ID[TradeConfigTmpType为2]", "type": "string" }, "trademargintmpid": { "description": "保证金模板ID [TradeConfigTmpType为1]", "type": "string" }, "traderatetmpid": { "description": "汇率模板ID[TradeConfigTmpType为3]", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" }, "updatorid": { "description": "更新人", "type": "string" } } }, "models.ErmcpGGConvertCfg": { "type": "object", "properties": { "convertratio": { "description": "折算系数", "type": "number" }, "destgoodsgroupid": { "description": "目标品种ID", "type": "integer" }, "dstcode": { "description": "目录品种代码", "type": "string" }, "dstexchangecode": { "description": "目标期货交易所", "type": "string" }, "dstname": { "description": "目标品种名称", "type": "string" }, "dstunitid": { "description": "目标品种单位ID", "type": "integer" }, "dstunitidname": { "description": "目标品种单位名称", "type": "string" }, "modifytime": { "description": "修改时间", "type": "string" }, "srccode": { "description": "源品种代码", "type": "string" }, "srcexchangecode": { "description": "源期货交易所", "type": "string" }, "srcgoodsgroupid": { "description": "源品种ID", "type": "integer" }, "srcname": { "description": "源品种名称", "type": "string" }, "srcunitid": { "description": "源品种单位ID", "type": "integer" }, "srcunitidname": { "description": "源品种单位名称", "type": "string" } } }, "models.ErmcpGoods": { "type": "object", "required": [ "goodscode", "goodsid", "goodsname", "marketid" ], "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "areauserid": { "description": "所属机构", "type": "integer" }, "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" }, "enumdicname": { "description": "单位名称", "type": "string" }, "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" }, "goodsorder": { "description": "商品显示顺序(99)", "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" }, "isvisible": { "description": "游客是否可见 - 0:不可见 1:可见", "type": "integer" }, "lasttradedate": { "description": "最后交易日期(状态:待退市)", "type": "string" }, "listingdate": { "description": "交易开始日期", "type": "string" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "marketmarginalgorithm": { "description": "保证金计算方式", "type": "integer" }, "marketmarginvalue": { "description": "即市保证金值", "type": "number" }, "maxspread": { "description": "点差上限(46)", "type": "number" }, "mindeliverylot": { "description": "最小交收手数(50模式)", "type": "integer" }, "minspread": { "description": "点差下限(46)", "type": "number" }, "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" }, "pictureurl": { "description": "商品图片", "type": "string" }, "provideraccountid": { "description": "发售方资金账户ID(49)\\供货商资金账户ID(50)", "type": "integer" }, "provideruserid": { "description": "发售方用户ID(49)\\供货商(50)", "type": "integer" }, "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" }, "relatedgoodsid": { "description": "关联参考商品ID", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "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" } } }, "models.ErmcpGoodsBrand": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "brandid": { "description": "BrandID(SEQ_SPOTGOODSBRAND)", "type": "integer" }, "brandname": { "description": "品牌名称", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "creatorsrc": { "description": "创建人来源 - 1:管理端 2:终端", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" }, "updatorid": { "description": "更新人", "type": "integer" }, "updatorsrc": { "description": "更新人来源 - 1:管理端 2:终端", "type": "integer" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" } } }, "models.ErmcpGoodsModel": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "convertfactor": { "description": "标仓系数", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "creatorsrc": { "description": "创建人来源 - 1:管理端 2:终端", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "modelid": { "description": "ModelID(SEQ_SPOTGOODSMODEL)", "type": "integer" }, "modelname": { "description": "型号名称", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" }, "updatorid": { "description": "更新人", "type": "integer" }, "updatorsrc": { "description": "更新人来源 - 1:管理端 2:终端", "type": "integer" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" } } }, "models.ErmcpHisExposure": { "type": "object", "properties": { "needhedgeexposoure": { "description": "应套保敞口", "type": "number" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "totalexposure": { "description": "总敞口", "type": "number" } } }, "models.ErmcpLoginTaAccount": { "type": "object", "properties": { "accountid": { "description": "账号id", "type": "integer" }, "accountname": { "description": "账号名称", "type": "string" } } }, "models.ErmcpLoginUser": { "type": "object", "properties": { "acclist": { "description": "关联资金账号", "type": "array", "items": { "$ref": "#/definitions/models.ErmcpLoginTaAccount" } }, "accountname": { "description": "用户名称", "type": "string" }, "clientroleid": { "description": "角色id(usertype=2)", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "logincode": { "description": "登录代码", "type": "string" }, "loginid": { "description": "登录id(LOGINID)", "type": "integer" }, "loginname": { "description": "登录名称(loginaccount表中的accountname字段)", "type": "string" }, "loginstatus": { "description": "登录账户状态 - 1:正常 2:冻结 3:无效", "type": "integer" }, "memberuserid": { "description": "所属会员id", "type": "integer" }, "mobile": { "description": "手机号", "type": "string" }, "modifytime": { "description": "修改时间", "type": "string" }, "password": { "description": "密码(不可解密)", "type": "string" }, "rolename": { "description": "角色名称", "type": "string" }, "rolestatus": { "description": "角色状态 1-启用 2-停用", "type": "integer" }, "roletype": { "description": "角色类型(逗号隔开,如22,23), 22:业务员 23:跟单员 24:交易员", "type": "string" }, "userid": { "description": "用户id", "type": "integer" }, "usertype": { "description": "用户类型 - 1:交易所 2:机构 3:会员子机构 4:经纪人 5:投资者 6:客户 7:企业成员(云平台)", "type": "integer" } } }, "models.ErmcpLoginUserEx": { "type": "object", "properties": { "accountstatus": { "description": "账户的状态 - 1:待激活 2:待审核 3:待复审 4:正常 5:审核拒绝 6:停用(注销) 7:注销(删除)", "type": "integer" }, "mobile": { "description": "手机号", "type": "string" }, "querytype": { "description": "查询类型 1-业务账户 2-交易账户 3-管理账户", "type": "integer" }, "roleid": { "description": "角色id(交易账户-\u003e用户id)", "type": "integer" }, "rolename": { "description": "角色名称(交易账户-\u003e用户名称)", "type": "string" }, "userlist": { "description": "用户列表", "type": "array", "items": { "$ref": "#/definitions/models.ErmcpLoginUser" } }, "usertype": { "description": "用户类型 2-机构 7-企业成员(云平台)", "type": "integer" } } }, "models.ErmcpMiddleGoodsModel": { "type": "object", "properties": { "areauserid": { "description": "机构用户ID", "type": "integer" }, "createtime": { "description": "修改时间", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "evaluateratio": { "description": "估价系数", "type": "number" }, "goodsgroupid": { "description": "关联期货品种ID", "type": "integer" }, "goodsunitid": { "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" }, "needarbitrageratio": { "description": "套利比例", "type": "number" }, "needhedgeratio": { "description": "套保比率", "type": "number" }, "qtydecimalplace": { "description": "数量小数位", "type": "integer" }, "relatedgoodsid": { "description": "关联交易商品ID", "type": "integer" }, "relatedgoodstype": { "description": "关联商品类型 - 1:期货合约 2:现货品种", "type": "integer" }, "remark": { "description": "备注", "type": "string" } } }, "models.ErmcpMiddlegoodsRelateGoods": { "type": "object", "properties": { "agreeunit": { "description": "合约乘数", "type": "number" }, "convertratio": { "description": "折算系数", "type": "number" }, "enumdicname": { "description": "单位名称(交易商品)", "type": "string" }, "goodscode": { "description": "交易商品代码", "type": "string" }, "goodsgroupid": { "description": "交易品种id", "type": "integer" }, "goodsid": { "description": "商品Id", "type": "integer" }, "goodsname": { "description": "交易商品名称", "type": "string" }, "goodunitid": { "description": "交易商品单位id", "type": "integer" }, "middlegoodsid": { "description": "套保商品id", "type": "integer" }, "middlegoodsname": { "description": "套保商品名称", "type": "string" }, "middlegoodsswcode": { "description": "套保商品代码", "type": "string" }, "needarbitrageratio": { "description": "应套利比例", "type": "number" }, "needhedgeratio": { "description": "应套保比例", "type": "number" } } }, "models.ErmcpRole": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "autoid": { "description": "角色ID(自增ID)", "type": "integer" }, "modifierid": { "description": "修改人(创建人)", "type": "integer" }, "modifiername": { "description": "修改人名称", "type": "string" }, "modifytime": { "description": "修改时间(创建时间)", "type": "string" }, "rolename": { "description": "角色名称", "type": "string" }, "rolestatus": { "description": "角色状态 - 1:启用 2:停用", "type": "integer" }, "roletype": { "description": "角色类型 - 1- 管理端 2- 交易端", "type": "integer" } } }, "models.ErmcpRoleMenu": { "type": "object", "properties": { "iconame": { "description": "菜单图标", "type": "string" }, "ishadrole": { "description": "是否有权限", "type": "boolean" }, "menutype": { "description": "菜单类型 1:管理端 2:交易端 3:终端(企业云平台) 5:PCWEB(v6)", "type": "integer" }, "parentcode": { "description": "上级资源代码", "type": "string" }, "remark": { "description": "菜单备注", "type": "string" }, "resourcecode": { "description": "菜单代码", "type": "string" }, "resourcelevel": { "description": "级别", "type": "integer" }, "resourcename": { "description": "菜单名称", "type": "string" }, "roleid": { "description": "角色id", "type": "integer" }, "sort": { "description": "排序", "type": "integer" }, "url": { "description": "URL", "type": "string" }, "userid": { "description": "用户id", "type": "integer" } } }, "models.ErmcpRoleMenuEx": { "type": "object", "properties": { "menu": { "description": "父级菜单", "$ref": "#/definitions/models.ErmcpRoleMenu" }, "subMenu": { "description": "子级菜单", "type": "array", "items": { "$ref": "#/definitions/models.ErmcpRoleMenuEx" } } } }, "models.ErmcpSpotContractModelEx": { "type": "object", "properties": { "accountname": { "description": "套期主体", "type": "string" }, "amount": { "description": "金额 [1:一口价、3:暂定价]", "type": "number" }, "attachment": { "description": "附件", "type": "string" }, "auditremark": { "description": "审核意见", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "avgprice": { "description": "定价均价 = 已定价金额 / 已定价量", "type": "number" }, "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" }, "customername": { "description": "对手方", "type": "string" }, "customeruserid": { "description": "客户ID", "type": "integer" }, "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" }, "isrelated": { "description": "是否已关联计划项目 - 0:否 1:是", "type": "integer" }, "isrelated2": { "description": "是否已关联现货项目 - 0:否 1:是", "type": "integer" }, "margin": { "description": "当前保证金", "type": "number" }, "modelname": { "description": "型号名称", "type": "string" }, "price": { "description": "价格\\暂定价 [1:一口价、3:暂定价]", "type": "number" }, "pricedamount": { "description": "已定价金额 = (点价价格+升贴水) * 数量", "type": "number" }, "pricedqty": { "description": "已定价量", "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" }, "spotamount": { "description": "合同现货金额 [不含升贴水]", "type": "number" }, "spotavgprice": { "description": "现货均价 = 合同现货金额 / 已定价量", "type": "number" }, "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" }, "tradeuserid": { "description": "交易用户ID", "type": "integer" }, "unpricedqty": { "description": "未定价量 = 合同数量 - 已定价量", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "机构ID", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "[现货商品]现货商品名称", "type": "string" } } }, "models.ErmcpTaAccount": { "type": "object", "properties": { "accountid": { "description": "账户id", "type": "integer" }, "accountname": { "description": "账户名称", "type": "string" }, "currencyid": { "description": "币种id", "type": "integer" }, "hedgeaccountcode": { "description": "主账号登录代码(仅当是主账号时有值,子账号没有登录账号)", "type": "string" }, "ismain": { "description": "是否主账户 0-否 1-是", "type": "integer" }, "parentaccountid": { "description": "父账户id", "type": "integer" }, "relateduserid": { "description": "关联userid", "type": "integer" }, "tradefeetmpid": { "description": "手续费模板id", "type": "integer" }, "tradefeetmpname": { "description": "手续费模板名称", "type": "string" }, "trademargintmpid": { "description": "保证金模板id", "type": "integer" }, "trademargintmpname": { "description": "保证金模板名称", "type": "string" }, "traderatetmpid": { "description": "汇率模板id", "type": "integer" }, "traderatetmpname": { "description": "汇率模板名称", "type": "string" }, "tradestatus": { "description": "交易状态 - 1:正常 2:受限 3:冻结 4:禁止建仓(人工受限) 5:禁止交易(人工冻结) 6:待激活 7:已注销", "type": "integer" }, "userid": { "description": "用户id", "type": "integer" } } }, "models.ErmcpTaAccountEx": { "type": "object", "properties": { "mainAcc": { "description": "主账号", "$ref": "#/definitions/models.ErmcpTaAccountM" }, "subacclist": { "description": "子账号列表", "type": "array", "items": { "$ref": "#/definitions/models.ErmcpTaAccount" } } } }, "models.ErmcpTaAccountInfo": { "type": "object", "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "accountname": { "description": "账户名称", "type": "string" }, "balance": { "description": "期初余额", "type": "number" }, "capitalbalance": { "description": "本金余额[外部子账户实际出入金余额]", "type": "number" }, "closepl": { "description": "今日平仓盈亏", "type": "number" }, "creditdecrease": { "description": "今日授信减少", "type": "number" }, "creditincrease": { "description": "今日授信增加", "type": "number" }, "curdebt": { "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" }, "mortgagecredit": { "description": "授信金额", "type": "number" }, "oridebt": { "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" }, "outamount": { "description": "今日出金金额(包括三方出金)", "type": "number" }, "outamountfreeze": { "description": "出金冻结", "type": "number" }, "outthreshold": { "description": "出金阈值", "type": "number" }, "parentaccountid": { "description": "所属根账号", "type": "integer" }, "paycharge": { "description": "今日手续费支出", "type": "number" }, "relateduserid": { "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" }, "transferamount": { "description": "今日划转金额(母子账号资金划转,从划入账号为正,从账号划出为负)", "type": "number" }, "usedmargin": { "description": "占用保证金", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.ErmcpTaAccountM": { "type": "object", "properties": { "accountid": { "description": "账户id", "type": "integer" }, "accountname": { "description": "账户名称", "type": "string" }, "currencyid": { "description": "币种id", "type": "integer" }, "fcid": { "description": "期货公司id", "type": "integer" }, "fcname": { "description": "期货公司代码", "type": "string" }, "hedgeaccountcode": { "description": "主账号登录代码(仅当是主账号时有值,子账号没有登录账号)", "type": "string" }, "ismain": { "description": "是否主账户 0-否 1-是", "type": "integer" }, "parentaccountid": { "description": "父账户id", "type": "integer" }, "relateduserid": { "description": "关联userid", "type": "integer" }, "tradefeetmpid": { "description": "手续费模板id", "type": "integer" }, "tradefeetmpname": { "description": "手续费模板名称", "type": "string" }, "trademargintmpid": { "description": "保证金模板id", "type": "integer" }, "trademargintmpname": { "description": "保证金模板名称", "type": "string" }, "traderatetmpid": { "description": "汇率模板id", "type": "integer" }, "traderatetmpname": { "description": "汇率模板名称", "type": "string" }, "tradestatus": { "description": "交易状态 - 1:正常 2:受限 3:冻结 4:禁止建仓(人工受限) 5:禁止交易(人工冻结) 6:待激活 7:已注销", "type": "integer" }, "userid": { "description": "用户id", "type": "integer" } } }, "models.ErmcpTradeConfigTMP": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "basiccurrencyid": { "description": "基本币种ID[汇率] - 目标币种", "type": "integer" }, "mainaccountid": { "description": "主账户ID", "type": "integer" }, "modifierid": { "description": "修改人", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "tradeconfigtmpid": { "description": "交易配置模板ID(SEQ_TRADECONFIGTMP)", "type": "integer" }, "tradeconfigtmpname": { "description": "交易配置模板名称", "type": "string" }, "tradeconfigtmptype": { "description": "交易配置模板类型 - 1:保证金 2:手续费 3:汇率", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.Ermcpjrlinkpos": { "type": "object", "required": [ "spotcontractid" ], "properties": { "areauserid": { "description": "所属企业", "type": "integer" }, "averageprice": { "description": "持仓均价 (TotalBuyHoldAmount - TotalSellHoldAmount) / NetQty", "type": "number" }, "closepl": { "description": "总平仓盈亏 [期货损益]", "type": "number" }, "executeprice": { "description": "执行价 - 1:期货单 为 0", "type": "integer" }, "futurehedgeqty": { "description": "期货套期量", "type": "number" }, "goodsid": { "description": "期货合约", "type": "integer" }, "middlegoodscode": { "description": "套保商品代码", "type": "string" }, "middlegoodsname": { "description": "套保商品名称", "type": "string" }, "netqty": { "description": "净头寸", "type": "number" }, "optioncode": { "description": "期权代码", "type": "string" }, "ordertype": { "description": "单据类型[套期工具] - 1:期货单 2:看涨期权单 3:看跌期权单", "type": "integer" }, "reckonpl": { "description": "总盈亏(平仓盈亏 + 结算盈亏 - 手续费)", "type": "number" }, "spotcontractid": { "description": "现货ID [套期项目ID - 金瑞:合同\\虚拟合同ID", "type": "string" }, "todayfutureclosepl": { "description": "今日平仓盈亏", "type": "number" }, "totalbuyamount": { "description": "买金额 [期货]", "type": "number" }, "totalbuyholdamount": { "description": "买持仓总金额[期货]", "type": "number" }, "totalbuyqty": { "description": "买数量", "type": "number" }, "totalcharge": { "description": "手续费", "type": "number" }, "totalpremium": { "description": "权利金 [期权]", "type": "number" }, "totalsellamount": { "description": "卖金额 [期货]", "type": "number" }, "totalsellholdamount": { "description": "卖持仓总金额[期货]", "type": "number" }, "totalsellqty": { "description": "卖数量", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.Ermcppatradelinkdetail": { "type": "object", "required": [ "hedgeditemid" ], "properties": { "agreeunit": { "description": "合约乘数", "type": "number" }, "amount": { "description": "金额 = RelatedLot * TradePrice * AgreeUnit", "type": "number" }, "areauserid": { "description": "所属机构", "type": "integer" }, "bizsubjectid": { "description": "归属业务部门ID - SubjectID", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "convertratio": { "description": "品种系数", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人ID", "type": "integer" }, "creatorsrc": { "description": "创建人来源 - 1:管理端 2:终端 3:交易", "type": "integer" }, "goodsgroupid": { "description": "对冲品种ID[期货合约商品组ID]", "type": "integer" }, "goodsid": { "description": "商品ID", "type": "integer" }, "hedgeditemid": { "description": "现货ID[套期项目ID] [13 - 被套期项目ID] [4,10,11 - 现货合同ID] [9 - 套保计划ID]", "type": "integer" }, "hedgeflag": { "description": "投机套保标志 - 0:无 1:投机 2:套保 3:套利 4:套期保值(平安\\合同) 5:单边(平安) 6:移仓(平安) 7:错单处理(平安) 8:跨期套利(平安) 9:套期保值(计划) 10:套利(合同) 11:换月(合同) 12:交割(金瑞) 13:被套期项目", "type": "integer" }, "linkdetailid": { "description": "期货明细ID(614+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "linkstatus": { "description": "关联状态 - 1:成功 2:失败 3:解绑", "type": "integer" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "name": { "description": "账户名/子账户", "type": "string" }, "optioncode": { "description": "[期货合约]期权代码 [期权]", "type": "string" }, "ordertype": { "description": "单据类型[套期工具] - 1:期货单 2:看涨期权单 3:看跌期权单", "type": "integer" }, "relatedlot": { "description": "[数量]关联手数", "type": "number" }, "relatedmode": { "description": "关联方式 - 1:自动关联 2:手动关联 3:解绑关联", "type": "integer" }, "relatedqty": { "description": "关联数量 = RelatedLot * AgreeUnit * ConvertRatio", "type": "number" }, "retcode": { "description": "返回码", "type": "integer" }, "saleuserid": { "description": "业务员ID", "type": "integer" }, "tradedate": { "description": "关联交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "[成交单号]内部成交单ID", "type": "string" }, "tradelot": { "description": "成交手数", "type": "integer" }, "tradeprice": { "description": "[价格]成交价格", "type": "number" }, "tradetime": { "description": "日期时间", "type": "string" }, "tradetradedate": { "description": "成交交易日(yyyyMMdd)", "type": "string" } } }, "models.Exchangerateconfig": { "type": "object", "properties": { "descurrencyid": { "description": "目标币种ID", "type": "integer" }, "exchangerate": { "description": "汇率", "type": "number" }, "oricurrencyid": { "description": "源币种ID", "type": "integer" }, "remark": { "description": "备注", "type": "string" } } }, "models.Externalexchange": { "type": "object", "required": [ "autoid" ], "properties": { "autoid": { "description": "AutoID - SEQ_EXTERNALEXCHANGE", "type": "integer" }, "exchangefullname": { "description": "外部交易所全称", "type": "string" }, "exexchangecode": { "description": "外部交易所代码", "type": "string" }, "exexchangename": { "description": "外部交易所名称(简称)", "type": "string" }, "ismarketprice": { "description": "是否支持市价 - 0:不支持 1:支持", "type": "integer" }, "quotegear": { "description": "行情档位(1-10)", "type": "integer" }, "showbrokerflag": { "description": "是否显示买卖经纪盘 - 0:不显示 1:显示", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.Funcmenulist": { "type": "object", "required": [ "resourcecode" ], "properties": { "iconame": { "description": "菜单图标", "type": "string" }, "menutype": { "description": "菜单类型 1-管理端 2-交易端 3-终端权限", "type": "integer" }, "parentcode": { "description": "上级资源代码", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "resourcecode": { "description": "资源代码", "type": "string" }, "resourcelevel": { "description": "级别 1-一级 2-二级 3-三级 4-四级", "type": "integer" }, "resourcename": { "description": "资源名", "type": "string" }, "sort": { "description": "排序 - 一级时,是所有一级菜单的排序顺序;二级时是所属同一个一级菜单下的排序、三级时是同一个二级菜单下的排序", "type": "integer" }, "url": { "description": "URL", "type": "string" } } }, "models.Fworderoperate": { "type": "object", "required": [ "orderid", "status" ], "properties": { "advanceamount": { "description": "总预付款", "type": "number" }, "advanceproofaddr": { "description": "预付款收款凭证(确认结算费用时)", "type": "string" }, "bankfee": { "description": "汇款银行手续费", "type": "number" }, "bankproofaddr": { "description": "广钻汇款银行手续费凭证(确认结算费用时)", "type": "string" }, "customsproofaddr": { "description": "海关税费保证金收据(确认结算费用时)", "type": "string" }, "logisticsfee": { "description": "代缴物流保险费", "type": "number" }, "logisticsproofaddr": { "description": "代缴物流保险费凭证(确认结算费用时)", "type": "string" }, "operatetime": { "description": "操作时间", "type": "string" }, "operatoraccount": { "description": "操作人账号 - systemmanager的logincode 或 loginaccount的logincode,无则用loginid", "type": "string" }, "operatorid": { "description": "操作人ID - systemmanager的autoid 或 loginaccount的loginid", "type": "integer" }, "operatorname": { "description": "操作人名称 - systemmanager的username 或 loginaccount的logincode,无则用loginid", "type": "string" }, "operatorsrc": { "description": "操作人来源 - 1:管理端 2:终端", "type": "integer" }, "orderid": { "description": "单据ID(804+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "otherfee": { "description": "其它费用", "type": "number" }, "remark": { "description": "操作备注", "type": "string" }, "servicefee": { "description": "综合服务费", "type": "number" }, "settleamount": { "description": "总结算费用 - 实际扣除资金,不含税费保证金", "type": "number" }, "status": { "description": "操作后单据状态 - 枚举\"GZBSStatus\"", "type": "integer" }, "taxmargin": { "description": "税费保证金", "type": "number" }, "totalfee": { "description": "总费用 = 费用之和 (结算费用时不含税费保证金)", "type": "number" } } }, "models.GErmcpspotgoodsprice": { "type": "object", "properties": { "chg": { "description": "涨跌幅", "type": "number" }, "currencyid": { "description": "报价货币ID", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "prespotgoodsprice": { "description": "上日价格", "type": "number" }, "spotgoodsbrandid": { "description": "现货品牌ID(通用则为0, 不为0则须先有商品ID)", "type": "integer" }, "spotgoodsprice": { "description": "【最新价】当前价格", "type": "number" }, "srcmarketname": { "description": "来源市场名称", "type": "string" }, "todaypricedtotalamount": { "description": "今日定价金额", "type": "number" }, "todaypricedtotalqty": { "description": "今日定价总量", "type": "number" }, "todayspotgoodsprice": { "description": "今日指定价", "type": "number" }, "tradedate": { "description": "【日期】交易日", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(通用则为0)", "type": "integer" }, "wrstandardname": { "description": "【名称】现货商品名称", "type": "string" }, "ystspotgoodsprice": { "description": "昨价", "type": "number" } } }, "models.GGzbscinoutorder": { "type": "object", "required": [ "ordertype", "userid" ], "properties": { "applicanttime": { "description": "申请时间", "type": "string" }, "bagweightgm": { "description": "连袋重(克)", "type": "number" }, "checklistno": { "description": "核注清单号", "type": "string" }, "confirmdate": { "description": "进出仓确认时间", "type": "string" }, "confirmername": { "description": "进出仓确认人", "type": "string" }, "confirmtradedate": { "description": "进出仓确认交易日(yyyyMMdd)", "type": "string" }, "contactname": { "description": "申请方联系人", "type": "string" }, "contactnum": { "description": "申请方联系电话", "type": "string" }, "customsno": { "description": "报关单号", "type": "string" }, "customstotalvalue": { "description": "报关总值", "type": "number" }, "goodsname": { "description": "商品名称 - 明细的商品名称拼接(\"/\")", "type": "string" }, "jckdate": { "description": "进出口日期", "type": "string" }, "logisticscompany": { "description": "物流公司名称", "type": "string" }, "logisticsno": { "description": "托运单号", "type": "string" }, "netweightct": { "description": "净重(克拉)", "type": "number" }, "netweightgm": { "description": "净重(克)", "type": "number" }, "orderid": { "description": "申请ID(806+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "ordernum": { "description": "单据编号", "type": "string" }, "orderstatus": { "description": "进出仓状态 - 1.待确认 2.待上传 3.报关中 4.进仓中 5.出仓中 20.已关闭 21.确认拒绝(枚举:GZBSCOrderStatus)", "type": "integer" }, "ordertype": { "description": "单据类型 - 1:进仓 2:出仓(枚举:GZBSCOrderType)", "type": "integer" }, "outtype": { "description": "出仓类型 - 1:转厂 2:出境(枚举:GZBSCOutType)", "type": "integer" }, "sealno": { "description": "进出仓封条号", "type": "string" }, "signeedate": { "description": "收发货人日期", "type": "string" }, "signeename": { "description": "收发货人", "type": "string" }, "totalprice": { "description": "总价", "type": "number" }, "useraddress": { "description": "申请方地点", "type": "string" }, "userid": { "description": "申请用户ID", "type": "integer" }, "username": { "description": "申请方名称", "type": "string" } } }, "models.GGzbscposition": { "type": "object", "required": [ "userid" ], "properties": { "countryname": { "description": "产销国", "type": "string" }, "currencyname": { "description": "币制", "type": "string" }, "customsno": { "description": "报关单号", "type": "string" }, "customsvalue": { "description": "报关总值", "type": "number" }, "executionflag": { "description": "海关执行标志", "type": "string" }, "freezenetweightct": { "description": "冻结净重(克拉)", "type": "number" }, "goodsid": { "description": "商品ID", "type": "string" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodsnum": { "description": "商品编号", "type": "string" }, "goodsspec": { "description": "规格型号", "type": "string" }, "jckdate": { "description": "进口日期", "type": "string" }, "legalunit": { "description": "法定计量单位", "type": "string" }, "netweightct": { "description": "净重(克拉)", "type": "number" }, "netweightgm": { "description": "净重(克)", "type": "number" }, "oricustomsvalue": { "description": "期初报关总值", "type": "number" }, "orifreezeweight": { "description": "期初冻结净重(克拉)", "type": "number" }, "orinetweightct": { "description": "期初净重(克拉)", "type": "number" }, "orinetweightgm": { "description": "期初净重(克)", "type": "number" }, "oritotalprice": { "description": "期初总价", "type": "number" }, "reportunit": { "description": "申报计量单位", "type": "string" }, "storageperiod": { "description": "存储(监管)期限", "type": "string" }, "totalprice": { "description": "总价", "type": "number" }, "unitprice": { "description": "单价", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.GGzbscusermonthpay": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "confirmtime": { "description": "确认时间", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "infee": { "description": "进仓报关费", "type": "number" }, "innum": { "description": "进仓报关单数", "type": "number" }, "outfee": { "description": "出仓报关费", "type": "number" }, "outnum": { "description": "出仓报关单数", "type": "number" }, "paymode": { "description": "支付方式 - 1:线上 2:线下(枚举:GZBSCPayMode)", "type": "integer" }, "paystatus": { "description": "支付状态 - 1:待确认 2:待支付 3:已支付(枚举:GZBSCPayStatus)", "type": "integer" }, "paytime": { "description": "支付时间", "type": "string" }, "powerfee": { "description": "分拣室电费", "type": "number" }, "premium": { "description": "保险费", "type": "number" }, "rentdays": { "description": "月租天数", "type": "integer" }, "servicefee": { "description": "分拣室服务费", "type": "number" }, "startdate": { "description": "协议起始日", "type": "string" }, "storagefee": { "description": "仓储费", "type": "number" }, "totalfee": { "description": "合计费用", "type": "number" }, "trademonth": { "description": "月份(yyyMM)", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.GGzbscuserpowerfee": { "type": "object", "required": [ "trademonth", "userid" ], "properties": { "createtime": { "description": "创建时间", "type": "string" }, "endpower": { "description": "月末初数", "type": "number" }, "instrumentno": { "description": "仪表编号", "type": "number" }, "powerfee": { "description": "电费(元)", "type": "number" }, "powerfeeid": { "description": "电费单ID(809+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "powernum": { "description": "本月用量", "type": "number" }, "powerunit": { "description": "单位", "type": "number" }, "startpower": { "description": "月初读数", "type": "number" }, "trademonth": { "description": "月份(yyyMM)", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "username": { "description": "使用单位", "type": "number" } } }, "models.GThjinvesotrdeposit": { "type": "object", "required": [ "userid" ], "properties": { "depositrate": { "description": "定金比例", "type": "number" }, "qty": { "description": "可用量", "type": "integer" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.GThjinvesotrdepositlog": { "type": "object", "required": [ "depositrate", "userid" ], "properties": { "accountname": { "description": "用户名", "type": "string" }, "buyuserid": { "description": "采购用户ID", "type": "integer" }, "changeqty": { "description": "变更量", "type": "integer" }, "curdepositqty": { "description": "可用量(变更后)", "type": "string" }, "depositrate": { "description": "定金比例(选中比例)", "type": "number" }, "logid": { "description": "流水ID(336+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "oridepositqty": { "description": "可用量(变更前)", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" }, "updatorid": { "description": "更新人", "type": "integer" }, "userid": { "description": "用户ID", "type": "integer" }, "wrtradedetailid": { "description": "采购成交单ID", "type": "integer" } } }, "models.GThjuserscorelog": { "type": "object", "properties": { "createtime": { "description": "记账时间", "type": "string" }, "redpacketvalue": { "description": "红包值【抽奖】", "type": "number" }, "score": { "description": "变动积分", "type": "number" }, "scoreconfigtype": { "description": "配置类型 - 1:注册红包 2:签到积分 3:推广积分 4:下级用户下单积分 5:自己采购下单积分 6:自己供求下单积分 7:抽奖配置", "type": "integer" }, "stype": { "description": "[格式:1,2,3] 配置类型 - 1:注册红包 2:签到积分 3:推广积分 4:下级用户下单积分 5:自己采购下单积分 6:自己供求下单积分 7:抽奖配置", "type": "string" } } }, "models.GZGoods": { "type": "object", "required": [ "goodsno" ], "properties": { "address": { "description": "详细地址", "type": "string" }, "cerno": { "description": "证书编号 - 类型:2,4,5", "type": "string" }, "cityname": { "description": "城市名称", "type": "string" }, "countryname": { "description": "国家名称", "type": "string" }, "cpcertno": { "description": "金伯利证书编号 - 类型:3", "type": "string" }, "districtname": { "description": "地区名称", "type": "string" }, "goodsno": { "description": "商品编号", "type": "string" }, "imagepath": { "description": "商品照片(相对地址)", "type": "string" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "kppath": { "description": "金伯利证书图片(相对地址) - 类型:3", "type": "string" }, "kpweight": { "description": "金伯利证书重量 - 类型:3", "type": "string" }, "marketprice": { "description": "市场价", "type": "string" }, "mobile": { "description": "手机号码", "type": "string" }, "origin": { "description": "原产地 - 类型:3", "type": "string" }, "performancetemplateid": { "description": "履约计划模板ID", "type": "integer" }, "price": { "description": "总价(价格) - 类型:1,2,3,4,5", "type": "number" }, "priceper": { "description": "克拉单价 - 类型:1,2,3,5", "type": "string" }, "provincename": { "description": "省名称", "type": "string" }, "remainqty": { "description": "剩余重量", "type": "number" }, "remark": { "description": "备注", "type": "string" }, "sellusername": { "description": "账户名称(机构名称)", "type": "string" }, "settingmaterial": { "description": "镶嵌材料 - 类型:4", "type": "string" }, "size1": { "description": "尺寸1 - 类型:2,4,5", "type": "string" }, "size2": { "description": "尺寸2 - 类型:2,4,5", "type": "string" }, "size3": { "description": "尺寸3 - 类型:2,4,5", "type": "string" }, "sizedisplay": { "description": "尺寸", "type": "string" }, "stonedesc": { "description": "配石描述 - 类型:4", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousenamedisplay": { "type": "string" }, "weight": { "description": "总重量(克拉重量) - 类型:1,2,3,4,5", "type": "number" }, "weightavg": { "description": "平均单颗重量 - 类型:1,3", "type": "number" }, "wrpath": { "description": "仓单扫描件(相对地址)", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrtradeorderid": { "description": "仓单贸易委托单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "zscategory": { "description": "钻石分类 - 枚举”ZSCategory“", "type": "integer" }, "zscategorydisplay": { "type": "string" }, "zscerttype": { "description": "证书类型 - 枚举”ZSCertType“ - 类型:2,4,5", "type": "integer" }, "zscerttypedisplay": { "type": "string" }, "zsclaritytype1": { "description": "净度1 - 枚举”ZSClarityType“ - 类型:1,2,3,4,5", "type": "integer" }, "zsclaritytype1display": { "type": "string" }, "zsclaritytype2": { "description": "净度2 - 枚举”ZSClarityType“ - 类型:1,3", "type": "integer" }, "zsclaritytype2display": { "type": "string" }, "zscolortype1": { "description": "颜色1 - 枚举”ZSColorType“ - 类型:1,2,3,4", "type": "integer" }, "zscolortype1display": { "type": "string" }, "zscolortype2": { "description": "颜色2 - 枚举”ZSColorType“ - 类型:1,3", "type": "integer" }, "zscolortype2display": { "type": "string" }, "zscrystaltype": { "description": "晶型范围 - 枚举“ZSCrystalType“ - 类型:3, 多个,逗号分隔", "type": "string" }, "zscrystaltypedisplay": { "type": "string" }, "zscurrencytype": { "description": "货币类型 - 枚举“ZSCurrencyType”", "type": "integer" }, "zscurrencytypedisplay": { "type": "string" }, "zscurrencytypedisplayunit": { "type": "string" }, "zscuttype1": { "description": "切工1 - 枚举”ZSCutType“ - 类型:1,2,4,5", "type": "integer" }, "zscuttype1display": { "type": "string" }, "zscuttype2": { "description": "切工2 - 枚举”ZSCutType“ - 类型:1", "type": "integer" }, "zscuttype2display": { "type": "string" }, "zsczcolor1type": { "description": "彩钻颜色1 - 枚举”ZSCZColor1Type“ - 类型:5", "type": "integer" }, "zsczcolor1typedisplay": { "type": "string" }, "zsczcolor2type": { "description": "彩钻颜色2 - 枚举”ZSCZColor2Type“ - 类型:5", "type": "integer" }, "zsczcolor2typedisplay": { "type": "string" }, "zsczcolor3type": { "description": "彩钻颜色3 - 枚举”ZSCZColor3Type“ - 类型:5", "type": "integer" }, "zsczcolor3typedisplay": { "type": "string" }, "zsfluorescencetype1": { "description": "荧光1 - 枚举”ZSFluorescenceType“ - 类型:1,2,3,4,5", "type": "integer" }, "zsfluorescencetype1display": { "type": "string" }, "zsfluorescencetype2": { "description": "荧光2 - 枚举”ZSFluorescenceType” - 类型:1,3", "type": "integer" }, "zsfluorescencetype2display": { "type": "string" }, "zspolishtype1": { "description": "抛光度1 - 枚举”ZSPolishType“ - 类型:1,2,4,5", "type": "integer" }, "zspolishtype1display": { "type": "string" }, "zspolishtype2": { "description": "抛光度2 - 枚举”ZSPolishType“ - 类型:1", "type": "integer" }, "zspolishtype2display": { "type": "string" }, "zsshapetype": { "description": "形状 - 枚举”ZSShapeType“ - 类型:1,2,4,5 ;(1为多个,逗号分隔)", "type": "string" }, "zsshapetypedisplay": { "type": "string" }, "zsstyletype": { "description": "款式 - 类型:4", "type": "integer" }, "zsstyletypedisplay": { "type": "string" }, "zssymmetrytype1": { "description": "对称度1 - 枚举”ZSSymmetryType“ - 类型:1,2,4,5", "type": "integer" }, "zssymmetrytype1display": { "type": "string" }, "zssymmetrytype2": { "description": "对称度2 - 枚举”ZSSymmetryType“ - 类型:1", "type": "integer" }, "zssymmetrytype2display": { "type": "string" } } }, "models.GZHomeData": { "type": "object", "properties": { "purchasedtransactions": { "description": "已购买的交易", "type": "integer" }, "transactioninpurchase": { "description": "求购中的交易", "type": "integer" }, "transactionsonsale": { "description": "出售中的交易", "type": "integer" }, "transactionssold": { "description": "已卖出的交易", "type": "integer" }, "unhandledmessage": { "description": "未处理消息", "type": "integer" } } }, "models.GZMyPresell": { "type": "object", "properties": { "customername": { "description": "企业名称(认购方)", "type": "string" }, "freezemargin": { "description": "冻结保证金", "type": "number" }, "orderqty": { "description": "委托数量", "type": "number" }, "ordertime": { "description": "委托时间(认购时间)", "type": "string" }, "tradeprice": { "description": "成交价格 - [摘牌] (浮动价 ((商品1价格*商品1价格系数+升贴水)* 商品1重量系数 + 商品2价格*商品2价格系数+商品2升贴水)* 商品2重量系数 ...)* 委托单价格系数 + 委托单升贴水)", "type": "number" } } }, "models.GZMyTradingPresell": { "type": "object", "properties": { "bannerpicurl": { "description": "Banner图(逗号分隔)", "type": "string" }, "customername": { "description": "企业名称(预售方、卖方)", "type": "string" }, "freezemargin": { "description": "冻结保证金\\已付保证金", "type": "number" }, "marginalgorithm": { "description": "保证金方式 - 1:比率 2:固定", "type": "integer" }, "marginvalue": { "description": "保证金设置值", "type": "number" }, "orderqty": { "description": "委托数量\\认购数量", "type": "number" }, "ordertime": { "description": "委托时间(认购时间)", "type": "string" }, "performanceplanid": { "description": "履约计划ID/合同ID", "type": "integer" }, "performancetemplateid": { "description": "履约计划模板ID", "type": "integer" }, "pictureurls": { "description": "详情图片(逗号分隔)", "type": "string" }, "presaleapplyid": { "description": "预售申请ID(184+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "qtydesc": { "description": "数量描述 [2:毛坯钻石]", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "sizestr": { "description": "尺寸 [1:成品裸钻 \\ 2:毛坯钻石]", "type": "string" }, "status": { "description": "状态 1:预售中\\集采中 2:执行中 3:已完成", "type": "integer" }, "thumurls": { "description": "缩略图片(1:1)(逗号分隔)", "type": "string" }, "tradeamount": { "description": "货款", "type": "number" }, "tradeprice": { "description": "成交价格\\认购价格 - [摘牌] (浮动价 ((商品1价格*商品1价格系数+升贴水)* 商品1重量系数 + 商品2价格*商品2价格系数+商品2升贴水)* 商品2重量系数 ...)* 委托单价格系数 + 委托单升贴水)", "type": "number" }, "weightdesc": { "description": "重量描述 [2:毛坯钻石]", "type": "string" }, "wrstandardname": { "description": "商品", "type": "string" }, "wrtradeorderid": { "description": "仓单贸易委托单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "yieldrate": { "description": "成品率 [2:毛坯钻石]", "type": "string" }, "ysproductionmode": { "description": "生产方式 - 枚举”YSProductionMode“ [2:毛坯钻石] 1:HPHT 2:CVD", "type": "integer" }, "yszscategory": { "description": "钻石分类 - 枚举”YSZSCategory“ 1:成品裸钻 2:毛坯钻石", "type": "integer" }, "zsclaritytypestr": { "description": "净度 [1:成品裸钻 \\ 2:毛坯钻石]", "type": "string" }, "zscolortypestr": { "description": "颜色 [1:成品裸钻 \\ 2:毛坯钻石]", "type": "string" }, "zscuttypestr": { "description": "切工 [1:成品裸钻]", "type": "string" }, "zsfluorescencetypestr": { "description": "荧光 [1:成品裸钻]", "type": "string" }, "zspolishtypestr": { "description": "抛光 [1:成品裸钻]", "type": "string" }, "zsshapetypestr": { "description": "形状 [1:成品裸钻]", "type": "string" }, "zssymmetrytypestr": { "description": "对称 [1:成品裸钻]", "type": "string" } } }, "models.GZPresell": { "type": "object", "required": [ "marketid" ], "properties": { "bannerpicurl": { "description": "Banner图(逗号分隔)", "type": "string" }, "baseqty": { "description": "中签基数", "type": "number" }, "buymarginalgorithm": { "description": "采购保证金方式", "type": "integer" }, "buymarginvalue": { "description": "采购保证金值", "type": "number" }, "createtime": { "description": "创建时间\\申请时间", "type": "string" }, "customername": { "description": "企业名称(预售方\\卖方)", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "enddate": { "description": "预售结束日期", "type": "string" }, "endhandletime": { "description": "到期处理时间", "type": "string" }, "lastprice": { "description": "实际价格(64)", "type": "number" }, "lotteryflag": { "description": "摇号标识 - 0:未摇号 1:已摇号 2:摇号中 3:摇号失败", "type": "integer" }, "lotteryqty": { "description": "摇号总量", "type": "number" }, "luckynums": { "description": "中签号码(按顺序逗号分隔)", "type": "string" }, "luckyqty": { "description": "已中签量\\成交量", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "maxbuyqty": { "description": "单人最大申购量", "type": "number" }, "maxluckyqty": { "description": "单人最大中签量 - 作废", "type": "number" }, "minbuyqty": { "description": "最小采购单位", "type": "number" }, "minsuccessqty": { "description": "最低成团量", "type": "number" }, "performancetemplateid": { "description": "履约模板ID", "type": "integer" }, "pictureurls": { "description": "详情图片(逗号分隔)", "type": "string" }, "placeqty": { "description": "已配售量", "type": "number" }, "presaleapplyid": { "description": "预售申请ID(184+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "presaleqty": { "description": "预售总量\\预售数量", "type": "number" }, "presalestatus": { "description": "预售状态 - 1:未开始 2:进行中 3:已结束 4:已关闭 5:处理中 6::处理失败 7:已完成", "type": "integer" }, "presalestatuses": { "description": "预售状态 - 1:未开始 2:进行中 3:已结束 4:已关闭 5:处理中 6::处理失败 7:已完成; 逗号分隔", "type": "string" }, "qtydesc": { "description": "数量描述 [2:毛坯钻石]", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "sellaccountid": { "description": "发行方资金账户ID", "type": "integer" }, "sellmarginalgorithm": { "description": "卖方保证金方式", "type": "integer" }, "sellmarginvalue": { "description": "卖方保证金值", "type": "number" }, "selluserid": { "description": "发行方用户ID", "type": "integer" }, "sellwrtradeorderid": { "description": "发行方卖委托单ID", "type": "string" }, "sizestr": { "description": "尺寸 [1:成品裸钻 \\ 2:毛坯钻石]", "type": "string" }, "startdate": { "description": "预售开始日期", "type": "string" }, "takestartdate": { "description": "提货开始日期", "type": "string" }, "thumurls": { "description": "缩略图片(1:1)(逗号分隔)", "type": "string" }, "tradedate": { "description": "交易日", "type": "string" }, "tradeqty": { "description": "成交数量(已预售数量)", "type": "number" }, "unitid": { "description": "单位ID", "type": "integer" }, "unitprice": { "description": "商品单价\\预售价格", "type": "number" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "weightdesc": { "description": "重量描述 [2:毛坯钻石]", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID - 根据现货商品\\仓库生成", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" }, "yieldrate": { "description": "成品率 [2:毛坯钻石]", "type": "string" }, "ysproductionmode": { "description": "生产方式 - 枚举”YSProductionMode“ [2:毛坯钻石] 1:HPHT 2:CVD", "type": "integer" }, "yszscategory": { "description": "钻石分类 - 枚举”YSZSCategory“ 1:成品裸钻 2:毛坯钻石", "type": "integer" }, "zsclaritytypestr": { "description": "净度 [1:成品裸钻 \\ 2:毛坯钻石]", "type": "string" }, "zscolortypestr": { "description": "颜色 [1:成品裸钻 \\ 2:毛坯钻石]", "type": "string" }, "zscuttypestr": { "description": "切工 [1:成品裸钻]", "type": "string" }, "zsfluorescencetypestr": { "description": "荧光 [1:成品裸钻]", "type": "string" }, "zspolishtypestr": { "description": "抛光 [1:成品裸钻]", "type": "string" }, "zsshapetypestr": { "description": "形状 [1:成品裸钻]", "type": "string" }, "zssymmetrytypestr": { "description": "对称 [1:成品裸钻]", "type": "string" } } }, "models.GZWarehouseinfo": { "type": "object", "properties": { "address": { "description": "详细地址", "type": "string" }, "areauserid": { "description": "所属机构", "type": "integer" }, "autoid": { "description": "自增ID", "type": "integer" }, "cityid": { "description": "市", "type": "integer" }, "cityname": { "description": "城市名称", "type": "string" }, "contactname": { "description": "联系人", "type": "string" }, "contactnum": { "description": "联系电话", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "countryname": { "description": "国家名称", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "districtid": { "description": "区", "type": "integer" }, "districtname": { "description": "地区名称", "type": "string" }, "hasvideo": { "description": "是否有视频 - 0:无 1:有", "type": "integer" }, "provinceid": { "description": "省", "type": "integer" }, "provincename": { "description": "省名称", "type": "string" }, "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" } } }, "models.GetJ10NewsData": { "type": "object", "properties": { "content": { "type": "string" }, "pic": { "type": "string" }, "title": { "type": "string" } } }, "models.GetJ10NewsRsp": { "type": "object", "properties": { "data": { "$ref": "#/definitions/models.GetJ10NewsData" }, "id": { "type": "string" }, "time": { "type": "string" }, "type": { "type": "integer" } } }, "models.GetMarketSectionsRsp": { "type": "object", "properties": { "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人ID", "type": "integer" }, "creatorsrc": { "description": "创建人来源 - 1:管理端 2:终端 3:交易", "type": "integer" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "marketsectionconfignews": { "type": "array", "items": { "$ref": "#/definitions/models.Marketsectionconfignew" } }, "marketsectionid": { "description": "市场版块ID(SEQ_MARKETSECTION)", "type": "integer" }, "marketsectionname": { "description": "市场版块名称", "type": "string" }, "modifierid": { "description": "修改人", "type": "integer" }, "modifiersrc": { "description": "修改人来源 - 1:管理端 2:终端", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "orderindex": { "description": "排序", "type": "integer" }, "pictureurl": { "description": "显示图片(90*90)", "type": "string" }, "remark": { "description": "备注", "type": "string" } } }, "models.GetTodayAccountConfigInfoRsp": { "type": "object", "properties": { "riskRatioType": { "description": "风险率类型表", "$ref": "#/definitions/models.Riskratiotype" }, "todayAccountMargins": { "description": "今日账户保证金表", "type": "array", "items": { "$ref": "#/definitions/models.Todayaccountmargin" } }, "todayAccountTradeRules": { "description": "今日账户交易规则信表", "type": "array", "items": { "$ref": "#/definitions/models.Todayaccounttraderule" } }, "todayAccountTradefees": { "description": "今日账户交易费用表", "type": "array", "items": { "$ref": "#/definitions/models.Todayaccounttradefee" } } } }, "models.Goods": { "type": "object", "required": [ "goodscode", "goodsid", "goodsname", "marketid" ], "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "areauserid": { "description": "所属机构", "type": "integer" }, "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" }, "isvisible": { "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" }, "pictureurl": { "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.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.Goodsgroup": { "type": "object", "required": [ "goodsgroupid", "goodsgroupname", "goodsgroupstatus", "marketid" ], "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "canshort": { "description": "是否允许做空[通道交易] - 0:不能做空 1:可以做空", "type": "integer" }, "closepricemode": { "description": "强平价格方式 - 1:市价 2:最新价 3:涨跌停(未实现)", "type": "integer" }, "closepriceparam": { "description": "强平最新价浮动比例 - 方式为2时使用", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "currencyid": { "description": "报价货币ID", "type": "integer" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "exercisetype": { "description": "行权类型[场外期权]-1:欧式期权 2:美式期权", "type": "integer" }, "exexchangeid": { "description": "外部交易所ID[通道交易]", "type": "integer" }, "goodsgroupid": { "description": "商品组ID(自增ID)", "type": "integer" }, "goodsgroupname": { "description": "商品组名称", "type": "string" }, "goodsgroupstatus": { "description": "商品组状态 - 1:正常 2:注销", "type": "integer" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "innerdealmode": { "description": "内部成交方式[通道交易] - 1:净头寸 2:开平 3:平今", "type": "integer" }, "isbuylimited": { "description": "是否限制建仓量 - 0:不限制 1:限制", "type": "integer" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "modifierid": { "description": "修改人", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "outerdealmode": { "description": "外部成交方式[通道交易]- 1:净头寸 2:开平 3:平今", "type": "integer" }, "outergroupcode": { "description": "外部商品组代码[通道交易]", "type": "string" }, "premiumdecimalplace": { "description": "权利金小数位[场外期权]", "type": "integer" }, "premiumspreadalgorithm": { "description": "权利金点差方式[场外期权] 1:比率 2:固定", "type": "integer" }, "premiumspreadvalue": { "description": "权利金点差值[场外期权]", "type": "number" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "quotegear": { "description": "行情档位(1-10)", "type": "integer" }, "quoteminunit": { "description": "行情最小变动单位 [整数,报价小数位一起使用]", "type": "integer" }, "quoterid": { "description": "报价商ID[场外期权]", "type": "integer" }, "quotesourcegroupid": { "description": "所属行情源分组ID[参考行情市场用\\通道交易]", "type": "integer" }, "syncgoodsqty": { "description": "同步合约数[通道交易-投资管理用] - 0表示不限", "type": "integer" } } }, "models.Goodssortbypreposition": { "type": "object", "required": [ "goodscode", "tradedate" ], "properties": { "goodscode": { "description": "合约代码 - 易盛接口:合约代码=品种代码+合约代码", "type": "string" }, "goodsgroupcode": { "description": "品种代码", "type": "string" }, "prepositionqty": { "description": "昨持仓量", "type": "integer" }, "sortindex": { "description": "排序", "type": "integer" }, "tradedate": { "description": "交易日", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.Gtwithholddepositapply": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "autoid": { "description": "自增ID(SEQ_GT_WITHHOLDDEPOSITAPPLY)", "type": "integer" }, "billamount": { "description": "账单金额", "type": "string" }, "billingsnum": { "description": "收费单位流水号(生成唯一的流水号)", "type": "string" }, "billresult": { "description": "批扣结果 - 0-扣费成功、1-扣费失败", "type": "string" }, "clientserialno": { "description": "客户端流水号", "type": "string" }, "code": { "description": "状态码 0-解析成功 1-解析失败", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "czrmc": { "description": "操作人名称", "type": "string" }, "deductionbnum": { "description": "扣费批次号(缴费项目编号_YYYYMMDD_01)", "type": "string" }, "dgjfhm": { "description": "缴费号码", "type": "string" }, "jfxmbh": { "description": "缴费项目编号", "type": "string" }, "message": { "description": "状态码描述", "type": "string" }, "trandate": { "description": "交易日期(yyyymmdd)", "type": "string" }, "trantime": { "description": "交易时间(hhmmss)", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.Gtwithholdsigninfo": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "accountsignstatus": { "description": "账户签约状态 - 1:未签约 3:签约中 4:已签约 6:解约中 7:已解约", "type": "integer" }, "addr": { "description": "地址", "type": "string" }, "byzd2": { "description": "备用字段2(变更\\解约)", "type": "string" }, "byzd3": { "description": "备用字段3(变更\\解约)", "type": "string" }, "byzd4": { "description": "备用字段4(变更\\解约)", "type": "string" }, "byzd5": { "description": "备用字段5(变更\\解约)", "type": "string" }, "czrmc": { "description": "操作人名称(变更\\解约)", "type": "string" }, "dgjfhm": { "description": "缴费号码(变更\\解约)", "type": "string" }, "dgjfmc": { "description": "缴费名称(变更\\解约)", "type": "string" }, "dxsqh": { "description": "申请号 - 短信签约", "type": "string" }, "dxyzm": { "description": "短信验证码 - 短信签约", "type": "string" }, "filedname": { "description": "协议附件名称(变更\\解约) - 协议签约", "type": "string" }, "jfhm": { "description": "用户编号(变更\\解约)", "type": "string" }, "jfrmc": { "description": "缴费人名称", "type": "string" }, "jfrzjhm": { "description": "缴费人证件号码", "type": "string" }, "jfrzjlx": { "description": "缴费人证件类型", "type": "string" }, "jfxmbh": { "description": "缴费项目编号(变更\\解约)", "type": "string" }, "khhhh": { "description": "开户行行号", "type": "string" }, "khmc": { "description": "客户名称", "type": "string" }, "kksjbc": { "description": "扣款时间步长(无限额默认填99)", "type": "string" }, "kksjdw": { "description": "扣款时间单位(TU00:年,TU01:月,TU002:日)", "type": "string" }, "kkzh": { "description": "扣款账号", "type": "string" }, "kkzqnkfxe": { "description": "扣款周期内扣费限额(无限额默认填 0)", "type": "number" }, "kkzqnxzbs": { "description": "扣款周期内限制笔数(无限额默认填 0)", "type": "integer" }, "lxdh": { "description": "联系电话", "type": "string" }, "qyxyh": { "description": "签约协议号", "type": "string" }, "qyzt": { "description": "签约状态 - 00- 签约成功 01- 签约失败 10- 解约成功 11- 解约失败 20- 变更成功 21- 变更失败", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "rwjgh": { "description": "入网机构号", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "xydqrq": { "description": "协议到期日期(yyyy-mm-dd)", "type": "string" }, "xydrrq": { "description": "协议导入时间(变更\\解约) - 协议签约", "type": "string" }, "xyqsrq": { "description": "协议签署日期(yyyy-mm-dd)", "type": "string" }, "xysxrq": { "description": "协议生效日(yyyy-mm-dd)", "type": "string" }, "yckfxe": { "description": "一次扣费限额", "type": "number" }, "zhlx": { "description": "账户类型", "type": "string" } } }, "models.Gzbscgoods": { "type": "object", "properties": { "countryname": { "description": "产销国", "type": "string" }, "currencyname": { "description": "币制", "type": "string" }, "executionflag": { "description": "海关执行标志", "type": "string" }, "goodsid": { "description": "商品ID(料号)", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodsnum": { "description": "商品编号", "type": "string" }, "goodsspec": { "description": "规格型号", "type": "string" }, "legalunit": { "description": "法定计量单位", "type": "string" }, "reportunit": { "description": "申报计量单位", "type": "string" }, "storageperiod": { "description": "存储(监管)期限", "type": "string" }, "unitprice": { "description": "单价", "type": "number" } } }, "models.Gzbscreckonorder": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "applicant": { "description": "申请人", "type": "string" }, "applicanttime": { "description": "申请时间", "type": "string" }, "confirmtime": { "description": "确认时间", "type": "string" }, "contractno": { "description": "合同编号", "type": "string" }, "customsfee": { "description": "报关费", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "importfile": { "description": "导入文件名", "type": "string" }, "importtime": { "description": "导入时间", "type": "string" }, "orderid": { "description": "单据ID(SEQ_GZ_BSCRECKONORDER)", "type": "integer" }, "paystatus": { "description": "支付状态 - 2:待支付 3:已支付(枚举:GZBSCPayStatus)", "type": "integer" }, "paytime": { "description": "支付时间", "type": "string" }, "paytradedate": { "description": "支付交易日(yyyyMMdd)", "type": "string" }, "powerfee": { "description": "分拣室电费", "type": "string" }, "premium": { "description": "保险费", "type": "string" }, "reckonmonth": { "description": "结算月份(yyyyMM)", "type": "string" }, "servicefee": { "description": "分拣室服务费", "type": "string" }, "storagefee": { "description": "仓储费", "type": "string" }, "totalfee": { "description": "合计费用", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" }, "userkey": { "description": "用户唯一标识", "type": "string" }, "wmsorderid": { "description": "WMS结算单流水号", "type": "string" } } }, "models.GzbsfworderM": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "addresscn": { "description": "地址(中文)", "type": "string" }, "addressen": { "description": "地址(英文)", "type": "string" }, "advanceamount": { "description": "总预付款", "type": "number" }, "colorrange": { "description": "颜色范围", "type": "string" }, "companynamecn": { "description": "收货人(中文)", "type": "string" }, "companynameen": { "description": "收货人(英文)", "type": "string" }, "contactfax": { "description": "收货人传真", "type": "string" }, "contactname": { "description": "收货人姓名", "type": "string" }, "contactphoneno": { "description": "收货人电话", "type": "string" }, "contentrange": { "description": "【内容】内容范围", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "executestatus": { "description": "执行状态 - 1:未生效 2:进行中 3:已结束", "type": "integer" }, "gzbsdeliverytype": { "description": "收货方式 - 枚举\"GZBSDeliveryType\"", "type": "integer" }, "gzbsstatus": { "description": "单据状态(保税服务) - 枚举\"GZBSStatus\"", "type": "integer" }, "gzbsstatusdisplay": { "description": "单据状态", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "orderdate": { "description": "单据日期", "type": "string" }, "orderid": { "description": "单据ID(804+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "orderno": { "description": "单据编号 - GZDEBSFW+单据流水号", "type": "string" }, "ordersn": { "description": "单据流水号 - yymm000 - yy表示年份,mm表示月份,年份、月份以两位数表示;000表示流水序号,序号不足三位以0补全", "type": "string" }, "origincountry": { "description": "原产国", "type": "string" }, "otherlogistics": { "description": "指定其它物流", "type": "string" }, "priceper": { "description": "单价(美元/克拉) = 总值(美元) / 总净重(克拉)", "type": "number" }, "settleamount": { "description": "总结算费用 - 实际扣除资金,不含税费保证金", "type": "number" }, "shaperange": { "description": "形状范围", "type": "string" }, "taxmargin": { "description": "税费保证金 - 确认结算费用时退回", "type": "number" }, "totalamount": { "description": "总值(美元)", "type": "number" }, "totalgrossweightgm": { "description": "总毛重(克)", "type": "number" }, "totalnetweightgm": { "description": "总净重(克)", "type": "number" }, "totalnetweigthct": { "description": "总净重(克拉)", "type": "number" }, "totalnumber": { "description": "总粒数", "type": "integer" }, "userid": { "description": "用户ID", "type": "integer" }, "weightrange": { "description": "重量规格范围 - Min(NetWeigthCT)- Max(NetWeigthCT)", "type": "string" } } }, "models.GzbsfworderdetailM": { "type": "object", "properties": { "colorinfo": { "description": "彩钻信息", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "grossweightgm": { "description": "毛重(克)", "type": "number" }, "gzcjshape": { "description": "形状(字符)", "type": "string" }, "netweigthct": { "description": "净重(克拉)", "type": "number" }, "netweigthgm": { "description": "净重(克)", "type": "number" }, "ordercontent": { "description": "内容", "type": "string" }, "orderdetailid": { "description": "单据明细ID(805+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "orderid": { "description": "单据ID(804+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "orderindex": { "description": "顺序", "type": "integer" }, "perprice": { "description": "单价(美元/克拉) = 总值(美元) / 净重(克拉)", "type": "number" }, "remark": { "description": "备注(其它)", "type": "string" }, "totalamount": { "description": "总值(美元)", "type": "number" } } }, "models.Gzbsfworderoperate": { "type": "object", "required": [ "orderid" ], "properties": { "advanceproofaddr": { "description": "预付款收款凭证(确认结算费用时)", "type": "string" }, "bankfee": { "description": "汇款银行手续费", "type": "number" }, "bankproofaddr": { "description": "广钻汇款银行手续费凭证(确认结算费用时)", "type": "string" }, "customsproofaddr": { "description": "海关税费保证金收据(确认结算费用时)", "type": "string" }, "gzbsstatus": { "description": "操作后单据状态 - 枚举\"GZBSStatus\"", "type": "integer" }, "logisticsfee": { "description": "代缴物流保险费", "type": "number" }, "logisticsproofaddr": { "description": "代缴物流保险费凭证(确认结算费用时)", "type": "string" }, "operatetime": { "description": "操作时间", "type": "string" }, "operatoraccount": { "description": "操作人账号 - systemmanager的logincode 或 loginaccount的logincode,无则用loginid", "type": "string" }, "operatorid": { "description": "操作人ID - systemmanager的autoid 或 loginaccount的loginid", "type": "integer" }, "operatorname": { "description": "操作人名称 - systemmanager的username 或 loginaccount的logincode,无则用loginid", "type": "string" }, "operatorsrc": { "description": "操作人来源 - 1:管理端 2:终端", "type": "integer" }, "orderid": { "description": "单据ID(804+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "otherfee": { "description": "其它费用", "type": "number" }, "remark": { "description": "操作备注", "type": "string" }, "servicefee": { "description": "综合服务费", "type": "number" }, "taxmargin": { "description": "税费保证金", "type": "number" }, "totalfee": { "description": "总费用 = 费用之和 (结算费用时不含税费保证金)", "type": "number" } } }, "models.Gzcertaddressconfig": { "type": "object", "properties": { "certregion": { "description": "证书地域 - 1:国内 2:国际", "type": "integer" }, "certtype": { "description": "证书类型", "type": "string" }, "orderindex": { "description": "显示顺序", "type": "integer" }, "orgcnname": { "description": "机构名称(中文)", "type": "string" }, "orgenname": { "description": "机构名称(英文)", "type": "string" }, "queryaddress": { "description": "查询地址", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.Gzcertaddressparam": { "type": "object", "properties": { "certtype": { "description": "证书类型", "type": "string" }, "orderindex": { "description": "参数顺序", "type": "integer" }, "paramkey": { "description": "参数Key", "type": "string" }, "paramname": { "description": "参数名称", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.GzcjbsorderfileM": { "type": "object", "required": [ "orderid" ], "properties": { "canmembervisit": { "description": "会员是否可访问 - 1:可 2:不可", "type": "integer" }, "fileaddress": { "description": "文件地址", "type": "string" }, "filegentype": { "description": "文件生成类型 - 1:系统生成 2:手动上传", "type": "integer" }, "filename": { "description": "文件名称", "type": "string" }, "operatetime": { "description": "操作时间", "type": "string" }, "operatoraccount": { "description": "操作人账号 - systemmanager的logincode 或 loginaccount的logincode,无则用loginid", "type": "string" }, "operatorid": { "description": "操作人ID - systemmanager的autoid 或 loginaccount的loginid", "type": "integer" }, "operatorsrc": { "description": "操作人来源 - 1:管理端 2:终端", "type": "integer" }, "orderfileid": { "description": "单据文件ID(803+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "orderid": { "description": "单据ID(801+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" } } }, "models.GzcjjcorderM": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "addresscn": { "description": "地址(中文)", "type": "string" }, "addressen": { "description": "地址(英文)", "type": "string" }, "advanceamount": { "description": "总预付款", "type": "number" }, "colorrange": { "description": "颜色范围", "type": "string" }, "companynamecn": { "description": "公司名称(中文)", "type": "string" }, "companynameen": { "description": "公司名称(英文)", "type": "string" }, "contactname": { "description": "联系人姓名", "type": "string" }, "contactphoneno": { "description": "联系人电话", "type": "string" }, "contactposition": { "description": "联系人职位", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "email": { "description": "邮箱", "type": "string" }, "executestatus": { "description": "执行状态 - 1:未生效 2:进行中 3:已结束", "type": "integer" }, "gzcjaccount": { "description": "送检账户", "type": "string" }, "gzcjaccounttype": { "description": "检测账户类型 - 枚举\"GZCJAccountType\"", "type": "integer" }, "gzcjcategorytype": { "description": "货物品类 - 枚举\"GZCJCategoryType\"", "type": "integer" }, "gzcjcategorytypedisplay": { "description": "货物品类", "type": "string" }, "gzcjdeliverytype": { "description": "收货方式 - 枚举\"GZCJDeliveryType\"", "type": "integer" }, "gzcjdeliverytypedisplay": { "description": "收货方式", "type": "string" }, "gzcjstatus": { "description": "单据状态(出境检测) - 枚举\"GZCJStatus\"", "type": "integer" }, "gzcjstatusdisplay": { "description": "单据状态(出境检测)", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "invoiceremark": { "description": "复核备注 - 发票装箱单使用", "type": "string" }, "orderid": { "description": "单据ID(801+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "orderidstr": { "description": "单据ID 字符(801+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "orderno": { "description": "单据编号 - 合同编号:GZDECJJC+单据流水号", "type": "string" }, "ordersn": { "description": "单据流水号 - yymm000 - yy表示年份,mm表示月份,年份、月份以两位数表示;000表示流水序号,序号不足三位以0补全", "type": "string" }, "origincountry": { "description": "原产国", "type": "string" }, "processingcountry": { "description": "成品钻石加工国", "type": "string" }, "realservicefee": { "description": "应收综合服务费", "type": "number" }, "servicefeesum": { "description": "汇总综合服务费 - 明细上值汇总", "type": "number" }, "settleamount": { "description": "总结算费用", "type": "number" }, "shaperange": { "description": "形状范围", "type": "string" }, "totalamount": { "description": "总金额(美元)", "type": "number" }, "totalgrossweight": { "description": "总毛重(克) = 每100颗单颗裸石毛重200克,毛重不足200克按200克计 (TotalNumber/100 向上取整) * 200", "type": "number" }, "totalnumber": { "description": "总粒数", "type": "integer" }, "totalweight": { "description": "总克拉数(保留3位小数)", "type": "number" }, "totalweightgm": { "description": "总净重(克) = TotalWeight * 0.2 (2位小数)", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" }, "weightrange": { "description": "重量规格范围 - Min(Weight) - Max(Weight)", "type": "string" }, "zsorigin": { "description": "天然钻石毛坯原产地", "type": "string" } } }, "models.GzcjjcorderdetailM": { "type": "object", "properties": { "amount": { "description": "参考货值(USD)", "type": "number" }, "colorinfo": { "description": "彩钻信息", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "gzcjmarktype": { "description": "刻印服务 - 枚举\"GZCJMarkType\" 【送检账户为“广钻账户”】", "type": "integer" }, "gzcjpublishtype": { "description": "是否披露处理 - 枚举 GZCJPublishType【送检账户为“广钻账户”】", "type": "integer" }, "gzcjpublishtypestring": { "description": "是否披露处理 - 枚举 GZCJPublishType 对应的显示值", "type": "string" }, "gzcjservicetype": { "description": "服务类别 - 枚举 GZCJServiceType【送检账户为“广钻账户”】", "type": "integer" }, "gzcjservicetypestring": { "description": "服务类别 - 枚举 GZCJServiceType 对应的显示值", "type": "string" }, "gzcjshapetype": { "description": "形状 - 枚举\"GZCJShapeType\"", "type": "integer" }, "gzcjshapetypestring": { "description": "形状(字符) - 枚举\"GZCJShapeType\"对应的显示值", "type": "string" }, "gzno": { "description": "货物编号", "type": "string" }, "orderdetailid": { "description": "单据明细ID(802+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "orderid": { "description": "单据ID(801+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "orderindex": { "description": "顺序", "type": "integer" }, "origincertno": { "description": "原证书号【送检账户为“广钻账户”】", "type": "string" }, "remark": { "description": "备注(其它)", "type": "string" }, "servicefee": { "description": "综合服务费 - 根据市场配置计算", "type": "number" }, "weight": { "description": "重量(CT)", "type": "number" } } }, "models.Gzcjjcorderoperate": { "type": "object", "required": [ "orderid", "status" ], "properties": { "advanceamount": { "description": "总预付款", "type": "number" }, "advanceproofaddr": { "description": "预付检测费和海关税费银行凭证(确认结算费用时)", "type": "string" }, "bankfee": { "description": "汇款银行手续费 [GZCJStatus = 10.预付款确认中\\13.付款确认中] 时", "type": "number" }, "bankproofaddr": { "description": "广钻汇款银行手续费凭证(确认结算费用时)", "type": "string" }, "customsfee": { "description": "海关税费 [GZCJStatus = 10.预付款确认中\\13.付款确认中] 时", "type": "number" }, "customsproofaddr": { "description": "海关税费凭证(确认结算费用时)", "type": "string" }, "exchangerate": { "description": "汇率 [GZCJStatus = 10.预付款确认中\\13.付款确认中] 时", "type": "number" }, "giaproofaddr": { "description": "GIA检测费凭证(确认结算费用时)", "type": "string" }, "giarmbfee": { "description": "GIA检测费(¥) [GZCJStatus = 10.预付款确认中\\13.付款确认中] 时", "type": "number" }, "giausdfee": { "description": "GIA检测费(USD$) [GZCJStatus = 10.预付款确认中\\13.付款确认中] 时", "type": "number" }, "logisticsfee": { "description": "代缴物流保险费 [GZCJStatus = 10.预付款确认中\\13.付款确认中] 时", "type": "number" }, "logisticsproofaddr": { "description": "代缴物流保险费凭证(确认结算费用时)", "type": "string" }, "operatetime": { "description": "操作时间", "type": "string" }, "operatoraccount": { "description": "操作人账号 - systemmanager的logincode 或 loginaccount的logincode,无则用loginid", "type": "string" }, "operatorid": { "description": "操作人ID - systemmanager的autoid 或 loginaccount的loginid", "type": "integer" }, "operatorname": { "description": "操作人名称 - systemmanager的username 或 loginaccount的logincode,无则用loginid", "type": "string" }, "operatorsrc": { "description": "操作人来源 - 1:管理端 2:终端", "type": "integer" }, "orderid": { "description": "单据ID(801+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "otherfee": { "description": "其它费用", "type": "number" }, "remark": { "description": "操作备注", "type": "string" }, "servicefee": { "description": "综合服务费 [GZCJStatus = 10.预付款确认中\\13.付款确认中] 时", "type": "number" }, "settleamount": { "description": "总结算费用", "type": "number" }, "status": { "description": "操作后单据状态 - 枚举\"GZCJStatus\"", "type": "integer" }, "totalfee": { "description": "总费用 = GIA检测费(¥) + 海关税费 + 汇款银行手续费 + 代缴物流保险费 + 综合服务费 + 其它费用 [GZCJStatus = 10.预付款确认中\\13.付款确认中] 时", "type": "number" } } }, "models.Gzmemberinfo": { "type": "object", "properties": { "contactname": { "description": "联系人", "type": "string" }, "contactphone": { "description": "电话", "type": "string" }, "contactwx": { "description": "微信号", "type": "string" }, "imageurl": { "description": "图片地址\\来源LOGO", "type": "string" }, "memberid": { "description": "会员ID(SEQ_GZ_MEMBERINFO)", "type": "integer" }, "membername": { "description": "会员名称\\来源名称", "type": "string" }, "membertags": { "description": "标签(逗号分隔)\\来源网址", "type": "string" }, "orderindex": { "description": "显示顺序", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.Gzrapaportprice": { "type": "object", "properties": { "dollar": { "description": "美元", "type": "string" }, "rmb": { "description": "人民币", "type": "string" } } }, "models.Hedgeinnerholderdetail": { "type": "object", "required": [ "buyorsell", "tradeid" ], "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "freezeqty": { "description": "冻结数量 - 按单平使用", "type": "integer" }, "goodsid": { "description": "商品ID", "type": "integer" }, "holderamount": { "description": "持仓金额 [商品币种]", "type": "number" }, "holderdays": { "description": "剩余冻结天数", "type": "integer" }, "holderprice": { "description": "持仓价格", "type": "number" }, "holderqty": { "description": "持仓数量", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "openprice": { "description": "建仓价格", "type": "number" }, "openqty": { "description": "建仓数量", "type": "integer" }, "parentaccountid": { "description": "所属母账户", "type": "integer" }, "releaseamount": { "description": "释放持仓金额[商品币种]", "type": "number" }, "tradeamount": { "description": "成交金额[账户]", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "成交单号(108+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "tradetime": { "description": "交易时间", "type": "string" } } }, "models.Hedgemarketopenlog": { "type": "object", "required": [ "accountid" ], "properties": { "accountid": { "description": "资金账号[外部母账户]", "type": "integer" }, "fcname": { "description": "期货公司名称", "type": "string" }, "handlestatus": { "description": "处理状态 - 1:登陆Mhp成功 2:登陆Mhp失败 3:登出Mhp", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "status": { "description": "状态 - 1:待开市 2:开市 4:手工休市 5:闭市 10:日终处理开始 11:日终处理成功 12:日终处理失败", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "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" }, "originalamount": { "description": "原金额 = TradeAmount + TradeCharge + OffAmount", "type": "number" }, "payamount": { "description": "支付金额 = TradeAmount + TradeCharge", "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" }, "orderamount": { "description": "委托金额", "type": "number" }, "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.InTradepositiontransfer": { "type": "object", "required": [ "inuserid" ], "properties": { "applicantid": { "description": "申请人ID", "type": "integer" }, "applyid": { "description": "申请ID(185+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "applyremark": { "description": "申请备注", "type": "string" }, "applystatus": { "description": "状态", "type": "string" }, "applytime": { "description": "申请时间", "type": "string" }, "auditorid": { "description": "审核人", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "clientticket": { "description": "客户端流水号", "type": "string" }, "closeexchagechargevalue": { "description": "平仓交易所手续费设置值(转出方)", "type": "number" }, "closefeealgorithm": { "description": "平仓手续费收取方式(转出方) 1:比率 2:固定", "type": "integer" }, "closememberchargevalue": { "description": "平仓会员手续费设置值(转出方)", "type": "number" }, "confirmdate": { "description": "确认时间", "type": "string" }, "freezedays": { "description": "冻结天数(T+N)", "type": "integer" }, "goodscuramount": { "description": "商品实时价金额", "type": "number" }, "goodscurprice": { "description": "商品实时价格", "type": "number" }, "goodsdisplay": { "description": "商品名称", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "inaccountid": { "description": "转入方资金ID(确认方)", "type": "integer" }, "incharge": { "description": "转入方手续费", "type": "number" }, "inloginid": { "description": "转入方登录账号", "type": "integer" }, "inuserid": { "description": "转入方用户ID(确认方)", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "openexchagechargevalue": { "description": "建仓交易所手续费设置值", "type": "number" }, "openfeealgorithm": { "description": "建仓手续费收取方式 1:比率 2:固定", "type": "integer" }, "openmemberchargevalue": { "description": "建仓会员手续费设置值", "type": "number" }, "outaccountid": { "description": "转出方资金ID(申请方)", "type": "integer" }, "outcharge": { "description": "转出方手续费", "type": "number" }, "outloginid": { "description": "转出方登录账号", "type": "integer" }, "outuserid": { "description": "转出方用户ID(申请方)", "type": "integer" }, "outusername": { "description": "转出方", "type": "string" }, "qty": { "description": "转让数量", "type": "integer" }, "retcode": { "description": "错误代码", "type": "integer" }, "retremark": { "description": "返回信息", "type": "string" }, "tradedate": { "description": "交易日", "type": "string" }, "transferamount": { "description": "转让总金额", "type": "number" }, "transferapplystatus": { "description": "过户申请状态 - 1: 待审核 2:待确认 3:确认处理中 4:已确认 5:申请失败 6:系统撤销 7:审核拒绝- 枚举\"transferapplystatus\"", "type": "integer" }, "transferprice": { "description": "转让价格", "type": "number" }, "transfertype": { "description": "转让类型 - 1.协议转让", "type": "integer" } } }, "models.InternalEnableTradeDetail": { "type": "object", "required": [ "areauserid", "goodsid", "tradeuserid" ], "properties": { "agreeunit": { "description": "合约乘数", "type": "number" }, "areauserid": { "description": "企业ID", "type": "integer" }, "convertratio": { "description": "品种系数", "type": "number" }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID(SEQ_DELIVERYGOODS)", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "futurehedgeqty": { "description": "[已关联数量]期货持仓套期量", "type": "number" }, "goodsid": { "description": "期货合约ID", "type": "integer" }, "hedgeditemid": { "description": "被套期项目ID", "type": "string" }, "hedgeditemnum": { "description": "项目编号", "type": "string" }, "tradeuserid": { "description": "交易用户ID", "type": "integer" }, "unexehedgeqty": { "description": "未执行套期量 = 未执行现货量*折算系数* (1/(1+增值税)) * 套期比例(项目上)", "type": "number" }, "unexespotqty": { "description": "未执行现货量", "type": "number" }, "wrstandardcode": { "description": "现货品类代码", "type": "string" }, "wrstandardid": { "description": "现货品类ID(SEQ_WRSTANDARD)", "type": "integer" }, "wrstandardname": { "description": "现货品类名称", "type": "string" } } }, "models.InternalUncorrelatedTradeDetail": { "type": "object", "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "accountname": { "description": "套期主体", "type": "string" }, "agreeunit": { "description": "合约乘数", "type": "number" }, "areauserid": { "description": "所属机构", "type": "integer" }, "bizsubjectid": { "description": "归属业务部门ID - SubjectID", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "channelbuildtype": { "description": "委托单据类型 0:无 1:建仓 2:平仓", "type": "integer" }, "convertratio": { "description": "品种系数", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人ID", "type": "integer" }, "creatorsrc": { "description": "创建人来源 - 1:管理端 2:终端 3:交易", "type": "integer" }, "enableqty": { "description": "项目可关联数量 = 套保品种数量 - 关联数量", "type": "number" }, "enumdicname": { "description": "单位", "type": "string" }, "goodscode": { "description": "合约代码", "type": "string" }, "goodsgroupid": { "description": "对冲品种ID[期货合约商品组ID]", "type": "integer" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "合约名称", "type": "string" }, "hedgeditemid": { "description": "现货ID[套期项目ID] [13 - 被套期项目ID] [4,10,11 - 现货合同ID] [9 - 套保计划ID]", "type": "integer" }, "hedgeflag": { "description": "投机套保标志 - 0:无 1:投机 2:套保 3:套利 4:套期保值(平安\\合同) 5:单边(平安) 6:移仓(平安) 7:错单处理(平安) 8:跨期套利(平安) 9:套期保值(计划) 10:套利(合同) 11:换月(合同) 12:交割(金瑞) 13:被套期项目", "type": "integer" }, "linkdetailid": { "description": "期货明细ID(614+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "linkstatus": { "description": "关联状态 - 1:成功 2:失败 3:解绑", "type": "integer" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "middlegoodsqty": { "description": "[套期商品数量]套保品种数量 = TradeQty * AgreeUnit * ConvertRatio", "type": "number" }, "relatedlot": { "description": "[数量]关联手数", "type": "number" }, "relatedmode": { "description": "关联方式 - 1:自动关联 2:手动关联 3:解绑关联", "type": "integer" }, "relatedqty": { "description": "关联数量 = RelatedLot * AgreeUnit * ConvertRatio", "type": "number" }, "retcode": { "description": "返回码", "type": "integer" }, "saleuserid": { "description": "业务员ID", "type": "integer" }, "tradedate": { "description": "关联交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "成交单号", "type": "string" }, "tradelot": { "description": "成交手数", "type": "integer" }, "tradeprice": { "description": "成交价", "type": "number" }, "tradetime": { "description": "成交时间", "type": "string" }, "tradetradedate": { "description": "成交交易日(yyyyMMdd)", "type": "string" }, "tradeuserid": { "description": "交易用户ID", "type": "integer" } } }, "models.Loginaccount": { "type": "object", "required": [ "loginid" ], "properties": { "canoutin": { "description": "是否可出入金 - 0:不可 1:可", "type": "integer" }, "clientroleid": { "description": "终端角色ID", "type": "integer" }, "haslogined": { "description": "是否已登录 - 0:未登录 1:已登录", "type": "integer" }, "hasupdatedpwd": { "description": "是否已更改密码 - 0:未修改 1:已修改", "type": "integer" }, "lastloginip": { "description": "最新登录地址", "type": "string" }, "lastloginmode": { "description": "最新登录方式(客户端类型) - 0:保留为未填终端类型 1:PC管理端 2:PC交易端 3:手机客户端_安卓 4:网页客户端 5:微信客户端 6:手机客户端_苹果 7:网上开户客户端 8:无效终端编号 9:报价终端(中江)", "type": "integer" }, "lastloginremark": { "description": "最新登录描述", "type": "string" }, "lastlogintime": { "description": "最新登录时间", "type": "string" }, "logincode": { "description": "登录代码", "type": "string" }, "loginfailnum": { "description": "连续登录失败次数(登录成功时清零)", "type": "integer" }, "loginid": { "description": "登陆账号", "type": "integer" }, "loginport": { "description": "最新登录端口", "type": "integer" }, "loginstatus": { "description": "登录账号状态 1:正常 2:冻结(停用) 3:无效(注销)", "type": "integer" }, "loginusertype": { "description": "登录账号类型 - 1:投资者 2:机构交易员", "type": "integer" }, "mobile": { "description": "手机号码(加密存储)", "type": "string" }, "modifierid": { "description": "修改人", "type": "integer" }, "modifysrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "pwdwrongcount": { "description": "密码错误次数", "type": "integer" }, "relateduserid": { "description": "关联用户ID(机构)", "type": "integer" }, "taaccountrighttype": { "description": "资金账号权限类型 - 1:不选默认为所有权限 2:不选默认为无权限", "type": "integer" }, "unfreezetime": { "description": "账户解冻时间", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.MainAccountInfo": { "type": "object", "properties": { "accountid": { "description": "账号id", "type": "integer" }, "accountname": { "description": "账号名称(taaccount表中的名称)", "type": "string" }, "appid": { "description": "AppID", "type": "string" }, "authcode": { "description": "授权码", "type": "string" }, "brokerid": { "description": "经纪商id", "type": "string" }, "fcid": { "description": "期货公司id", "type": "integer" }, "fcname": { "description": "期货公司代码", "type": "string" }, "hedgeaccountcode": { "description": "外部账号代码(主账号登录代码)", "type": "string" }, "hedgeaccountpwd": { "description": "密码", "type": "string" }, "ismain": { "description": "是否主账号", "type": "integer" }, "relateduserid": { "description": "关联用户id", "type": "integer" }, "userid": { "description": "关联用户id", "type": "integer" } } }, "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" }, "deliverymode": { "description": "交收方式(50模式) 1:配对交收 2:强平日交收", "type": "integer" }, "exchareaid": { "description": "所属交易所,可以没有", "type": "integer" }, "financemarketid": { "description": "融资回购市场ID [仓单贸易]", "type": "integer" }, "forceclosemode": { "description": "定期强平方式 - 1:到期结 2:日结 3:周结 4:月结 [收益权] 枚举-forceCloseMode", "type": "integer" }, "forceclosevalue": { "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" }, "isdeliverybuyerpayonline": { "description": "交收买方是否线上支付(50模式) - 0:否 1:是", "type": "integer" }, "isdeliverysellercanapply": { "description": "卖方是否可申请交收(50模式 - DeliveryMode = 2时) - 0:否 1:是", "type": "integer" }, "isrecordsource": { "description": "是否记录成交源 - 0:不记录 1:记录 [所有权]", "type": "integer" }, "isreleasemargin": { "description": "成交参与保证金是否释放[竞价式] - 0:不释放 1释放", "type": "integer" }, "isupdatereckonprice": { "description": "输入结算价标识 - 0:系统生成 1:手工输入(自动) 2:手工输入(手动)", "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" }, "paylaterflag": { "description": "是否支持后付 - 0:不支持 1;支持 - [挂牌点选 所有权、预售挂牌支持]", "type": "integer" }, "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" }, "updatereckonpriceinterval": { "description": "输入结算价时长(分钟) [1:手工输入(自动)]", "type": "integer" } } }, "models.Marketcalendar": { "type": "object", "properties": { "holidaydate": { "description": "节假日期(yyyy-MM-dd)", "type": "string" }, "marketid": { "description": "市场ID", "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" }, "endTime": { "description": "结束时间", "type": "string" }, "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" }, "startTime": { "description": "开始时间", "type": "string" }, "tradedate": { "description": "当前交易日(服务) 资金结算完成即变更,供交易服务使用", "type": "string" }, "tradedate2": { "description": "当前交易日(行情) 在第一个市场待开市时变更为TradeDate,供行情及终端系统使用", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.Marketsectionconfignew": { "type": "object", "properties": { "displayname": { "description": "显示名称", "type": "string" }, "marketids": { "description": "市场IDs - 逗号分隔", "type": "string" }, "marketsectionid": { "description": "市场版块ID(SEQ_MARKETSECTION)", "type": "integer" }, "orderindex": { "description": "排序", "type": "integer" }, "trademode": { "description": "交易模式", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.Mduserswapprotocol": { "type": "object", "properties": { "areauserid": { "description": "掉期服务商ID", "type": "integer" }, "auditid": { "description": "审核人", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "protocolstatus": { "description": "协议状态 - 1:未签署 2:签署中 3:已签署 4:已审核", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.Membergoodslimitconfig": { "type": "object", "required": [ "roletype", "userid" ], "properties": { "autoid": { "description": "AutoID(SEQ_MEMBERGOODSLIMITCONFIG)", "type": "integer" }, "goodsid": { "description": "商品ID", "type": "integer" }, "iscannotbuy": { "description": "是否不能挂买 0:否 1:是", "type": "integer" }, "iscannotsell": { "description": "是否不能挂卖 0:否 1:是", "type": "integer" }, "isnodisplay": { "description": "是否显示 0:否 1:是", "type": "integer" }, "roletype": { "description": "会员角色 - 6:自营会员 7:经纪会员", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "会员用户ID", "type": "integer" } } }, "models.Messageboard": { "type": "object", "required": [ "messageboardid" ], "properties": { "contactnum": { "description": "联系电话", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "message": { "description": "留言信息", "type": "string" }, "messageboardid": { "description": "留言簿ID(SEQ_MessageBoard)", "type": "integer" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.MineCpTradePreSaleResult": { "type": "object", "required": [ "buyuserid" ], "properties": { "applyid": { "description": "预售申请ID", "type": "string" }, "buyaccountid": { "description": "买方账户ID", "type": "integer" }, "buyhandleflag": { "description": "买处理标识", "type": "integer" }, "buyuserid": { "description": "买方用户ID", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "depositremain": { "description": "未付定金", "type": "number" }, "endtime": { "description": "预售结束时间", "type": "string" }, "goodscode": { "description": "期货合约代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "期货合约名称", "type": "string" }, "goodsnamedisplay": { "description": "商品名称", "type": "string" }, "handleflag": { "description": "处理标识 - 0:未处理 1:已处理", "type": "integer" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "openprice": { "description": "建仓价格\\预售价", "type": "number" }, "paystatus": { "description": "支付状态 - 1:待支付 2:已支付", "type": "integer" }, "relatedgoodsid": { "description": "关联交易合约ID", "type": "integer" }, "relatedmarketid": { "description": "关联交易合约市场ID", "type": "integer" }, "relatedtradeid": { "description": "二级市场成交单ID", "type": "integer" }, "sellaccountid": { "description": "卖方账户ID", "type": "integer" }, "sellhandleflag": { "description": "卖处理标识", "type": "integer" }, "sellname": { "description": "客户名称(企业名称)", "type": "string" }, "selluserid": { "description": "卖方用户ID", "type": "integer" }, "starttime": { "description": "预售开始时间", "type": "string" }, "tradeamount": { "description": "成交金额\\转让定金", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "成交单号(101+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "transferdeposit": { "description": "转让定金", "type": "number" }, "transferdepositratio": { "description": "转让定金比例(49)", "type": "number" } } }, "models.MineTradeGoodsDeliveryOffline": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "账户ID", "type": "integer" }, "buyorsell": { "description": "交收方向 - 0:买 1:卖", "type": "integer" }, "buyorselldisplay": { "description": "交收方向", "type": "string" }, "closetime": { "description": "完成时间", "type": "string" }, "closetradedate": { "description": "完成交易日", "type": "string" }, "deliveryamount": { "description": "交收货款", "type": "number" }, "deliveryinfo": { "description": "交收信息", "type": "string" }, "deliverylot": { "description": "交收手数", "type": "integer" }, "deliveryorderid": { "description": "交收单号(905+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "deliveryprice": { "description": "交收价格", "type": "number" }, "deliveryqty": { "description": "交收数量 (手数*合约乘数)", "type": "integer" }, "goodscode": { "description": "期货合约代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "期货合约名称", "type": "string" }, "goodsnamedisplay": { "description": "商品名称", "type": "string" }, "goodsunit": { "description": "单位", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "matchaccountid": { "description": "对手方AccountID", "type": "integer" }, "matchuserid": { "description": "对手方UserID", "type": "integer" }, "matchusername": { "description": "[交收对手方]客户名称(企业名称)", "type": "string" }, "orderstatus": { "description": "单据状态 - 1:待处理 2:交收中 3:已完成", "type": "integer" }, "orderstatusdisplay": { "description": "单据状态", "type": "string" }, "reqtime": { "description": "申请时间", "type": "string" }, "reqtradedate": { "description": "申请交易日", "type": "string" }, "userid": { "description": "申请用户ID", "type": "integer" } } }, "models.MineTradeOrder": { "type": "object", "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "amountflag": { "description": "资金标识 - 1:余额 2;待付", "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" }, "freezeqty": { "description": "冻结数量", "type": "integer" }, "gcaccountid": { "description": "账户ID[合约币种]", "type": "integer" }, "goodscode": { "description": "期货合约代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "期货合约名称", "type": "string" }, "goodsnamedisplay": { "description": "商品名称", "type": "string" }, "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:管理端协议转让 ... 23:融资买入", "type": "integer" }, "operatorid": { "description": "登录账号(LoginID)", "type": "integer" }, "optiontype": { "description": "期权类型 - 1:认购(看涨) 2:认沽(看跌)", "type": "integer" }, "orderflag": { "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": "委托状态 - 参考枚举'orderstatus' - 1:委托请求 2:待冻结 3:委托成功 4:委托失败 5:配对成功 6:已撤 7:部成 8:已成 9:部成部撤 10:成交失败 11:委托拒绝 12:经过摘牌(先摘后挂专用) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用) 17:冻结PD成功 18:冻结PD失败 19:冻结能量成功 20:冻结能量失败 21:预约已报价 22:过期未付 23:优惠券处理中 24:仓单生成失败 25:首付扣款失败 26:履约失败 27:撤单解冻贷款失败", "type": "integer" }, "ordertime": { "description": "委托时间", "type": "string" }, "preexerciseprice": { "description": "预申报价格", "type": "number" }, "premium": { "description": "权利金", "type": "number" }, "preorderid": { "description": "关联预埋单号(止盈止损单时填写)", "type": "integer" }, "presaleprice": { "description": "发售价(49)", "type": "number" }, "pricemode": { "description": "取价方式 - 1:市价 2: 限价 3:浮动价", "type": "integer" }, "quoteid": { "description": "报价单ID", "type": "integer" }, "relatedid": { "description": "关联单号(交割单)", "type": "integer" }, "retcode": { "description": "错误代码", "type": "integer" }, "sessionid": { "description": "会话ID", "type": "integer" }, "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" } } }, "models.MineTradeOrderDetail": { "type": "object", "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "amountflag": { "description": "资金标识 - 1:余额 2;待付", "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" }, "endtime": { "description": "预售结束时间", "type": "string" }, "freezecharge": { "description": "冻结手续费", "type": "number" }, "freezemargin": { "description": "冻结保证金(冻结交易金额)", "type": "number" }, "freezeqty": { "description": "冻结数量", "type": "integer" }, "gcaccountid": { "description": "账户ID[合约币种]", "type": "integer" }, "goodscode": { "description": "期货合约代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "期货合约名称", "type": "string" }, "goodsnamedisplay": { "description": "商品名称", "type": "string" }, "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:管理端协议转让 ... 23:融资买入", "type": "integer" }, "operatorid": { "description": "登录账号(LoginID)", "type": "integer" }, "optiontype": { "description": "期权类型 - 1:认购(看涨) 2:认沽(看跌)", "type": "integer" }, "orderflag": { "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": "委托状态 - 参考枚举'orderstatus' - 1:委托请求 2:待冻结 3:委托成功 4:委托失败 5:配对成功 6:已撤 7:部成 8:已成 9:部成部撤 10:成交失败 11:委托拒绝 12:经过摘牌(先摘后挂专用) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用) 17:冻结PD成功 18:冻结PD失败 19:冻结能量成功 20:冻结能量失败 21:预约已报价 22:过期未付 23:优惠券处理中 24:仓单生成失败 25:首付扣款失败 26:履约失败 27:撤单解冻贷款失败", "type": "integer" }, "ordertime": { "description": "委托时间", "type": "string" }, "preexerciseprice": { "description": "预申报价格", "type": "number" }, "premium": { "description": "权利金", "type": "number" }, "preorderid": { "description": "关联预埋单号(止盈止损单时填写)", "type": "integer" }, "presaledepositalgorithm": { "description": "预售定金方式(48) - 1:比率 2:固定", "type": "integer" }, "presaledepositvalue": { "description": "预售定金设置值(48)", "type": "number" }, "pricemode": { "description": "取价方式 - 1:市价 2: 限价 3:浮动价", "type": "integer" }, "quoteid": { "description": "报价单ID", "type": "integer" }, "relatedid": { "description": "关联单号(交割单)", "type": "string" }, "retcode": { "description": "错误代码", "type": "integer" }, "sellname": { "description": "客户名称(企业名称)", "type": "string" }, "sessionid": { "description": "会话ID", "type": "integer" }, "startprice": { "description": "起拍价[大宗式竞拍]", "type": "number" }, "starttime": { "description": "预售开始时间", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价[大宗]", "type": "number" }, "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" } } }, "models.MineTradePositionEx": { "type": "object", "properties": { "accountid": { "description": "账号Id", "type": "integer" }, "buycurholderamount": { "description": "买当前持仓总金额[商品币种]", "type": "number" }, "buycurpositionqty": { "description": "买当前持仓总数量", "type": "integer" }, "buyfrozenqty": { "description": "买持仓冻结数量", "type": "integer" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "depositremain": { "description": "未付定金", "type": "number" }, "goodscode": { "description": "期货合约代码(内部)", "type": "string" }, "goodsid": { "description": "商品Id", "type": "integer" }, "goodsname": { "description": "期货合约名称", "type": "string" }, "goodsnamedisplay": { "description": "商品名称", "type": "string" }, "lasttradedate": { "description": "最后交易日期", "type": "string" }, "paystatus": { "description": "支付状态 -1:待支付 2:已支付", "type": "integer" }, "presaleprice": { "description": "发售价(49)", "type": "number" }, "quoteminunit": { "description": "行情最小变动单位 [整数,报价小数位一起使用]", "type": "integer" }, "relatedgoodsid": { "description": "关联交易合约ID", "type": "integer" }, "sellname": { "description": "客户名称(企业名称)", "type": "string" }, "transferdeposit": { "description": "转让定金(49)", "type": "number" }, "transferdepositratio": { "description": "转让定金比例(49)", "type": "number" } } }, "models.MineTradeTradeDetail": { "type": "object", "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "accountname": { "description": "账户名称(机构名称)", "type": "string" }, "buildtype": { "description": "委托单据类型 1:建仓 2:平仓 3:先平后建", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "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" }, "goodsnamedisplay": { "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" }, "marketid": { "description": "市场ID", "type": "integer" }, "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": "integer" }, "performanceplanid": { "description": "履约计划ID[期权]", "type": "integer" }, "performancestatus": { "description": "履约状态[期权] - 0:无履约 1:未履约 2:履约中 3:履约完成", "type": "integer" }, "preexerciseprice": { "description": "预申报价格", "type": "number" }, "premium": { "description": "权利金 - [持仓单的权利金]", "type": "number" }, "presaleprice": { "description": "发售价(49)", "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" }, "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" } } }, "models.MyBargainApply": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "摘牌资金账号", "type": "integer" }, "applyprice": { "description": "申请价格", "type": "string" }, "applyremark": { "description": "申请备注", "type": "string" }, "applystatus": { "description": "申请状态 - 1:待确认 2:已确认 3:已拒绝 4:已撤销 5:系统撤销 6:处理失败 7:确认中", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "buyusername": { "description": "买方", "type": "string" }, "confirmprice": { "description": "可接受价格(拒绝时填写)-作废", "type": "number" }, "confirmqty": { "description": "可接受数量(拒绝时填写)-作废", "type": "integer" }, "confirmremark": { "description": "确认备注", "type": "string" }, "confirmtime": { "description": "确认时间", "type": "string" }, "confirmuserid": { "description": "确认人", "type": "integer" }, "goodsno": { "description": "商品编号", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "ladingbillid": { "description": "摘牌方提单ID [卖]", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "matchaccountid": { "description": "挂牌方资金账号", "type": "integer" }, "matchuserid": { "description": "挂牌方用户ID", "type": "integer" }, "performancetemplateid": { "description": "履约计划模板ID", "type": "integer" }, "price": { "description": "价格", "type": "number" }, "priceper": { "description": "克拉单价 - 类型:1,2,3,5", "type": "string" }, "qty": { "description": "申请数量", "type": "number" }, "refprice": { "description": "参考价格", "type": "string" }, "retcode": { "description": "委托返回代码", "type": "integer" }, "sellusername": { "description": "卖方", "type": "string" }, "sizedisplay": { "description": "尺寸", "type": "string" }, "subnum": { "description": "摘牌方提单子单号 [卖]", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "摘牌人用户ID", "type": "integer" }, "warehousenamedisplay": { "type": "string" }, "wrbargainid": { "description": "[询价单号]议价申请单ID(327+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrtradeorderid": { "description": "关联委托单ID", "type": "string" }, "zscerttypedisplay": { "type": "string" }, "zsclaritytype1display": { "type": "string" }, "zsclaritytype2display": { "type": "string" }, "zscolortype1display": { "type": "string" }, "zscolortype2display": { "type": "string" }, "zscrystaltypedisplay": { "type": "string" }, "zscurrencytypedisplay": { "type": "string" }, "zscurrencytypedisplayunit": { "type": "string" }, "zscuttype1display": { "type": "string" }, "zscuttype2display": { "type": "string" }, "zsczcolor1typedisplay": { "type": "string" }, "zsczcolor2typedisplay": { "type": "string" }, "zsczcolor3typedisplay": { "type": "string" }, "zsfluorescencetype1display": { "type": "string" }, "zsfluorescencetype2display": { "type": "string" }, "zspolishtype1display": { "type": "string" }, "zspolishtype2display": { "type": "string" }, "zsshapetypedisplay": { "type": "string" }, "zsstyletypedisplay": { "type": "string" }, "zssymmetrytype1display": { "type": "string" }, "zssymmetrytype2display": { "type": "string" } } }, "models.MyBuyOrder": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "ordertime": { "description": "委托时间", "type": "string" }, "origin": { "description": "原产地", "type": "string" }, "performancetemplateid": { "description": "履约计划模板ID", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "validtime": { "description": "有效期限", "type": "string" }, "warehouseids": { "description": "仓库ID - 多个, 逗号分隔", "type": "string" }, "warehouseinfosdisplay": { "type": "string" }, "wrtradeorderid": { "description": "[委托单号]买委托单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrtradeorderstatus": { "description": "委托状态 - 参考枚举'WRTradeOrderStatus' - 1:委托请求 2:待冻结 3:委托成功 4:委托失败 5:配对成功 6:已撤 7:部成 8:已成 9:部成部撤 10:成交失败 11:委托拒绝 12:经过摘牌(先摘后挂专用) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用) 17:冻结PD成功 18:冻结PD失败 19:冻结能量成功 20:冻结能量失败 21:预约已报价 22:过期未付 23:优惠券处理中 24:仓单生成失败 25:首付扣款失败 26:履约失败 27:撤单解冻贷款失败WRTrade_OrderDetail、", "type": "integer" }, "zscategory": { "description": "钻石分类 - 枚举”ZSCategory“", "type": "integer" }, "zscategorydisplay": { "type": "string" }, "zsclaritytype": { "description": "净度 - 两个, 逗号分隔", "type": "string" }, "zsclaritytypedisplay": { "type": "string" }, "zscolortype": { "description": "颜色 - 两个, 逗号分隔", "type": "string" }, "zscolortypedisplay": { "type": "string" }, "zscrystaltype": { "description": "晶型 - 多个,逗号分隔", "type": "string" }, "zscrystaltypedisplay": { "type": "string" }, "zscurrencytype": { "description": "货币类型 - 多个, 逗号分隔", "type": "string" }, "zscurrencytypedisplay": { "type": "string" }, "zscuttype": { "description": "切工 - 两个, 逗号分隔", "type": "string" }, "zscuttypedisplay": { "type": "string" }, "zsczcolor1type": { "description": "彩钻颜色1, 逗号分隔", "type": "string" }, "zsczcolor1typedisplay": { "type": "string" }, "zsczcolor2type": { "description": "彩钻颜色2, 逗号分隔", "type": "string" }, "zsczcolor2typedisplay": { "type": "string" }, "zsczcolor3type": { "description": "彩钻颜色3, 逗号分隔", "type": "string" }, "zsczcolor3typedisplay": { "type": "string" }, "zsfluorescencetype": { "description": "荧光 - 多个, 逗号分隔", "type": "string" }, "zsfluorescencetypedisplay": { "type": "string" }, "zspolishtype": { "description": "抛光度 - 两个, 逗号分隔", "type": "string" }, "zspolishtypedisplay": { "type": "string" }, "zsshapetype": { "description": "形状 - 多个, 逗号分隔", "type": "string" }, "zsshapetypedisplay": { "type": "string" }, "zssize": { "description": "尺寸 - 两个小数, 逗号分隔", "type": "string" }, "zssizedisplay": { "description": "颜色", "type": "string" }, "zsstyletype": { "description": "款式 - 多个, 逗号分隔", "type": "string" }, "zsstyletypedisplay": { "type": "string" }, "zssymmetrytype": { "description": "对称度 - 两个, 逗号分隔", "type": "string" }, "zssymmetrytypedisplay": { "type": "string" }, "zstabledisplay": { "description": "求购信息", "type": "string" } } }, "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.MyDeListing": { "type": "object", "required": [ "userid" ], "properties": { "buyaccountid": { "description": "买方账号ID", "type": "integer" }, "buychargevalue": { "description": "买方手续费", "type": "number" }, "buyuserid": { "description": "买方用户ID", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "exchangerate": { "description": "汇率", "type": "number" }, "goodsno": { "description": "商品编号", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "matchusername": { "description": "对手方", "type": "string" }, "oritradeamount": { "description": "成交金额[商品币种]", "type": "number" }, "performanceplanid": { "description": "履约计划ID/合同ID", "type": "string" }, "price": { "description": "价格", "type": "number" }, "qty": { "description": "成交重量", "type": "number" }, "sellaccountid": { "description": "卖方账号ID", "type": "integer" }, "sellchargevalue": { "description": "卖方手续费", "type": "number" }, "selluserid": { "description": "卖方用户ID", "type": "integer" }, "sizedisplay": { "description": "尺寸", "type": "string" }, "tradeamount": { "description": "成交金额", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradetime": { "description": "成交时间", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "warehousenamedisplay": { "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID", "type": "integer" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrtradedetailid": { "description": "仓单贸易成交单ID(321+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "zscategory": { "description": "钻石分类 - 枚举”ZSCategory“", "type": "integer" }, "zscategorydisplay": { "type": "string" }, "zscerttypedisplay": { "type": "string" }, "zsclaritytype1display": { "type": "string" }, "zsclaritytype2display": { "type": "string" }, "zscolortype1display": { "type": "string" }, "zscolortype2display": { "type": "string" }, "zscrystaltypedisplay": { "type": "string" }, "zscurrencytype": { "description": "货币类型 - 枚举“ZSCurrencyType”", "type": "integer" }, "zscurrencytypedisplay": { "type": "string" }, "zscurrencytypedisplayunit": { "type": "string" }, "zscuttype1display": { "type": "string" }, "zscuttype2display": { "type": "string" }, "zsczcolor1typedisplay": { "type": "string" }, "zsczcolor2typedisplay": { "type": "string" }, "zsczcolor3typedisplay": { "type": "string" }, "zsfluorescencetype1display": { "type": "string" }, "zsfluorescencetype2display": { "type": "string" }, "zspolishtype1display": { "type": "string" }, "zspolishtype2display": { "type": "string" }, "zsshapetypedisplay": { "type": "string" }, "zsstyletypedisplay": { "type": "string" }, "zssymmetrytype1display": { "type": "string" }, "zssymmetrytype2display": { "type": "string" } } }, "models.MyDelistingApply": { "type": "object", "required": [ "selluserid" ], "properties": { "applyprice": { "description": "申请价格", "type": "number" }, "applyqty": { "description": "申请数量", "type": "number" }, "applyremark": { "description": "申请备注", "type": "string" }, "applystatus": { "description": "申请状态 - 1:待确认 2:已确认 3:已拒绝 4:已撤销 5:系统撤销 6:处理失败 7:确认中", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "auditremark": { "description": "确认备注", "type": "string" }, "audittime": { "description": "确认时间", "type": "string" }, "buyuserid": { "description": "买方用户ID", "type": "integer" }, "buyusername": { "description": "买方", "type": "string" }, "buywrtradeorderid": { "description": "买委托单ID", "type": "string" }, "cerno": { "description": "证书编号 - 类型:2,4,5", "type": "string" }, "goodsno": { "description": "商品编号", "type": "string" }, "ladingbillid": { "description": "卖方提单ID", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "performancetemplateid": { "description": "履约计划模板ID", "type": "integer" }, "price": { "description": "价格", "type": "number" }, "priceper": { "description": "克拉单价", "type": "string" }, "sellaccountid": { "description": "卖方账户ID", "type": "integer" }, "selldelistingapplyid": { "description": "[询价单号]卖摘牌申请ID(916+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "selltradeorderid": { "description": "卖方委托ID(买方确认成交后更新)", "type": "string" }, "selluserid": { "description": "卖方用户ID", "type": "integer" }, "sellusername": { "description": "卖方", "type": "string" }, "sizedisplay": { "description": "尺寸", "type": "string" }, "subnum": { "description": "卖方提单子单号", "type": "integer" }, "warehouseinfosdisplay": { "type": "string" }, "weight": { "description": "克拉重量", "type": "number" }, "wrfactortypeid": { "description": "仓单要素类型ID", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "zsallproperties": { "type": "string" }, "zscategorydisplay": { "type": "string" }, "zscerttype": { "description": "证书类型 - 枚举”ZSCertType“ - 类型:2,4,5", "type": "integer" }, "zscerttypedisplay": { "description": "证书类型", "type": "string" }, "zsclaritytypedisplay": { "type": "string" }, "zscolortypedisplay": { "type": "string" }, "zscrystaltypedisplay": { "type": "string" }, "zscurrencytypedisplay": { "type": "string" }, "zscurrencytypedisplayunit": { "description": "价格单位", "type": "string" }, "zscuttypedisplay": { "type": "string" }, "zsczcolor1typedisplay": { "type": "string" }, "zsczcolor2typedisplay": { "type": "string" }, "zsczcolor3typedisplay": { "type": "string" }, "zsfluorescencetypedisplay": { "type": "string" }, "zspolishtypedisplay": { "type": "string" }, "zsshapetypedisplay": { "type": "string" }, "zssizedisplay": { "type": "string" }, "zsstyletypedisplay": { "type": "string" }, "zssymmetrytypedisplay": { "type": "string" }, "zstabledisplay": { "type": "string" } } }, "models.MyDeliveryofflinedetail": { "type": "object", "required": [ "deliveryorderid", "userid" ], "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "deliveryamount": { "description": "交收货款", "type": "number" }, "deliverydetailid": { "description": "明细单号(906+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "deliverylot": { "description": "申请交收手数", "type": "integer" }, "deliveryorderid": { "description": "交收单号(905+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "deliveryprice": { "description": "交收价格", "type": "number" }, "deliveryqty": { "description": "申请交收数量 (手数*合约乘数)", "type": "integer" }, "holdlot": { "description": "持仓手数", "type": "integer" }, "holdqty": { "description": "持仓数量(手数*合约乘数)", "type": "integer" }, "tradeid": { "description": "成交单号(101+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.MyDeliveryofflineoperatelog": { "type": "object", "required": [ "deliveryorderid" ], "properties": { "aftdeliverystatus": { "description": "操作后交收状态(OperateType=1时) - 枚举deliveryStatus", "type": "integer" }, "confirmid": { "description": "确认人", "type": "integer" }, "confirmstatus": { "description": "确认状态 - 1:未确认 2:已确认 - 枚举confirmStatus", "type": "integer" }, "confirmtime": { "description": "确认时间", "type": "string" }, "curdeliverystatus": { "description": "当前交收状态(OperateType=1时) - 枚举deliveryStatus", "type": "integer" }, "deliveryorderid": { "description": "交收单ID", "type": "string" }, "deliverypaymode": { "description": "付款方式 - 1:线上支付2:线下支付 - 枚举deliveryPayMode", "type": "integer" }, "fileaddress": { "description": "文件地址", "type": "string" }, "filename": { "description": "文件名称", "type": "string" }, "operatelogid": { "description": "明细单号(907+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "operatetime": { "description": "操作时间", "type": "string" }, "operatetype": { "description": "操作类型 - 1:交收流程 2:付款流水", "type": "integer" }, "operatoraccount": { "description": "操作人账号 - systemmanager的logincode 或 loginaccount的logincode,无则用loginid", "type": "string" }, "operatorid": { "description": "操作人ID - systemmanager的autoid 或 loginaccount的loginid", "type": "integer" }, "operatorname": { "description": "操作人名称 - systemmanager的username 或 loginaccount的logincode,无则用loginid", "type": "string" }, "operatorsrc": { "description": "操作人来源 - 1:管理端 2:终端 3:系统", "type": "integer" }, "payamount": { "description": "付款金额", "type": "number" }, "remark": { "description": "操作备注", "type": "string" } } }, "models.MyFavorite": { "type": "object", "required": [ "userid" ], "properties": { "accountname": { "description": "账户名称(机构名称)", "type": "string" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "favoritestatus": { "description": "收藏状态 - 1:正常 2:失效", "type": "integer" }, "goodsno": { "description": "商品编号", "type": "string" }, "imagepath": { "description": "商品照片(相对地址)", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketprice": { "description": "市场价", "type": "string" }, "price": { "description": "价格", "type": "number" }, "priceper": { "description": "克拉单价", "type": "string" }, "sellusername": { "description": "卖家", "type": "string" }, "sizedisplay": { "description": "尺寸", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "warehousenamedisplay": { "description": "仓库名称", "type": "string" }, "weight": { "description": "总重量(克拉重量) - 类型:1,2,3,4,5", "type": "number" }, "weightavg": { "description": "平均单颗重量 - 类型:1,3", "type": "number" }, "wrfactortypeid": { "description": "仓单要素类型ID/商品ID(77)", "type": "string" }, "wrstandardid": { "description": "现货商品ID(自增 SEQ_GOODS 确保不重复)", "type": "integer" }, "wrtradeorderid": { "description": "仓单贸易委托单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "zscategory": { "description": "钻石分类 - 枚举”ZSCategory“", "type": "integer" }, "zscategorydisplay": { "type": "string" }, "zscerttypedisplay": { "type": "string" }, "zsclaritytype1display": { "type": "string" }, "zsclaritytype2display": { "type": "string" }, "zscolortype1display": { "type": "string" }, "zscolortype2display": { "type": "string" }, "zscrystaltypedisplay": { "type": "string" }, "zscurrencytypedisplay": { "type": "string" }, "zscurrencytypedisplayunit": { "type": "string" }, "zscuttype1display": { "type": "string" }, "zscuttype2display": { "type": "string" }, "zsczcolor1typedisplay": { "type": "string" }, "zsczcolor2typedisplay": { "type": "string" }, "zsczcolor3typedisplay": { "type": "string" }, "zsfluorescencetype1display": { "type": "string" }, "zsfluorescencetype2display": { "type": "string" }, "zspolishtype1display": { "type": "string" }, "zspolishtype2display": { "type": "string" }, "zsshapetypedisplay": { "type": "string" }, "zsstyletypedisplay": { "type": "string" }, "zssymmetrytype1display": { "type": "string" }, "zssymmetrytype2display": { "type": "string" } } }, "models.MyPerformanc": { "type": "object", "properties": { "accountname": { "description": "[对手方]账户名称(机构名称)", "type": "string" }, "amount": { "description": "履约金额", "type": "number" }, "buyaccountid": { "description": "买方账号", "type": "integer" }, "buyerfreezeamount": { "description": "买方履约前冻结资金", "type": "number" }, "buyerfreezeamountremain": { "description": "买方履约前冻结资金剩余", "type": "number" }, "buyerinfo": { "description": "买方联系信息 - 存JSON字符串, 根据枚举‘BuyerContactInfo',显示\\隐藏字段,若数据不为JSON,则直接显示{ \"ContactInfo\": \"xxxxxxxx\", \"ReceiveInfo\": \"xxxxxxxxx\", \"ReceiptInfo\": \"xxxxxxxxxxxx\"}", "type": "string" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "buypaidamount": { "description": "买方已冻/已扣金额", "type": "number" }, "buytodayamount": { "description": "买方今日扣/冻金额 (待开市时清零)", "type": "number" }, "curstepid": { "description": "当前步骤ID", "type": "string" }, "executeside": { "description": "步骤执行方 - 1:买方 2:卖方", "type": "integer" }, "goodsno": { "description": "商品编号", "type": "string" }, "overshortamount": { "description": "溢短金额", "type": "number" }, "paymenttype": { "description": "买方支付方式 - 1:冻结 2:扣款", "type": "integer" }, "performanceplanid": { "description": "履约计划ID(130+yyMMddHHmmss+xxxx)", "type": "string" }, "performancestatus": { "description": "履约状态 - 1:待激活 2:正常 3:处理错误 4:违约待处理 5:违约处理中 6:完成 7.违约已完成 8:释放冻结失败 9:超时待处理 10:超时关闭", "type": "integer" }, "price": { "description": "价格", "type": "number" }, "priceper": { "description": "克拉单价", "type": "string" }, "relatedorderid": { "description": "关联单号(履约类型的关联单号)", "type": "string" }, "remaindays": { "description": "剩余天数", "type": "integer" }, "sellerfreezeamount": { "description": "卖方履约前冻结资金", "type": "number" }, "sellerfreezeamountremain": { "description": "卖方履约前冻结资金剩余", "type": "number" }, "sellerinfo": { "description": "卖方联系信息 - 存JSON字符串, 根据枚举‘SellerContactInfo',显示\\隐藏字段,若数据不为JSON,则直接显示{ \"ContactInfo\": \"xxxxxxxx\"}", "type": "string" }, "sellreceivedamount": { "description": "卖方已收金额", "type": "number" }, "selltodayamount": { "description": "卖方今日收取金额(待开市时清零)", "type": "number" }, "sizedisplay": { "description": "尺寸", "type": "string" }, "steptypeid": { "description": "履约步骤类型ID - 1:买方支付 2:卖方收款 3:买方自提 4:卖方发货 5:买方确认货 6:卖方发票 7:买方确认票 8:仓单转移 9:释放卖方冻结 10:货款溢短 11:生成合同[中江] 12:运费 90:确认支付 91. 确认放行 92买方支付(直接扣款) 用于-1模板“", "type": "integer" }, "warehousenamedisplay": { "type": "string" }, "weight": { "description": "总重量(克拉重量) - 类型:1,2,3,4,5", "type": "number" }, "zscategorydisplay": { "type": "string" }, "zscerttypedisplay": { "type": "string" }, "zsclaritytype1display": { "type": "string" }, "zsclaritytype2display": { "type": "string" }, "zscolortype1display": { "type": "string" }, "zscolortype2display": { "type": "string" }, "zscrystaltypedisplay": { "type": "string" }, "zscurrencytypedisplay": { "type": "string" }, "zscurrencytypedisplayunit": { "type": "string" }, "zscuttype1display": { "type": "string" }, "zscuttype2display": { "type": "string" }, "zsczcolor1typedisplay": { "type": "string" }, "zsczcolor2typedisplay": { "type": "string" }, "zsczcolor3typedisplay": { "type": "string" }, "zsfluorescencetype1display": { "type": "string" }, "zsfluorescencetype2display": { "type": "string" }, "zspolishtype1display": { "type": "string" }, "zspolishtype2display": { "type": "string" }, "zsshapetypedisplay": { "type": "string" }, "zsstyletypedisplay": { "type": "string" }, "zssymmetrytype1display": { "type": "string" }, "zssymmetrytype2display": { "type": "string" } } }, "models.MyRefer": { "type": "object", "properties": { "accountname": { "description": "用户名(脱敏)", "type": "string" }, "createtime": { "description": "时间(yyyy-mm-dd)", "type": "string" }, "score": { "description": "积分", "type": "number" } } }, "models.MySellOrder": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "资金账号", "type": "integer" }, "applyid": { "description": "申请单ID", "type": "integer" }, "attachment1": { "description": "附件1", "type": "string" }, "attachment2": { "description": "附件2", "type": "string" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "canbargain": { "description": "是否可议价 - 0:不可 1:可", "type": "integer" }, "cancelqty": { "description": "撤销数量", "type": "integer" }, "canceltime": { "description": "撤销时间", "type": "string" }, "cerno": { "type": "string" }, "chargealgorithm": { "description": "手续费收取方式 1:比率 2:固定", "type": "integer" }, "chargealgorithmvalue": { "description": "手续费设置值(交易所部分)", "type": "number" }, "chargealgorithmvalue2": { "description": "手续费设置值(会员部分)", "type": "number" }, "clientordertime": { "description": "客户端委托时间", "type": "string" }, "cpcertno": { "type": "string" }, "exchangerate": { "description": "汇率[67]", "type": "number" }, "firstratio": { "description": "首付比率 - [挂牌时指定,摘牌时使用]", "type": "number" }, "fixedprice": { "description": "[克拉单价]固定价格 - [挂牌]", "type": "number" }, "freezecharge": { "description": "冻结手续费", "type": "number" }, "freezefirstamount": { "description": "冻结首付金额 - [摘牌]", "type": "number" }, "freezemargin": { "description": "冻结保证金", "type": "number" }, "goodsno": { "description": "商品编号", "type": "string" }, "imagepath": { "type": "string" }, "isspecified": { "description": "是否指定对手 - 0:不指定 1:指定好友(贸易圈) 2:指定对手 - [挂牌]", "type": "integer" }, "kppath": { "type": "string" }, "kpweight": { "type": "string" }, "marginalgorithm": { "description": "保证金方式 - 1:比率 2:固定", "type": "integer" }, "marginvalue": { "description": "保证金设置值", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketprice": { "type": "string" }, "orderamount": { "description": "挂牌金额[账户] [67]= OrderQty * FixedPrice * ExchangeRate /100", "type": "number" }, "ordertime": { "description": "委托时间", "type": "string" }, "performancetemplateid": { "description": "履约计划模板ID", "type": "integer" }, "price": { "description": "价格", "type": "number" }, "pricefactor": { "description": "价格系数(浮动价时填写) - [挂牌]", "type": "number" }, "pricemove": { "description": "升贴水(浮动价时填写) - [挂牌]", "type": "number" }, "priceper": { "type": "string" }, "relatedwrtradeorderid": { "description": "关联委托单号(摘牌委托关联挂牌委托单ID)", "type": "integer" }, "remark": { "type": "string" }, "retcode": { "description": "错误代码", "type": "integer" }, "selledqty": { "description": "成交重量", "type": "number" }, "settingmaterial": { "type": "string" }, "size1": { "type": "string" }, "size2": { "type": "string" }, "size3": { "type": "string" }, "sizedisplay": { "description": "尺寸", "type": "string" }, "stonedesc": { "type": "string" }, "totalqty": { "description": "总重量", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价格 - [摘牌] (浮动价 ((商品1价格*商品1价格系数+升贴水)* 商品1重量系数 + 商品2价格*商品2价格系数+商品2升贴水)* 商品2重量系数 ...)* 委托单价格系数 + 委托单升贴水)", "type": "number" }, "unfreezecharge": { "description": "解冻手续费", "type": "number" }, "unfreezefirstamount": { "description": "解冻首付金额 - [摘牌]", "type": "number" }, "unfreezemargin": { "description": "解冻保证金", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" }, "uuid": { "description": "发起端唯一id", "type": "string" }, "validtime": { "description": "有效期限", "type": "string" }, "validtype": { "description": "有效类型 - 1当日有效 2本周有效 3指定日期有效 4一直有效", "type": "integer" }, "warehousenamedisplay": { "type": "string" }, "wrbargainid": { "description": "议价申请单ID", "type": "integer" }, "wrfactortypeid": { "description": "仓单要素类型ID/商品ID(77)", "type": "integer" }, "wrpath": { "type": "string" }, "wrpricetype": { "description": "价格方式 - 1:固定价 2-浮动价 - [挂牌]", "type": "integer" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrtradeorderid": { "description": "仓单贸易委托单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrtradeorderstatus": { "description": "委托状态 - 参考枚举'WRTradeOrderStatus' - 1:委托请求 2:待冻结 3:委托成功 4:委托失败 5:配对成功 6:已撤 7:部成 8:已成 9:部成部撤 10:成交失败 11:委托拒绝 12:经过摘牌(先摘后挂专用) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用) 17:冻结PD成功 18:冻结PD失败 19:冻结能量成功 20:冻结能量失败 21:预约已报价 22:过期未付 23:优惠券处理中 24:仓单生成失败 25:首付扣款失败 26:履约失败 27:撤单解冻贷款失败", "type": "integer" }, "wrtradetype": { "description": "仓单贸易类型 - 1:挂牌 2:摘牌 3:提货卖(文化中国) 4:提货买(文化中国)", "type": "integer" }, "wrtransferuserid": { "description": "仓单受让用户 - [摘牌]", "type": "integer" }, "zscategory": { "description": "钻石分类 - 枚举”ZSCategory“", "type": "integer" }, "zscategorydisplay": { "description": "钻石分类 - 描述", "type": "string" }, "zscerttypedisplay": { "type": "string" }, "zsclaritytype1display": { "type": "string" }, "zsclaritytype2display": { "type": "string" }, "zscolortype1display": { "type": "string" }, "zscolortype2display": { "type": "string" }, "zscrystaltype": { "type": "string" }, "zscrystaltypedisplay": { "type": "string" }, "zscurrencytype": { "description": "货币类型 - 枚举“ZSCurrencyType”", "type": "integer" }, "zscurrencytypedisplay": { "type": "string" }, "zscurrencytypedisplayunit": { "type": "string" }, "zscuttype1display": { "type": "string" }, "zscuttype2display": { "type": "string" }, "zsczcolor1typedisplay": { "type": "string" }, "zsczcolor2typedisplay": { "type": "string" }, "zsczcolor3typedisplay": { "type": "string" }, "zsfluorescencetype1display": { "type": "string" }, "zsfluorescencetype2display": { "type": "string" }, "zspolishtype1display": { "type": "string" }, "zspolishtype2display": { "type": "string" }, "zsshapetypedisplay": { "type": "string" }, "zsstyletypedisplay": { "type": "string" }, "zssymmetrytype1display": { "type": "string" }, "zssymmetrytype2display": { "type": "string" } } }, "models.MyTradegoodsdeliveryoffline": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "账户ID", "type": "integer" }, "agreeunit": { "description": "期货合约乘数", "type": "number" }, "buyorsell": { "description": "交收方向 - 0:买 1:卖", "type": "integer" }, "clientticket": { "description": "客户端流水号", "type": "string" }, "closetime": { "description": "完成时间", "type": "string" }, "closetradedate": { "description": "完成交易日", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "deliveryamount": { "description": "交收货款", "type": "number" }, "deliverycharge": { "description": "交割手续费", "type": "number" }, "deliveryinfo": { "description": "交收信息", "type": "string" }, "deliverylot": { "description": "交收手数", "type": "integer" }, "deliveryorderid": { "description": "交收单号(905+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "deliverypremium": { "description": "交收升贴水(每单位)", "type": "number" }, "deliveryprice": { "description": "交收价格", "type": "number" }, "deliveryqty": { "description": "交收数量 (手数*合约乘数)", "type": "integer" }, "deliverystatus": { "description": "交收单状态2(52模式使用) - 1:待审核 2:待确认 3:待付款 4:付款中 5:已完成付款 6:处理中 20:交收完成 21:审核拒绝 22:确认过期 23:付款过期 24:财务撤销 -- 枚举deliveryStatus", "type": "integer" }, "deliverytotalamount": { "description": "交收总货款 = 交收货款 + 交收升贴水 * 交收数量", "type": "number" }, "exchchargevalue": { "description": "交易所手续费设置值", "type": "number" }, "feealgorithm": { "description": "手续费收取方式 1:比率 2:固定", "type": "integer" }, "freezeamount": { "description": "冻结货款", "type": "number" }, "goodscode": { "description": "期货合约代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "期货合约名称", "type": "string" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "matchaccountid": { "description": "对手方AccountID", "type": "integer" }, "matchuserid": { "description": "对手方UserID", "type": "integer" }, "memberchargevalue": { "description": "会员手续费设置值", "type": "number" }, "orderstatus": { "description": "线下交收单状态 - 1:待处理 2:交收中 3:已完成 4:申请失败 枚举deliveryOrderStatus", "type": "integer" }, "payedamount": { "description": "已付货款", "type": "number" }, "realdeliveryamount": { "description": "实际交收货款", "type": "number" }, "realdeliveryqty": { "description": "实际交收数量", "type": "number" }, "reqtime": { "description": "申请时间", "type": "string" }, "reqtradedate": { "description": "申请交易日", "type": "string" }, "toconfirmtime": { "description": "确认截止时间(买交收)", "type": "string" }, "topaytime": { "description": "付款截止时间(买交收)", "type": "string" }, "userid": { "description": "申请用户ID", "type": "integer" } } }, "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.MyWRPosition": { "type": "object", "required": [ "wruserid" ], "properties": { "cerno": { "description": "证书编号 - 类型:2,4,5", "type": "string" }, "cpcertno": { "description": "金伯利证书编号 - 类型:3", "type": "string" }, "ffreezeqty": { "description": "冻结数量:WRPosition表:FREEZEQTY/100 , 保留两位小数", "type": "number" }, "ftotalqty": { "description": "库存数量:WRPosition表:TOTALQTY /100 , 保留两位小数", "type": "number" }, "goodsno": { "description": "商品编号", "type": "string" }, "imagepath": { "description": "商品照片(相对地址)", "type": "string" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "kppath": { "description": "金伯利证书图片(相对地址) - 类型:3", "type": "string" }, "kpweight": { "description": "金伯利证书重量 - 类型:3", "type": "string" }, "ladingbillid": { "description": "提单ID(208+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "marketflag": { "description": "是否上架,1-已上架 2-未上架 3-履约中", "type": "integer" }, "marketprice": { "description": "市场价", "type": "string" }, "origin": { "description": "原产地 - 类型:3", "type": "string" }, "price": { "description": "总价(价格) - 类型:1,2,3,4,5", "type": "number" }, "priceper": { "description": "克拉单价 - 类型:1,2,3,5", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "sellmobile": { "description": "手机号码(加密存储)", "type": "string" }, "sellusername": { "description": "账户名称(机构名称)", "type": "string" }, "settingmaterial": { "description": "镶嵌材料 - 类型:4", "type": "string" }, "size1": { "description": "尺寸1 - 类型:2,4,5", "type": "string" }, "size2": { "description": "尺寸2 - 类型:2,4,5", "type": "string" }, "size3": { "description": "尺寸3 - 类型:2,4,5", "type": "string" }, "sizedisplay": { "description": "尺寸", "type": "string" }, "stonedesc": { "description": "配石描述 - 类型:4", "type": "string" }, "subnum": { "description": "提单子单号", "type": "integer" }, "userid": { "description": "用户ID", "type": "integer" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousenamedisplay": { "type": "string" }, "weight": { "description": "总重量(克拉重量) - 类型:1,2,3,4,5", "type": "number" }, "weightavg": { "description": "平均单颗重量 - 类型:1,3", "type": "number" }, "wrpath": { "description": "仓单扫描件(相对地址)", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrtradeorderid": { "description": "仓单贸易委托单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrtradeorderstatus": { "description": "委托状态 - 参考枚举'WRTradeOrderStatus' - 1:委托请求 2:待冻结 3:委托成功 4:委托失败 5:配对成功 6:已撤 7:部成 8:已成 9:部成部撤 10:成交失败 11:委托拒绝 12:经过摘牌(先摘后挂专用) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用) 17:冻结PD成功 18:冻结PD失败 19:冻结能量成功 20:冻结能量失败 21:预约已报价 22:过期未付 23:优惠券处理中 24:仓单生成失败 25:首付扣款失败 26:履约失败 27:撤单解冻贷款失败WRTrade_OrderDetail、", "type": "integer" }, "wruserid": { "description": "登录用户ID", "type": "integer" }, "zscategory": { "description": "钻石分类 - 枚举”ZSCategory“", "type": "integer" }, "zscategorydisplay": { "type": "string" }, "zscerttype": { "description": "证书类型 - 枚举”ZSCertType“ - 类型:2,4,5", "type": "integer" }, "zscerttypedisplay": { "type": "string" }, "zsclaritytype1": { "description": "净度1 - 枚举”ZSClarityType“ - 类型:1,2,3,4,5", "type": "integer" }, "zsclaritytype1display": { "type": "string" }, "zsclaritytype2": { "description": "净度2 - 枚举”ZSClarityType“ - 类型:1,3", "type": "integer" }, "zsclaritytype2display": { "type": "string" }, "zscolortype1": { "description": "颜色1 - 枚举”ZSColorType“ - 类型:1,2,3,4", "type": "integer" }, "zscolortype1display": { "type": "string" }, "zscolortype2": { "description": "颜色2 - 枚举”ZSColorType“ - 类型:1,3", "type": "integer" }, "zscolortype2display": { "type": "string" }, "zscrystaltype": { "description": "晶型范围 - 枚举“ZSCrystalType“ - 类型:3, 多个,逗号分隔", "type": "string" }, "zscrystaltypedisplay": { "type": "string" }, "zscurrencytype": { "description": "货币类型 - 枚举“ZSCurrencyType”", "type": "integer" }, "zscurrencytypedisplay": { "type": "string" }, "zscurrencytypedisplayunit": { "type": "string" }, "zscuttype1": { "description": "切工1 - 枚举”ZSCutType“ - 类型:1,2,4,5", "type": "integer" }, "zscuttype1display": { "type": "string" }, "zscuttype2": { "description": "切工2 - 枚举”ZSCutType“ - 类型:1", "type": "integer" }, "zscuttype2display": { "type": "string" }, "zsczcolor1type": { "description": "彩钻颜色1 - 枚举”ZSCZColor1Type“ - 类型:5", "type": "integer" }, "zsczcolor1typedisplay": { "type": "string" }, "zsczcolor2type": { "description": "彩钻颜色2 - 枚举”ZSCZColor2Type“ - 类型:5", "type": "integer" }, "zsczcolor2typedisplay": { "type": "string" }, "zsczcolor3type": { "description": "彩钻颜色3 - 枚举”ZSCZColor3Type“ - 类型:5", "type": "integer" }, "zsczcolor3typedisplay": { "type": "string" }, "zsfluorescencetype1": { "description": "荧光1 - 枚举”ZSFluorescenceType“ - 类型:1,2,3,4,5", "type": "integer" }, "zsfluorescencetype1display": { "type": "string" }, "zsfluorescencetype2": { "description": "荧光2 - 枚举”ZSFluorescenceType” - 类型:1,3", "type": "integer" }, "zsfluorescencetype2display": { "type": "string" }, "zspolishtype1": { "description": "抛光度1 - 枚举”ZSPolishType“ - 类型:1,2,4,5", "type": "integer" }, "zspolishtype1display": { "type": "string" }, "zspolishtype2": { "description": "抛光度2 - 枚举”ZSPolishType“ - 类型:1", "type": "integer" }, "zspolishtype2display": { "type": "string" }, "zsshapetype": { "description": "形状 - 枚举”ZSShapeType“ - 类型:1,2,4,5 ;(1为多个,逗号分隔)", "type": "string" }, "zsshapetypedisplay": { "type": "string" }, "zsstyletype": { "description": "款式 - 类型:4", "type": "integer" }, "zsstyletypedisplay": { "type": "string" }, "zssymmetrytype1": { "description": "对称度1 - 枚举”ZSSymmetryType“ - 类型:1,2,4,5", "type": "integer" }, "zssymmetrytype1display": { "type": "string" }, "zssymmetrytype2": { "description": "对称度2 - 枚举”ZSSymmetryType“ - 类型:1", "type": "integer" }, "zssymmetrytype2display": { "type": "string" } } }, "models.NewFuncmenulist": { "type": "object", "required": [ "resourcecode" ], "properties": { "authtype": { "description": "权限类型 - 1:菜单 2:组件 3:按钮", "type": "integer" }, "buttonname": { "description": "按钮名称", "type": "string" }, "buttontype": { "description": "按钮类型 - 存按钮样式", "type": "string" }, "component": { "description": "组件名或组件地址", "type": "string" }, "hidden": { "description": "是否隐藏 - 0:显示 1:隐藏", "type": "integer" }, "iconame": { "description": "菜单图标", "type": "string" }, "menutype": { "description": "菜单类型 - 1:管理端 2:PC(C#) 3:移动(云平台) 4:终端(交易所) 5:PC(云平台)", "type": "integer" }, "parentcode": { "description": "上级资源代码", "type": "string" }, "remark": { "description": "Remark", "type": "string" }, "resourcecode": { "description": "资源代码", "type": "string" }, "resourcelevel": { "description": "级别1-一级 2-二级 3-三级4-四级", "type": "integer" }, "resourcename": { "description": "资源名(Title)", "type": "string" }, "sort": { "description": "排序", "type": "integer" }, "url": { "description": "Url", "type": "string" }, "urltype": { "description": "地址类型 - 1:路由 2:外链 3:内联框架", "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.OutTradepositiontransfer": { "type": "object", "required": [ "outuserid" ], "properties": { "applicantid": { "description": "申请人ID", "type": "integer" }, "applyid": { "description": "申请ID(185+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "applyremark": { "description": "申请备注", "type": "string" }, "applystatus": { "description": "状态", "type": "string" }, "applytime": { "description": "申请时间", "type": "string" }, "auditorid": { "description": "审核人", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "clientticket": { "description": "客户端流水号", "type": "string" }, "closeexchagechargevalue": { "description": "平仓交易所手续费设置值(转出方)", "type": "number" }, "closefeealgorithm": { "description": "平仓手续费收取方式(转出方) 1:比率 2:固定", "type": "integer" }, "closememberchargevalue": { "description": "平仓会员手续费设置值(转出方)", "type": "number" }, "confirmdate": { "description": "确认时间", "type": "string" }, "freezedays": { "description": "冻结天数(T+N)", "type": "integer" }, "goodscuramount": { "description": "商品实时价金额", "type": "number" }, "goodscurprice": { "description": "商品实时价格", "type": "number" }, "goodsdisplay": { "description": "商品名称", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "inaccountid": { "description": "转入方资金ID(确认方)", "type": "integer" }, "incharge": { "description": "转入方手续费", "type": "number" }, "inloginid": { "description": "转入方登录账号", "type": "integer" }, "inuserid": { "description": "转入方用户ID(确认方)", "type": "integer" }, "inusername": { "description": "转入方", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "openexchagechargevalue": { "description": "建仓交易所手续费设置值", "type": "number" }, "openfeealgorithm": { "description": "建仓手续费收取方式 1:比率 2:固定", "type": "integer" }, "openmemberchargevalue": { "description": "建仓会员手续费设置值", "type": "number" }, "outaccountid": { "description": "转出方资金ID(申请方)", "type": "integer" }, "outcharge": { "description": "转出方手续费", "type": "number" }, "outloginid": { "description": "转出方登录账号", "type": "integer" }, "outuserid": { "description": "转出方用户ID(申请方)", "type": "integer" }, "qty": { "description": "转让数量", "type": "integer" }, "retcode": { "description": "错误代码", "type": "integer" }, "retremark": { "description": "返回信息", "type": "string" }, "tradedate": { "description": "交易日", "type": "string" }, "transferamount": { "description": "转让总金额", "type": "number" }, "transferapplystatus": { "description": "过户申请状态 - 1: 待审核 2:待确认 3:确认处理中 4:已确认 5:申请失败 6:系统撤销 7:审核拒绝- 枚举\"transferapplystatus\"", "type": "integer" }, "transferprice": { "description": "转让价格", "type": "number" }, "transfertype": { "description": "转让类型 - 1.协议转让", "type": "integer" } } }, "models.Patradelinkdetail": { "type": "object", "properties": { "accountname": { "description": "套期主体", "type": "string" }, "agreeunit": { "description": "合约乘数", "type": "number" }, "amount": { "description": "金额 = RelatedLot * TradePrice * AgreeUnit", "type": "number" }, "areauserid": { "description": "所属机构", "type": "integer" }, "bizsubjectid": { "description": "归属业务部门ID - SubjectID", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "convertratio": { "description": "品种系数", "type": "number" }, "convertratiochange": { "description": "套期商品变化量 = RelatedLot * AgreeUnit * ConvertRatio", "type": "number" }, "createtime": { "description": "[日期时间]创建时间", "type": "string" }, "creatorid": { "description": "创建人ID", "type": "integer" }, "creatorsrc": { "description": "创建人来源 - 1:管理端 2:终端 3:交易", "type": "integer" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsgroupid": { "description": "对冲品种ID[期货合约商品组ID]", "type": "integer" }, "goodsid": { "description": "商品ID", "type": "integer" }, "hedgeditemid": { "description": "现货ID[套期项目ID] [13 - 被套期项目ID] [4,10,11 - 现货合同ID] [9 - 套保计划ID]", "type": "integer" }, "hedgeflag": { "description": "投机套保标志 - 0:无 1:投机 2:套保 3:套利 4:套期保值(平安\\合同) 5:单边(平安) 6:移仓(平安) 7:错单处理(平安) 8:跨期套利(平安) 9:套期保值(计划) 10:套利(合同) 11:换月(合同) 12:交割(金瑞) 13:被套期项目", "type": "integer" }, "linkdetailid": { "description": "期货明细ID(614+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "linkstatus": { "description": "关联状态 - 1:成功 2:失败 3:解绑", "type": "integer" }, "middlegoodsid": { "description": "套保品种ID", "type": "integer" }, "name": { "description": "账户名/子账户", "type": "string" }, "optioncode": { "description": "[期货合约]期权代码 [期权]", "type": "string" }, "ordertype": { "description": "单据类型[套期工具] - 1:期货单 2:看涨期权单 3:看跌期权单", "type": "integer" }, "relatedlot": { "description": "[数量]关联手数", "type": "number" }, "relatedmode": { "description": "关联方式 - 1:自动关联 2:手动关联 3:解绑关联", "type": "integer" }, "relatedqty": { "description": "关联数量 = RelatedLot * AgreeUnit * ConvertRatio", "type": "number" }, "retcode": { "description": "返回码", "type": "integer" }, "saleuserid": { "description": "业务员ID", "type": "integer" }, "tradedate": { "description": "关联交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "[成交单号]内部成交单ID", "type": "string" }, "tradelot": { "description": "成交手数", "type": "integer" }, "tradeprice": { "description": "[价格]成交价格", "type": "number" }, "tradetradedate": { "description": "成交交易日(yyyyMMdd)", "type": "string" } } }, "models.PresaleAuction": { "type": "object", "required": [ "presalemode" ], "properties": { "accountid": { "description": "卖方账户ID", "type": "integer" }, "applyid": { "description": "关联申请ID", "type": "string" }, "attachmenturl": { "description": "缩略图片(1:1)", "type": "string" }, "bannerpicurl": { "description": "Banner图(逗号分隔)(2:1)", "type": "string" }, "buymaxqty": { "description": "购买上限 [71] - 0为不限 (现货预售)", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "endtime": { "description": "预售结束时间", "type": "string" }, "floorprice": { "description": "底价[大宗式竞拍]", "type": "number" }, "goodscode": { "description": "期货合约代码(内部)", "type": "string" }, "goodsdetail": { "description": "详情[大宗]", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "期货合约名称", "type": "string" }, "marketid": { "description": "预售市场ID - 根据预售模式选择市场", "type": "integer" }, "maxbuyqty": { "description": "单人最大申购量 (合约预售)", "type": "integer" }, "pictureurls": { "description": "详情图片(逗号分隔)(宽:1125)", "type": "string" }, "presaledamount": { "description": "已预售总金额(预售结束时更新)71-委托时更新", "type": "number" }, "presaledepositalgorithm": { "description": "预售定金方式(48) - 1:比率 2:固定", "type": "integer" }, "presaledepositvalue": { "description": "预售定金设置值(48)", "type": "number" }, "presaledqty": { "description": "已预售量(预售结束时更新) 71-委托时更新", "type": "integer" }, "presalemode": { "description": "预售模式 - 1:一口价 2:大宗式竞拍 3:挂牌预售(HSBY) 4:定金预售(大宗) 5:定金预售(中签)", "type": "integer" }, "presalemodestr": { "description": "预售模式 - 1:一口价 2:大宗式竞拍 3:挂牌预售(HSBY) 4:定金预售(大宗) 5:定金预售(中签)", "type": "string" }, "presaleqty": { "description": "预售数量", "type": "integer" }, "presalestatus": { "description": "预售状态 - 1:未开始 2:预售中 3:已结束 4:已关闭", "type": "integer" }, "presalestatusstr": { "description": "预售状态 - 1:未开始 2:预售中 3:已结束 4:已关闭 (多个逗号分隔)", "type": "string" }, "provideruserid": { "description": "发售方用户ID(49)", "type": "integer" }, "refprice": { "description": "参考价格[一口价]", "type": "number" }, "relatedgoodsid": { "description": "关联交易合约ID", "type": "integer" }, "relatedmarketid": { "description": "关联交易合约市场ID", "type": "integer" }, "sellname": { "description": "[卖方名称]客户名称(企业名称)", "type": "string" }, "sellstatus": { "description": "卖方处理状态 - 1:卖方头寸未处理 2:卖方头寸已处理", "type": "integer" }, "startprice": { "description": "起拍价[大宗式竞拍]", "type": "number" }, "starttime": { "description": "预售开始时间", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价[大宗]", "type": "number" }, "transferdepositratio": { "description": "转让定金比例(49)", "type": "number" }, "userid": { "description": "卖方用户ID", "type": "integer" } } }, "models.PresaleDefault": { "type": "object", "required": [ "goodsid" ], "properties": { "bannerpicurl": { "description": "Banner图(逗号分隔)(2:1)", "type": "string" }, "goodscode": { "description": "期货合约代码(内部)", "type": "string" }, "goodsid": { "description": "期货合约ID(自增ID SEQ_GOODS)", "type": "integer" }, "goodsname": { "description": "期货合约名称", "type": "string" }, "pictureurls": { "description": "详情图片(逗号分隔)(宽:1125)", "type": "string" }, "presaleprice": { "description": "发售价\\订货价(49)", "type": "number" }, "sellname": { "description": "[发售方]客户名称(企业名称)", "type": "string" }, "transferdepositratio": { "description": "转让定金比例(49)", "type": "number" } } }, "models.PresaleGoods": { "type": "object", "properties": { "accountid": { "description": "卖方账户ID", "type": "integer" }, "applyid": { "description": "关联申请ID", "type": "integer" }, "attachmenturl": { "description": "缩略图片(1:1)", "type": "string" }, "bannerpicurl": { "description": "Banner图(逗号分隔)(2:1)", "type": "string" }, "buymaxqty": { "description": "购买上限 [71] - 0为不限", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "endtime": { "description": "预售结束时间", "type": "string" }, "floorprice": { "description": "底价[大宗式竞拍]", "type": "number" }, "goodscode": { "description": "期货合约代码(内部)", "type": "string" }, "goodsdetail": { "description": "详情[大宗]", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "期货合约名称", "type": "string" }, "marketid": { "description": "预售市场ID - 根据预售模式选择市场", "type": "integer" }, "pictureurls": { "description": "详情图片(逗号分隔)(宽:1125)", "type": "string" }, "presaledamount": { "description": "已预售总金额(预售结束时更新)71-委托时更新", "type": "number" }, "presaledepositalgorithm": { "description": "预售定金方式(48) - 1:比率 2:固定", "type": "integer" }, "presaledepositvalue": { "description": "预售定金设置值(48)", "type": "number" }, "presaledqty": { "description": "已预售量(预售结束时更新) 71-委托时更新", "type": "integer" }, "presalemode": { "description": "预售模式 - 1:一口价 2:大宗式竞拍 3:挂牌预售(HSBY)", "type": "integer" }, "presalemodestr": { "description": "预售模式", "type": "string" }, "presaleprice": { "description": "发售价(49)", "type": "number" }, "presaleqty": { "description": "预售数量", "type": "integer" }, "presalestatus": { "description": "预售状态 - 1:未开始 2:预售中 3:已结束", "type": "integer" }, "provideruserid": { "description": "发售方用户ID(49)", "type": "integer" }, "refprice": { "description": "参考价格[一口价]", "type": "number" }, "relatedgoodsid": { "description": "关联交易合约ID", "type": "integer" }, "relatedmarketid": { "description": "关联交易合约市场ID", "type": "integer" }, "sellname": { "description": "发售方", "type": "string" }, "sellstatus": { "description": "卖方处理状态 - 1:卖方头寸未处理 2:卖方头寸已处理", "type": "integer" }, "startprice": { "description": "起拍价[大宗式竞拍]", "type": "number" }, "starttime": { "description": "预售开始时间", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价[大宗]", "type": "number" }, "transferdepositratio": { "description": "转让定金比例(49)", "type": "number" }, "userid": { "description": "卖方用户ID", "type": "integer" } } }, "models.Presaleorderapplyprice": { "type": "object", "required": [ "applyid" ], "properties": { "applyid": { "description": "预售申请ID", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "goodscode": { "description": "商品代码 系统自动生成 [#P(2位) + ApplyID十六进制(6位) ]", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "price": { "description": "档位价格", "type": "number" }, "qty": { "description": "档位数量", "type": "number" }, "stepindex": { "description": "档位序号", "type": "integer" } } }, "models.PromotionIncome": { "type": "object", "properties": { "profitmonth": { "description": "时间", "type": "string" }, "profitstatus": { "description": "状态 - 1:已支付 2:未支付 3:支取中", "type": "integer" }, "sumamount": { "description": "金额", "type": "number" } } }, "models.PromotionIncomeDetail": { "type": "object", "properties": { "buyorsell": { "description": "方向", "type": "string" }, "market": { "description": "市场", "type": "string" }, "profitamount": { "description": "金额", "type": "number" }, "profitroletype": { "description": "级别", "type": "string" }, "tradetime": { "description": "时间", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(自增 SEQ_GOODS 确保不重复)", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.PurchaseTransfer": { "type": "object", "properties": { "pictureurls": { "description": "详情图片(逗号分隔)", "type": "string" }, "refgoodsid": { "description": "参考商品ID", "type": "integer" }, "thumurls": { "description": "缩略图片(1:1)(逗号分隔)", "type": "string" }, "unitid": { "description": "现货商品单位ID", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(自增 SEQ_GOODS 确保不重复)", "type": "integer" }, "wrstandardname": { "description": "现货商品名称(模糊查询)", "type": "string" } } }, "models.QhjAccountOutInApply": { "type": "object", "properties": { "accountcode": { "description": "资金账号", "type": "string" }, "accountname": { "description": "用户名称(名称)", "type": "string" }, "accountpwd": { "description": "资金密码", "type": "string" }, "accountticket": { "description": "最新账户服务流水号", "type": "string" }, "amount": { "description": "金额", "type": "number" }, "applyremark": { "description": "申请备注", "type": "string" }, "applystatus": { "description": "申请状态 - 1:待审核 2:待复审 3:初审拒绝 4:交易冻结中 5:交易解冻中 6:交易解冻扣款中 7:交易入金中 8:交易冻结/解冻/扣款中(银行发起出金时用) 9:银行出金中 10:银行入金中 11:成功 12:失败 13:银行审核中 14:账户服务入金失败; 15:账户服务解冻失败; 16:账户服务解冻扣款失败; 17:账户服务出金失败 18:复审通过 19:复审拒绝 20:提交审核,账户冻结中 21:审核拒绝,账户解冻中;22: 待审核,账户服务解冻回滚中; 23:待复审,账户服务解冻回滚中; 24: 审核通过,账户冻结金额检查中;25: 复审通过,账户冻结金额检查中;", "type": "integer" }, "auditid": { "description": "审核人", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "bank_apply_ticket": { "description": "银行申请流水", "type": "string" }, "bankaccountname": { "description": "银行账户名", "type": "string" }, "bankaccountno": { "description": "银行卡号", "type": "string" }, "bankid": { "description": "银行编号", "type": "string" }, "bankname": { "description": "银行名称", "type": "string" }, "bankticket": { "description": "银行流水", "type": "string" }, "branchbankid": { "description": "银行支行号", "type": "string" }, "branchbankname": { "description": "银行支行名称", "type": "string" }, "capamountout": { "description": "出金(劣后本金) - 外部子账户", "type": "number" }, "certificatephotourl": { "description": "凭证地址", "type": "string" }, "charge": { "description": "手续费", "type": "number" }, "checkerrorflag": { "description": "对账差错标志 - 1:为单边账;其它为正常出入金", "type": "integer" }, "currency": { "description": "币种", "type": "string" }, "cusbankid": { "description": "托管银行编号", "type": "string" }, "cusbankname": { "description": "托管银行名称", "type": "string" }, "cusbankshortname": { "description": "托管银行简称", "type": "string" }, "exchticket": { "description": "银行服务流水号", "type": "string" }, "executetype": { "description": "申请类型 - 1:出金 2:入金 3: 单边账调整:入金; 4:单边账调整:出金 5:外部母账户调整:入金 6:外部母账户调整:出金 7:外部子账户:入金 8:外部子账户:出金", "type": "integer" }, "extendinfo": { "description": "扩展信息", "type": "string" }, "extoperateid": { "description": "交易服务流水号", "type": "integer" }, "infamount": { "description": "劣后金额(自有)", "type": "number" }, "logincode": { "description": "登录账号(账号)", "type": "string" }, "netaddr": { "description": "调转网址", "type": "string" }, "priamount": { "description": "优先金额(授信)", "type": "number" }, "reauditid": { "description": "复审人", "type": "integer" }, "reauditremark": { "description": "复审备注", "type": "string" }, "reaudittime": { "description": "复审时间", "type": "string" }, "relatedorderid": { "description": "三方关联ID", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "remark2": { "description": "备注(失败原因)", "type": "string" }, "soucreamount": { "description": "原始出入金金额", "type": "number" }, "soucrecurrencyid": { "description": "原始出入金币种", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "updatetime": { "description": "更新时间(申请时间)", "type": "string" }, "userid": { "description": "用户id", "type": "integer" }, "userinfotype": { "description": "账户类型 1-个人 2-企业", "type": "integer" } } }, "models.QhjAgreementChangeLog": { "type": "object", "properties": { "agreementcontent": { "description": "协议内容", "type": "string" }, "agreementfrequency": { "description": "协议频率 - 1:首次 2:每次 [登录为2, 其它为1]", "type": "integer" }, "agreementid": { "description": "协议ID", "type": "integer" }, "agreementname": { "description": "协议名称", "type": "string" }, "agreementno": { "description": "协议编号", "type": "string" }, "agreementtype": { "description": "协议类型 - 1:注册 2:登录 3:交易", "type": "integer" }, "agreementversion": { "description": "协议版本号", "type": "integer" }, "logid": { "description": "流水ID(SEQ_QHJ_AGREEMENTCHANGELOG)", "type": "integer" }, "reviserid": { "description": "修改人", "type": "integer" }, "revisersrc": { "description": "修改来源 - 1:管理端 2:终端", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.QhjAgreementConfig": { "type": "object", "properties": { "agreementcontent": { "description": "协议内容", "type": "string" }, "agreementfrequency": { "description": "协议频率 - 1:首次 2:每次 [登录为2, 其它为1]", "type": "integer" }, "agreementid": { "description": "协议ID(SEQ_QHJ_AGREEMENTCONFIG)", "type": "integer" }, "agreementname": { "description": "协议名称", "type": "string" }, "agreementno": { "description": "协议编号", "type": "string" }, "agreementtype": { "description": "协议类型 - 1:注册 2:登录 3:交易", "type": "integer" }, "agreementversion": { "description": "协议版本号(从1开始每次修改加1)", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "creatorsrc": { "description": "创建来源 - 1:管理端 2:终端", "type": "integer" }, "isvalid": { "description": "是否有效 - 是否有效 - 1:正常 2:停用 3:注销", "type": "integer" }, "reviserid": { "description": "修改人", "type": "integer" }, "revisersrc": { "description": "修改来源 - 1:管理端 2:终端", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.QhjAreaFinanceConfig": { "type": "object", "properties": { "additionalratio": { "description": "追加款比例", "type": "number" }, "advanceratio": { "description": "预付款比例", "type": "number" }, "alarmratio": { "description": "告警比例", "type": "number" }, "consumptiondirectreward": { "description": "消费直推奖励值", "type": "number" }, "consumptionenabled": { "description": "是否启用消费奖励 - 0:不启用 1:启用", "type": "integer" }, "consumptionindirectreward": { "description": "消费间推奖励值", "type": "number" }, "consumptionmodel": { "description": "消费奖励方式 - 1:比率 2:固定", "type": "integer" }, "customerservicenum": { "description": "客服电话", "type": "string" }, "dayinterestrate": { "description": "日利率", "type": "number" }, "disableconsumptiontips": { "description": "关闭消费奖励提示", "type": "string" }, "modifierid": { "description": "修改人ID", "type": "integer" }, "modifysrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "promotionvalue": { "description": "推广奖励值(固定)", "type": "number" }, "scoreconfigvalue1": { "description": "提货积分配置1", "type": "integer" }, "scoreconfigvalue2": { "description": "提货积分配置2", "type": "integer" }, "userid": { "description": "机构用户ID其他做市关系,都设置为 1", "type": "integer" }, "username": { "description": "用户名称", "type": "string" } } }, "models.QhjBankAccountSign": { "type": "object", "properties": { "accountcode": { "description": "资金账号", "type": "string" }, "accountname": { "description": "资金账号对应的账号名(UserName)", "type": "string" }, "accountname2": { "description": "资金账号对应的账号名(UserName) - 密文", "type": "string" }, "accounttype": { "description": "账户类型(UserType)", "type": "integer" }, "applicationtime": { "description": "最后一次更新的时间", "type": "string" }, "applyexchticket": { "description": "申请流水", "type": "string" }, "auditid": { "description": "审核人", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "bankaccountname": { "description": "签约银行卡账号名", "type": "string" }, "bankaccountname2": { "description": "签约银行卡账号名 - 密文", "type": "string" }, "bankaccountno": { "description": "银行卡号", "type": "string" }, "bankaccountno2": { "description": "银行卡号 - 密文", "type": "string" }, "bankaccounttype": { "description": "银行账户类型 - 1-对私; 2-对公", "type": "integer" }, "bankcardtype": { "description": "银行卡类型", "type": "integer" }, "bankchildaccount": { "description": "银行子账号(签约成功后,很多银行会返回对应的这个虚拟账号)", "type": "string" }, "bankcity": { "description": "开户行城市", "type": "string" }, "bankid": { "description": "签约银行ID", "type": "string" }, "bankname": { "description": "签约银行名称", "type": "string" }, "bankprovince": { "description": "开户行省份", "type": "string" }, "branchbankid": { "description": "签约银行支行号", "type": "string" }, "branchbankname": { "description": "签约银行支行名称", "type": "string" }, "cardno": { "description": "证件号码", "type": "string" }, "cardno2": { "description": "证件号码 - 密文", "type": "string" }, "cardtype": { "description": "证件类型", "type": "string" }, "currency": { "description": "币种", "type": "string" }, "cusbankid": { "description": "托管银行编号", "type": "string" }, "cusbankname": { "description": "托管银行名称", "type": "string" }, "dealstatus": { "description": "Log处理状态", "type": "integer" }, "direct": { "description": "方向(可以判断那方先发起的签约)", "type": "integer" }, "exchticket": { "description": "最后一次签约成功的流水号", "type": "string" }, "extendinfo": { "description": "扩展信息(JSON字符串)", "type": "string" }, "mobilephone": { "description": "手机号", "type": "string" }, "mobilephone2": { "description": "手机号 - 密文", "type": "string" }, "netaddr": { "description": "调转网址", "type": "string" }, "relateduserid": { "description": "关联使用者userid", "type": "integer" }, "remark": { "description": "Log备注", "type": "string" }, "signstatus": { "description": "签约状态 - 1:未签约 2:签约待审核 3:签约中 4:已签约 5:解约待审核 6:解约中 7:已解约 8:已解绑 9:绑卡中 10:审核拒绝 11:换签待审核", "type": "integer" }, "updatetime": { "description": "更新时间(签解约更新时间)", "type": "string" } } }, "models.QhjBankInfo": { "type": "object", "properties": { "bankid": { "description": "银行ID", "type": "string" }, "bankname": { "description": "银行名称", "type": "string" }, "clearbankno": { "description": "清算系统银行编号", "type": "string" }, "orderindex": { "description": "排序顺序", "type": "integer" }, "status": { "description": "状态 - 0:正常 1:注销", "type": "integer" } } }, "models.QhjBrokerApply": { "type": "object", "properties": { "applicantid": { "description": "申请人", "type": "integer" }, "applysrc": { "description": "申请来源 - 1:管理端 2:终端", "type": "integer" }, "applystatus": { "description": "申请状态 - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "auditorid": { "description": "审核人", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "audittradedate": { "description": "审核交易日(yyyyMMdd)", "type": "string" }, "brokerapplyid": { "description": "申请ID(SEQ_BROKERAPPLY)", "type": "integer" }, "cardbackphotourl": { "description": "证件背面图片地址", "type": "string" }, "cardfrontphotourl": { "description": "证件正面图片地址", "type": "string" }, "cardnum": { "description": "证件号码(加密存储) 注:数据库没存证件类型字段,产品说类型固定为身份证", "type": "string" }, "customername": { "description": "姓名", "type": "string" }, "logincode": { "description": "登录代码", "type": "string" }, "mobile": { "description": "手机号码", "type": "string" }, "parentuserid": { "description": "所属机构id", "type": "integer" }, "parentusername": { "description": "所属机构名称", "type": "string" }, "refereeuserid": { "description": "推荐人id(经纪人)", "type": "integer" }, "refernum": { "description": "推荐码", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "subarealevelpath": { "description": "层级路径", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "申请人用户ID", "type": "integer" }, "userinfotype": { "description": "用户类型 1-个人 2-企业", "type": "integer" }, "username": { "description": "用户名称", "type": "string" } } }, "models.QhjBrokerApplyEx": { "type": "object", "properties": { "applylist": { "description": "经纪人申请记录(只返回最新一条)", "type": "array", "items": { "$ref": "#/definitions/models.QhjBrokerApply" } }, "canrecommend": { "description": "是否经纪人 0-不是 1-是", "type": "integer" }, "refernum": { "description": "推荐码", "type": "string" }, "userid": { "description": "用户id", "type": "integer" }, "userinfotype": { "description": "用户类型 1-个人 2-企业", "type": "integer" } } }, "models.QhjBrokerRewardLog": { "type": "object", "properties": { "accountid": { "description": "资金账号ID", "type": "integer" }, "createtime": { "description": "创建时间(时间)", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "logid": { "description": "奖励流水ID(912+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "mmaccountid": { "description": "做市商资金账号ID", "type": "string" }, "mmuserid": { "description": "做市商用户ID", "type": "string" }, "rewardamount": { "description": "奖励金额", "type": "number" }, "rewardmodel": { "description": "消费奖励方式 - 1:比率 2:固定", "type": "integer" }, "rewardtype": { "description": "奖励类型 - 1:推广 2:消费1级 3:消费2级", "type": "integer" }, "rewardvalue": { "description": "配置奖励值", "type": "number" }, "srcamount": { "description": "成交金额 [消费奖励] (金额)", "type": "number" }, "srcgoodsid": { "description": "来源商品ID [消费奖励]", "type": "string" }, "srctime": { "description": "来源时间 (成交时间) [消费奖励]", "type": "string" }, "srctradeid": { "description": "来源成交单ID [消费奖励] - 排除提货成交", "type": "string" }, "srcuserid": { "description": "来源用户ID(推广账户)", "type": "string" }, "srcusername": { "description": "推广账户名称", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "经纪人用户ID", "type": "integer" } } }, "models.QhjContract": { "type": "object", "properties": { "contractconfirmtime": { "description": "合同确认时间(时间)", "type": "string" }, "currisklevel": { "description": "风险级别 - 1:正常 2:追加货款 3:支付尾款", "type": "integer" }, "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID [5:融资单]", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunitid": { "description": "商品单位id", "type": "integer" }, "initmargin": { "description": "初始保证金(首付款)", "type": "number" }, "lenderamount": { "description": "贷款金额(总额|订单总额)", "type": "number" }, "marginratio": { "description": "保证金比率(首付比例)", "type": "number" }, "payamount": { "description": "已付(已付货款)", "type": "number" }, "reckonrecovermargin": { "description": "结算应追缴保底金(结算时到过风险率时临时存储) - [仓单回购\\仓单质押]", "type": "number" }, "recoveredmargin": { "description": "已追缴保证金", "type": "number" }, "remainamount": { "description": "合同剩余金额(融资额)", "type": "number" }, "scfcontractid": { "description": "SCF合同ID(310+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "scfcontractstatus": { "description": "合同状态 - 1:待确认 2:已确认 3:确认拒绝 4:已支付保证金 5:已激活 6:已违约 7:到期结束 8:延期结束 9:违约结束 10:已注销 11:已关闭 99:未提交", "type": "integer" }, "scfcontracttype": { "description": "合同类型 - 1:仓单回购 2:仓单质押 3:合作套保 4:资金贷款 5:融资单", "type": "integer" }, "totalinterest": { "description": "已计总利息(利息)", "type": "number" }, "tradeprice": { "description": "成交价格(成本价格)", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" }, "username": { "description": "用户名称", "type": "string" }, "wrqty": { "description": "仓单数量(数量)", "type": "number" } } }, "models.QhjContractLog": { "type": "object", "properties": { "amount": { "description": "支付金额", "type": "number" }, "amounttype": { "description": "资金类型 - 1:首付款 2:尾款 3:利息 4:追加款", "type": "integer" }, "logid": { "description": "LogID(315+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "remainamount": { "description": "剩余货款", "type": "number" }, "scfcontractid": { "description": "SCF合同ID(310+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.QhjCusBankSignBankEx": { "type": "object", "properties": { "banklst": { "description": "银行列表", "type": "array", "items": { "$ref": "#/definitions/models.QhjBankInfo" } }, "canallot": { "description": "是否支持跨行调拨 - 0:不支持 1:支持", "type": "integer" }, "canallotquery": { "description": "是否支持跨行调拨查询 - 0:不支持 1:支持", "type": "integer" }, "canbindcard": { "description": "是否可绑卡与解卡 - 0:不可 1:可以", "type": "integer" }, "caninamount": { "description": "是否可入金 - 0:不可 1:可以", "type": "integer" }, "caninamount2": { "description": "是否可入金(网银端) - 0:不可 1:可以", "type": "integer" }, "canmodifybankcard": { "description": "是否可修改银行卡号 - 0:不可 1:可以", "type": "integer" }, "canmodifyphone": { "description": "是否可修改手机号 - 0:不可 1:可以", "type": "integer" }, "canmodifysigninfo": { "description": "是否可修改签约信息 - 0:不可 1:可以", "type": "integer" }, "canoutamount": { "description": "是否可出金 - 0:不可 1:可以", "type": "integer" }, "canoutamount2": { "description": "是否可出金(网银端) - 0:不可 1:可以", "type": "integer" }, "canrelease": { "description": "是否可解约 - 0:不可 1:可以", "type": "integer" }, "canrelease2": { "description": "是否可解约(网银端) - 0:不可 1:可以", "type": "integer" }, "cansign": { "description": "是否可签约 - 0:不可 1:可以", "type": "integer" }, "cansign2": { "description": "是否可签约(网银端) - 0:不可 1:可以", "type": "integer" }, "currency": { "description": "币种", "type": "string" }, "cusbankid": { "description": "托管银行编号(对应清算中心TRAN_NO)", "type": "string" }, "cusbankname": { "description": "银行业务名称", "type": "string" }, "cusbankshortname": { "description": "银行业务简称", "type": "string" }, "exchbankid": { "description": "交易所开户银行ID", "type": "string" }, "exchpaybankaccname": { "description": "交易所支出结算账户户名", "type": "string" }, "exchpaybankaccno": { "description": "交易所支出结算账户", "type": "string" }, "isneedcheck": { "description": "是否需要对账 - 0:需要 1:不需要 [不需要界面配置]", "type": "integer" }, "isneedclear": { "description": "是否需要清算 - 0:不需要 1:需要", "type": "integer" }, "lastcheckstatus": { "description": "最后对账状态 - 对账状态 - 1:未对账 2:对账成功 3:对账失败", "type": "integer" }, "lastchecktime": { "description": "最后对账时间", "type": "string" }, "lastclearstatus": { "description": "最后清算状态 - 1:未清算 2:清算成功 3:清算失败 4:清算部分成功", "type": "integer" }, "lastcleartime": { "description": "最后清算时间", "type": "string" }, "lastsignintime": { "description": "最后签到时间", "type": "string" }, "lastsignouttime": { "description": "最后签退时间", "type": "string" }, "riskinfo": { "description": "签约风险提示书", "type": "string" }, "signstatus": { "description": "当前签到/签退状态 - 1:签到 2:签退", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "updatetime": { "description": "当前签到/签退更新时间", "type": "string" } } }, "models.QhjCustomer": { "type": "object", "properties": { "address": { "description": "通讯地址", "type": "string" }, "attachment1": { "description": "附件1", "type": "string" }, "attachment2": { "description": "附件2", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "cardbackphotourl": { "description": "证件反面图片地址", "type": "string" }, "cardfrontphotourl": { "description": "证件正面图片地址", "type": "string" }, "cardnum": { "description": "证件号码", "type": "string" }, "cardtype": { "description": "证件类型", "type": "integer" }, "cardtypename": { "description": "证件类型名称", "type": "string" }, "cityid": { "description": "市", "type": "integer" }, "cityname": { "description": "城市名称", "type": "string" }, "contactname": { "description": "联系人", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "countryname": { "description": "国家名称", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "customername": { "description": "客户名称", "type": "string" }, "districtid": { "description": "区域", "type": "integer" }, "districtname": { "description": "地区名称", "type": "string" }, "email": { "description": "邮件", "type": "string" }, "legalpersonname": { "description": "法人姓名(企业)", "type": "string" }, "logincode": { "description": "登录账号(代码)", "type": "string" }, "memberuserid": { "description": "所属机构ID(所属会员)", "type": "integer" }, "memberusername": { "description": "所属会员名称", "type": "string" }, "mobile": { "description": "手机号码", "type": "string" }, "modifytime": { "description": "修改时间", "type": "string" }, "nickname": { "description": "昵称", "type": "string" }, "parentuserid": { "description": "上级机构(所属机构)", "type": "integer" }, "parentusername": { "description": "所属机构名称", "type": "string" }, "provinceid": { "description": "省", "type": "integer" }, "provincename": { "description": "省名称", "type": "string" }, "proxystatementurl": { "description": "授权委托书", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "status": { "description": "账户状态 - 1:待激活 2:待审核 3:待复审 4:正常 5:审核拒绝 6:注销", "type": "integer" }, "statusdesc": { "description": "账户状态中文描述", "type": "string" }, "taxpayernum": { "description": "纳税人识别号", "type": "string" }, "telphone": { "description": "联系电话", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "userinfotype": { "description": "客户类型 1-个人 2-企业", "type": "integer" }, "username": { "description": "用户名称", "type": "string" } } }, "models.QhjCustomerSignLog": { "type": "object", "properties": { "agreementcontent": { "description": "协议内容", "type": "string" }, "agreementid": { "description": "协议ID", "type": "integer" }, "agreementname": { "description": "协议名称", "type": "string" }, "agreementno": { "description": "协议编号", "type": "string" }, "agreementtype": { "description": "协议类型 - 1:注册 2:登录 3:交易", "type": "integer" }, "agreementversion": { "description": "协议版本号", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID [默认为0, NodeType\u003e=3 的为商品值]", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "logid": { "description": "流水ID(SEQ_QHJ_CUSTOMERSIGNLOG)", "type": "integer" }, "nodetype": { "description": "环节类型 - 1:注册 2:登录 3:购买 4:融资购买 5:定投 6:卖出", "type": "integer" }, "signadressurl": { "description": "签约文件地址", "type": "string" }, "signtimestamp": { "description": "签约状态时间戳", "type": "string" }, "userid": { "description": "客户ID", "type": "integer" }, "username": { "description": "客户名称", "type": "string" } } }, "models.QhjCustomerSignStatus": { "type": "object", "properties": { "createtime": { "description": "创建时间", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID [默认为0, NodeType\u003e=3 的为商品值]", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "nodetype": { "description": "环节类型 - 1:注册 2:登录 3:购买 4:融资购买 5:定投 6:卖出 99:首次交易", "type": "integer" }, "signtimestamp": { "description": "签约状态时间戳", "type": "string" }, "tradedate": { "description": "创建交易日(yyyyMMdd)", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "客户ID", "type": "integer" }, "username": { "description": "客户名称", "type": "string" } } }, "models.QhjMgrAccountOutInApply": { "type": "object", "properties": { "accountcode": { "description": "资金账号", "type": "string" }, "accountname": { "description": "用户名称(名称)", "type": "string" }, "accountpwd": { "description": "资金密码", "type": "string" }, "accountticket": { "description": "最新账户服务流水号", "type": "string" }, "amount": { "description": "金额", "type": "number" }, "applyremark": { "description": "申请备注", "type": "string" }, "applystatus": { "description": "申请状态 - 1:待审核 2:待复审 3:初审拒绝 4:交易冻结中 5:交易解冻中 6:交易解冻扣款中 7:交易入金中 8:交易冻结/解冻/扣款中(银行发起出金时用) 9:银行出金中 10:银行入金中 11:成功 12:失败 13:银行审核中 14:账户服务入金失败; 15:账户服务解冻失败; 16:账户服务解冻扣款失败; 17:账户服务出金失败 18:复审通过 19:复审拒绝 20:提交审核,账户冻结中 21:审核拒绝,账户解冻中;22: 待审核,账户服务解冻回滚中; 23:待复审,账户服务解冻回滚中; 24: 审核通过,账户冻结金额检查中;25: 复审通过,账户冻结金额检查中;", "type": "integer" }, "auditid": { "description": "审核人", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "bank_apply_ticket": { "description": "银行申请流水", "type": "string" }, "bankaccountname": { "description": "银行账户名", "type": "string" }, "bankaccountno": { "description": "银行卡号", "type": "string" }, "bankid": { "description": "银行编号", "type": "string" }, "bankname": { "description": "银行名称", "type": "string" }, "bankticket": { "description": "银行流水", "type": "string" }, "branchbankid": { "description": "银行支行号", "type": "string" }, "branchbankname": { "description": "银行支行名称", "type": "string" }, "capamountout": { "description": "出金(劣后本金) - 外部子账户", "type": "number" }, "certificatephotourl": { "description": "凭证地址", "type": "string" }, "charge": { "description": "手续费", "type": "number" }, "checkerrorflag": { "description": "对账差错标志 - 1:为单边账;其它为正常出入金", "type": "integer" }, "currency": { "description": "币种", "type": "string" }, "cusbankid": { "description": "托管银行编号", "type": "string" }, "exchticket": { "description": "银行服务流水号", "type": "string" }, "executetype": { "description": "申请类型 - 1:出金 2:入金 3: 单边账调整:入金; 4:单边账调整:出金 5:外部母账户调整:入金 6:外部母账户调整:出金 7:外部子账户:入金 8:外部子账户:出金", "type": "integer" }, "extendinfo": { "description": "扩展信息", "type": "string" }, "extoperateid": { "description": "交易服务流水号", "type": "integer" }, "infamount": { "description": "劣后金额(自有)", "type": "number" }, "logincode": { "description": "登录账号(账号)", "type": "string" }, "netaddr": { "description": "调转网址", "type": "string" }, "priamount": { "description": "优先金额(授信)", "type": "number" }, "reauditid": { "description": "复审人", "type": "integer" }, "reauditremark": { "description": "复审备注", "type": "string" }, "reaudittime": { "description": "复审时间", "type": "string" }, "relatedorderid": { "description": "三方关联ID", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "remark2": { "description": "备注(失败原因)", "type": "string" }, "soucreamount": { "description": "原始出入金金额", "type": "number" }, "soucrecurrencyid": { "description": "原始出入金币种", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "updatetime": { "description": "更新时间(申请时间)", "type": "string" }, "userid": { "description": "用户id", "type": "integer" }, "userinfotype": { "description": "账户类型 1-个人 2-企业", "type": "integer" } } }, "models.QhjMgrBrokerApply": { "type": "object", "properties": { "applicantid": { "description": "申请人", "type": "integer" }, "applysrc": { "description": "申请来源 - 1:管理端 2:终端", "type": "integer" }, "applystatus": { "description": "申请状态 - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "auditorid": { "description": "审核人", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "audittradedate": { "description": "审核交易日(yyyyMMdd)", "type": "string" }, "brokerapplyid": { "description": "申请ID(SEQ_BROKERAPPLY)", "type": "integer" }, "cardbackphotourl": { "description": "证件背面图片地址", "type": "string" }, "cardfrontphotourl": { "description": "证件正面图片地址", "type": "string" }, "cardnum": { "description": "证件号码(加密存储) 注:数据库没存证件类型字段,产品说类型固定为身份证", "type": "string" }, "customername": { "description": "姓名", "type": "string" }, "filterstatus": { "description": "筛选条件", "type": "string" }, "logincode": { "description": "登录代码", "type": "string" }, "mobile": { "description": "手机号码", "type": "string" }, "parentuserid": { "description": "所属机构id", "type": "integer" }, "parentusername": { "description": "所属机构名称", "type": "string" }, "refereeuserid": { "description": "推荐人id(经纪人)", "type": "integer" }, "refernum": { "description": "推荐码", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "subarealevelpath": { "description": "层级路径", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "申请人用户ID", "type": "integer" }, "userinfotype": { "description": "用户类型 1-个人 2-企业", "type": "integer" }, "username": { "description": "用户名称", "type": "string" } } }, "models.QhjMgrBrokerRewardReport": { "type": "object", "properties": { "createtime": { "description": "创建时间(注册时间)", "type": "string" }, "cycletime": { "description": "周期时间 日(YYYYMMDD) 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD) 全(0)【原值】", "type": "string" }, "cycletype": { "description": "周期类型 - 0:日 1:月 2:季 3:年 4:周 5:全报表【原值】", "type": "integer" }, "directtotalnum": { "description": "直推总人数【期末】", "type": "integer" }, "indirecttotalnum": { "description": "间推总人数【期末】", "type": "integer" }, "mobile": { "description": "电话号码", "type": "string" }, "refereeuserid": { "description": "推荐人id(经纪人id)", "type": "integer" }, "refereeusername": { "description": "推荐人名称(经纪人) 上级经纪人名称", "type": "string" }, "refernum": { "description": "推荐码", "type": "string" }, "subarealevelpath": { "description": "用户层级路径", "type": "string" }, "todayrewardamount": { "description": "奖励总金额【汇总】", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "经纪人用户ID", "type": "integer" }, "userinfotype": { "description": "用户类型 1-个人 2-企业", "type": "integer" }, "username": { "description": "用户名称", "type": "string" } } }, "models.QhjMgrContract": { "type": "object", "properties": { "contractconfirmtime": { "description": "合同确认时间(时间)", "type": "string" }, "currisklevel": { "description": "风险级别 - 1:正常 2:追加货款 3:支付尾款", "type": "integer" }, "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID [5:融资单]", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunitid": { "description": "商品单位id", "type": "integer" }, "initmargin": { "description": "初始保证金(首付款)", "type": "number" }, "lenderamount": { "description": "贷款金额(总额|订单总额)", "type": "number" }, "logincode": { "description": "账号(登录代码)", "type": "string" }, "marginratio": { "description": "保证金比率(首付比例)", "type": "number" }, "mobile": { "description": "电话号码(用户资料里的电话)", "type": "string" }, "payamount": { "description": "已付(已付货款)", "type": "number" }, "reckonrecovermargin": { "description": "结算应追缴保底金(结算时到过风险率时临时存储) - [仓单回购\\仓单质押]", "type": "number" }, "recoveredmargin": { "description": "已追缴保证金", "type": "number" }, "remainamount": { "description": "合同剩余金额(融资额)", "type": "number" }, "scfcontractid": { "description": "SCF合同ID(310+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "scfcontractstatus": { "description": "合同状态 - 1:待确认 2:已确认 3:确认拒绝 4:已支付保证金 5:已激活 6:已违约 7:到期结束 8:延期结束 9:违约结束 10:已注销 11:已关闭 99:未提交", "type": "integer" }, "scfcontracttype": { "description": "合同类型 - 1:仓单回购 2:仓单质押 3:合作套保 4:资金贷款 5:融资单", "type": "integer" }, "totalinterest": { "description": "已计总利息(利息)", "type": "number" }, "tradedate": { "description": "交易日", "type": "string" }, "tradeprice": { "description": "成交价格(成本价格)", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" }, "userinfotype": { "description": "用户类型 1-个人 2-企业", "type": "integer" }, "username": { "description": "用户名称", "type": "string" }, "wrqty": { "description": "仓单数量(数量)", "type": "number" } } }, "models.QhjMgrCustomer": { "type": "object", "properties": { "address": { "description": "通讯地址", "type": "string" }, "attachment1": { "description": "附件1", "type": "string" }, "audittime": { "description": "审核时间", "type": "string" }, "birthday": { "description": "生日", "type": "string" }, "brokerid": { "description": "所属客户经理id", "type": "integer" }, "brokername": { "description": "所属客户经理名称", "type": "string" }, "cardbackphotourl": { "description": "证件反面图片地址", "type": "string" }, "cardfrontphotourl": { "description": "证件正面图片地址", "type": "string" }, "cardnum": { "description": "证件号码", "type": "string" }, "cardtype": { "description": "证件类型", "type": "integer" }, "cardtypename": { "description": "证件类型名称", "type": "string" }, "cityid": { "description": "市", "type": "integer" }, "cityname": { "description": "城市名称", "type": "string" }, "contactname": { "description": "联系人", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "countryname": { "description": "国家名称", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "customername": { "description": "客户名称", "type": "string" }, "districtid": { "description": "区域", "type": "integer" }, "districtname": { "description": "地区名称", "type": "string" }, "email": { "description": "邮件", "type": "string" }, "legalpersonname": { "description": "法人姓名(企业)", "type": "string" }, "logincode": { "description": "登录账号(代码)", "type": "string" }, "memberuserid": { "description": "所属机构ID(所属会员)", "type": "integer" }, "memberusername": { "description": "所属会员名称", "type": "string" }, "mobile": { "description": "手机号码", "type": "string" }, "modifytime": { "description": "修改时间", "type": "string" }, "nickname": { "description": "昵称", "type": "string" }, "parentuserid": { "description": "上级机构(所属机构)", "type": "integer" }, "parentusername": { "description": "所属机构名称", "type": "string" }, "provinceid": { "description": "省", "type": "integer" }, "provincename": { "description": "省名称", "type": "string" }, "proxystatementurl": { "description": "授权委托书", "type": "string" }, "querytype": { "description": "查询类型 1:未提交(网上开户表) 2:待审核(网上开户表) 3:正常 4:停用", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "sex": { "description": "性别 0-女 1-男", "type": "integer" }, "status": { "description": "开户状态(网上开户表wskh_userinfo) 1:未提交 2: 待初审 3:初审拒绝 4:待复审 5:复审拒绝 6:测评不通过 ; 账户状态(正式表useraccount) 1:待激活 2:待审核 3:待复审 4:正常 5:审核拒绝 6:停用(注销) 7:注销(删除)", "type": "integer" }, "statusdesc": { "description": "账户状态中文描述", "type": "string" }, "taxpayernum": { "description": "纳税人识别号", "type": "string" }, "telphone": { "description": "联系电话", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "userinfotype": { "description": "客户类型 1-个人 2-企业", "type": "integer" }, "username": { "description": "用户名称", "type": "string" } } }, "models.QhjMgrPickGoods": { "type": "object", "properties": { "enumdicname": { "description": "单位名称(提货商品)", "type": "string" }, "goodsid": { "description": "商品id", "type": "integer" }, "imageaddress": { "description": "图片", "type": "string" }, "modifierid": { "description": "修改人", "type": "integer" }, "modifiername": { "description": "修改人名称", "type": "string" }, "modifysrc": { "description": "修改来源 - 1:管理端 2:终端", "type": "integer" }, "pickupgoodsagreeunit": { "description": "合约乘数", "type": "number" }, "pickupgoodsdesc": { "description": "描述", "type": "string" }, "pickupgoodsid": { "description": "提货商品ID", "type": "string" }, "pickupgoodsname": { "description": "提货商品名称", "type": "string" }, "pickupgoodsstatus": { "description": "状态 - 1:正常 2:停用 3:注销", "type": "integer" }, "pickupgoodsunitid": { "description": "单位ID", "type": "integer" }, "pickupratio": { "description": "提货系数", "type": "number" }, "preparedays": { "description": "备货期(天)", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.QhjMgrPositionRsp": { "type": "object", "properties": { "accountid": { "description": "账号Id", "type": "integer" }, "accountname": { "description": "用户名称", "type": "string" }, "agreeunit": { "description": "合约乘数", "type": "number" }, "averageprice": { "description": "均价", "type": "number" }, "avialqty": { "description": "可用数量", "type": "number" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称(商品)", "type": "string" }, "frozenqty": { "description": "冻结数量", "type": "number" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品Id", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "holderamount": { "description": "金额", "type": "number" }, "holderqty": { "description": "持有数量", "type": "number" }, "holdertype": { "description": "持仓类别 - 1:单边持仓 2:双边持仓", "type": "integer" }, "logincode": { "description": "登录代码(账户)", "type": "string" }, "marketid": { "description": "市场id", "type": "integer" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "trademode": { "description": "交易模式", "type": "integer" }, "userid": { "description": "用户id", "type": "integer" }, "userinfotype": { "description": "账户类型 1-个人 2-企业", "type": "integer" } } }, "models.QhjMgrSubArea": { "type": "object", "properties": { "accountname": { "description": "账户名称(机构名称)", "type": "string" }, "memberuserid": { "description": "所属会员ID", "type": "integer" }, "parenttopuser": { "description": "上级顶级机构 [092=0,1时,默认为1, 092=2时若自已为顶级,则填入自己,自己不为顶级,填入ParentUserID的\"ParentTopUser\"]", "type": "string" }, "parentuserid": { "description": "所属机构ID", "type": "integer" }, "rootuserid": { "description": "根用户ID", "type": "string" }, "subaccountlevel": { "description": "子账户层数", "type": "integer" }, "subarealevelpath": { "description": "子机构层级路径(逗号分隔,首尾加逗号)", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "usertype": { "description": "账户类型 - 1:交易所 2:机构 3:会员子机构 4:经纪人 5:投资者 6:客户 7:企业成员(云平台)", "type": "integer" } } }, "models.QhjMgrTradeDetailRsp": { "type": "object", "properties": { "accountid": { "description": "资金账号", "type": "integer" }, "accountname": { "description": "用户名称", "type": "string" }, "agreeunit": { "description": "合约乘数", "type": "number" }, "buyorsell": { "description": "成交类型(方向) 0:买 1:卖", "type": "integer" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称(商品)", "type": "string" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品id", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "logincode": { "description": "登录代码(账户)", "type": "string" }, "marketid": { "description": "市场id", "type": "integer" }, "orderid": { "description": "关联委托单号", "type": "string" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "tradeamount": { "description": "金额", "type": "number" }, "tradedate": { "description": "交易日", "type": "string" }, "tradeid": { "description": "成交单号", "type": "string" }, "trademode": { "description": "交易模式", "type": "integer" }, "tradeprice": { "description": "价格", "type": "number" }, "tradeqty": { "description": "数量", "type": "number" }, "tradetime": { "description": "成交时间", "type": "string" }, "userid": { "description": "用户id", "type": "integer" }, "userinfotype": { "description": "账户类型 1-个人 2-企业", "type": "integer" } } }, "models.QhjMgrTradeOrderDetailRsp": { "type": "object", "properties": { "accountid": { "description": "资金账号", "type": "integer" }, "accountname": { "description": "用户名称", "type": "string" }, "agreeunit": { "description": "合约乘数", "type": "number" }, "amount": { "description": "金额", "type": "number" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称(商品)", "type": "string" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品id", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "logincode": { "description": "登录代码(账户)", "type": "string" }, "marketid": { "description": "市场id", "type": "integer" }, "orderid": { "description": "关联委托单号", "type": "string" }, "orderprice": { "description": "价格", "type": "number" }, "orderqty": { "description": "数量", "type": "number" }, "orderstatus": { "description": "委托状态 - 1: 委托请求 2:待冻结 3:委托成功 4: 委托失败 5:配对成功 6: 已撤销 7:部分成交 8:已成交 9:部成部撤 10:成交失败 11:已拒绝 12:经过摘牌(先摘后挂专用-先摘后挂已摘过) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用)", "type": "integer" }, "ordertime": { "description": "委托时间", "type": "string" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "tradedate": { "description": "交易日", "type": "string" }, "trademode": { "description": "交易模式", "type": "integer" }, "userid": { "description": "用户id", "type": "integer" }, "userinfotype": { "description": "账户类型 1-个人 2-企业", "type": "integer" } } }, "models.QhjMgrTradePayOrder": { "type": "object", "properties": { "accountname": { "description": "用户名称", "type": "string" }, "advanceratio": { "description": "首付比率", "type": "number" }, "agreeunit": { "description": "合约乘数", "type": "number" }, "buyaccountid": { "description": "买方账号ID[报价币种]", "type": "integer" }, "buyorderid": { "description": "买方委托单号(关联单号)", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称(商品)", "type": "string" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "logincode": { "description": "登录代码(账户)", "type": "string" }, "marketid": { "description": "市场id", "type": "integer" }, "offamount": { "description": "优惠金额", "type": "number" }, "operatetype": { "description": "买委托操作类型 - 1:正常下单 16:融资买入", "type": "integer" }, "payamount": { "description": "支付金额(金额)", "type": "number" }, "payflag": { "description": "付款标识 - 1:未支付 2:已支付 3:已过期 4:已撤销 5:结算过期 6:预售终止", "type": "integer" }, "paylimitedtime": { "description": "支付期限", "type": "string" }, "paytime": { "description": "付款时间", "type": "string" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "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": "交易模式", "type": "integer" }, "tradeprice": { "description": "成交价格(价格)", "type": "number" }, "tradeqty": { "description": "成交数量(数量)", "type": "number" }, "tradetime": { "description": "成交时间", "type": "string" }, "userid": { "description": "用户id", "type": "integer" }, "userinfotype": { "description": "账户类型 1-个人 2-企业", "type": "integer" } } }, "models.QhjMyTeamEx": { "type": "object", "properties": { "accountname": { "description": "用户名称", "type": "string" }, "accountstatus": { "description": "账户状态 - 1:待激活 2:待审核 3:待复审 4:正常 5:审核拒绝 6:停用(注销) 7:注销(删除)", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "mobile": { "description": "手机号码", "type": "string" }, "refereeuserid": { "description": "推荐人id", "type": "integer" }, "refernum": { "description": "推荐码", "type": "string" }, "subList": { "type": "array", "items": { "$ref": "#/definitions/models.QhjMyTeamEx" } }, "userid": { "description": "用户id", "type": "integer" }, "userinfotype": { "description": "用户类型 1-个人 2-企业", "type": "integer" } } }, "models.QhjNodeAgreementConfig": { "type": "object", "properties": { "agreementcontent": { "description": "协议内容", "type": "string" }, "agreementid": { "description": "协议ID", "type": "integer" }, "agreementname": { "description": "协议名称", "type": "string" }, "agreementno": { "description": "协议编号", "type": "string" }, "agreementtype": { "description": "协议类型 - 1:注册 2:登录 3:交易", "type": "integer" }, "agreementversion": { "description": "协议版本号", "type": "integer" }, "configid": { "description": "配置(SEQ_QHJ_NODEAGREEMENTCONFIG)", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "goodsid": { "description": "商品ID [默认为0, NodeType\u003e=3 的为商品值]", "type": "integer" }, "nodetype": { "description": "环节类型 - 1:注册 2:登录 3:购买 4:融资购买 5:定投 6:卖出", "type": "integer" } } }, "models.QhjParentAreaList": { "type": "object", "properties": { "accountname": { "description": "账户名称(机构名称)", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "usertype": { "description": "账户类型 - 1:交易所 2:机构 3:会员子机构 4:经纪人 5:投资者 6:客户 7:企业成员(云平台)", "type": "integer" } } }, "models.QhjPayOrder": { "type": "object", "properties": { "advanceratio": { "description": "首付比率", "type": "number" }, "buyaccountid": { "description": "买方账号ID[报价币种]", "type": "integer" }, "buyorderid": { "description": "买方委托单号", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunitid": { "description": "商品单位id", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "offamount": { "description": "优惠金额", "type": "number" }, "operatetype": { "description": "买委托操作类型 - 1:正常下单 16:融资买入", "type": "integer" }, "payamount": { "description": "支付金额", "type": "number" }, "payflag": { "description": "付款标识 - 1:未支付 2:已支付 3:已过期 4:已撤销 5:结算过期 6:预售终止", "type": "integer" }, "paylimitedtime": { "description": "支付期限", "type": "string" }, "paytime": { "description": "付款时间", "type": "string" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "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" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeqty": { "description": "成交数量", "type": "number" } } }, "models.QhjPickArea": { "type": "object", "properties": { "address": { "description": "详细地址", "type": "string" }, "cityid": { "description": "市", "type": "integer" }, "cityname": { "description": "城市名称", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "countryname": { "description": "国家名称", "type": "string" }, "districtid": { "description": "地区", "type": "integer" }, "districtname": { "description": "地区名称", "type": "string" }, "fromuserid": { "description": "所属机构(组织机构)( OrgType = 1时为自己, = 2\\3时取上级机构的所属机构)", "type": "integer" }, "fromusername": { "description": "所属机构名称", "type": "string" }, "provinceid": { "description": "省", "type": "integer" }, "provincename": { "description": "省名称", "type": "string" }, "suborgtype": { "description": "子机构类型(千海金) - 0:机构 1:代理 2:门店", "type": "integer" }, "userid": { "description": "机构用户ID 其他做市关系,都设置为 1", "type": "integer" }, "username": { "description": "机构用户名称(门店门称)", "type": "string" } } }, "models.QhjPickGoods": { "type": "object", "properties": { "enumdicname": { "description": "单位名称(提货商品)", "type": "string" }, "goodsid": { "description": "商品id", "type": "integer" }, "imageaddress": { "description": "图片", "type": "string" }, "modifierid": { "description": "修改人", "type": "integer" }, "modifiername": { "description": "修改人名称", "type": "string" }, "modifysrc": { "description": "修改来源 - 1:管理端 2:终端", "type": "integer" }, "pickupgoodsagreeunit": { "description": "合约乘数", "type": "number" }, "pickupgoodsdesc": { "description": "描述", "type": "string" }, "pickupgoodsid": { "description": "提货商品ID", "type": "string" }, "pickupgoodsname": { "description": "提货商品名称", "type": "string" }, "pickupgoodsstatus": { "description": "状态 - 1:正常 2:停用 3:注销", "type": "integer" }, "pickupgoodsunitid": { "description": "单位ID", "type": "integer" }, "pickupratio": { "description": "提货系数", "type": "number" }, "preparedays": { "description": "备货期(天)", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.QhjRSTriggerLog": { "type": "object", "properties": { "accountid": { "description": "用户资金账户", "type": "integer" }, "accountname": { "description": "账号名称(ACCOUNTID对应的名称)", "type": "string" }, "currencyid": { "description": "币种id", "type": "integer" }, "currencyname": { "description": "币种名称", "type": "string" }, "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "定投商品代码", "type": "string" }, "goodsid": { "description": "定投商品ID", "type": "integer" }, "goodsname": { "description": "定投商品名称", "type": "string" }, "goodunitid": { "description": "定投商品单位id", "type": "integer" }, "logid": { "description": "LogID(SEQ_QHJ_RSTRIGGERLOG)", "type": "string" }, "logincode": { "description": "账号(登录代码)", "type": "string" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "regularlycycle": { "description": "定投频率 - 1:每周 2:每月", "type": "integer" }, "regularlycyclevalue": { "description": "定投频率值 - 每周几(0-6) 或 每月几号(\u003c=28)", "type": "string" }, "regularlymode": { "description": "定投方式 - 1:按数量 2:按金额", "type": "integer" }, "regularlymodevalue": { "description": "定投方式值 - 数量或金额", "type": "number" }, "regularlystrategyid": { "description": "定投策略ID", "type": "integer" }, "retcode": { "description": "错误码", "type": "string" }, "tradeid": { "description": "成交单ID", "type": "string" }, "triggeramount": { "description": "触发金额", "type": "number" }, "triggerqty": { "description": "触发数量", "type": "number" }, "triggerstatus": { "description": "触发状态 - 1:成功 2:失败", "type": "integer" }, "triggertime": { "description": "触发时间", "type": "string" }, "triggertradedate": { "description": "触发交易日", "type": "string" }, "userid": { "description": "所属用户ID", "type": "integer" }, "userinfotype": { "description": "用户类型 1-个人 2-企业", "type": "integer" }, "username": { "description": "用户名称(userid对应的名称)", "type": "string" } } }, "models.QhjRStrategy": { "type": "object", "properties": { "accountid": { "description": "用户资金账户", "type": "integer" }, "accountname": { "description": "账号名称(ACCOUNTID对应的名称)", "type": "string" }, "currencyid": { "description": "币种id", "type": "integer" }, "currencyname": { "description": "币种名称", "type": "string" }, "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "定投商品代码", "type": "string" }, "goodsid": { "description": "定投商品ID", "type": "integer" }, "goodsname": { "description": "定投商品名称", "type": "string" }, "goodunitid": { "description": "定投商品单位id", "type": "integer" }, "lasteffecttradedate": { "description": "最新生效交易日", "type": "string" }, "laststoptradedate": { "description": "最新暂停交易日", "type": "string" }, "lasttriggertradedate": { "description": "最新触发交易日", "type": "string" }, "logincode": { "description": "账号(登录代码)", "type": "string" }, "nexttriggeramount": { "description": "下次触发金额", "type": "number" }, "nexttriggerdate": { "description": "下次触发日期", "type": "string" }, "nexttriggerqty": { "description": "下次触发数量 [按小数位放大值]", "type": "number" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "regularlycycle": { "description": "定投频率 - 1:每周 2:每月", "type": "integer" }, "regularlycyclevalue": { "description": "定投频率值 - 每周几(0-6) 或 每月几号(\u003c=28)", "type": "string" }, "regularlymode": { "description": "定投方式 - 1:按数量 2:按金额", "type": "integer" }, "regularlymodevalue": { "description": "定投方式值 - 数量或金额", "type": "number" }, "regularlystrategyid": { "description": "定投策略ID (SEQ_QHJ_REGULARLYSTRATEGY)", "type": "integer" }, "regularlystrategystatus": { "description": "策略状态 - 1:正常 2:暂停 3:终止", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "triggersuccesstimes": { "description": "累计定投成功次数", "type": "string" }, "triggertotalamount": { "description": "累计定投金额(成功)", "type": "number" }, "triggertotalqty": { "description": "累计定投数量(成功) [按小数位放大值]", "type": "number" }, "triggertotaltimes": { "description": "累计定投总次数", "type": "string" }, "updatesrc": { "description": "更新来源 - 1:管理端 2:终端", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" }, "updatorid": { "description": "更新人", "type": "string" }, "userid": { "description": "所属用户ID", "type": "integer" }, "userinfotype": { "description": "用户类型 1-个人 2-企业", "type": "integer" }, "username": { "description": "用户名称(userid对应的名称)", "type": "string" } } }, "models.QhjReckonPriceLog": { "type": "object", "properties": { "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "lastreckonprice": { "description": "上日结算价", "type": "number" }, "nextdnlimitprice": { "description": "下个交易日跌停价", "type": "number" }, "nexttrade": { "description": "下个交易日", "type": "string" }, "nextuplimitprice": { "description": "下个交易日涨停价", "type": "number" }, "reckonprice": { "description": "今日结算价(定投价)", "type": "number" }, "reckontime": { "description": "结算时间", "type": "string" }, "totalholderqty": { "description": "总持仓数", "type": "integer" }, "totalstock": { "description": "总库存", "type": "integer" }, "tradedate": { "description": "交易日", "type": "string" }, "updowncount": { "description": "连续涨(跌)停天数 (涨跌停标志变为0时值归0,变成涨停或是跌停时值为1,连续涨停天数+1,连续跌停天数+1)", "type": "integer" }, "updownflag": { "description": "连续涨跌停标志 - 0:无涨跌停 -1:跌停 1:涨停", "type": "integer" }, "updownrate": { "description": "今日涨跌幅", "type": "number" }, "updownrate_2d": { "description": "连续两日涨跌幅", "type": "number" }, "updownrate_3d": { "description": "连续三日涨跌幅", "type": "number" } } }, "models.QhjScoreLog": { "type": "object", "properties": { "accountid": { "description": "账户ID", "type": "integer" }, "createtime": { "description": "创建时间(时间)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "hasuploaded": { "description": "是否已同步(千海金) 0:未同步 1;已同步", "type": "integer" }, "logid": { "description": "流水ID(211+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "relatedamount": { "description": "关联金额", "type": "number" }, "relatedorderid": { "description": "关联单号(ScoreType=1为Trade_GoodsPickup)", "type": "string" }, "scoreconfigvalue1": { "description": "积分配置1", "type": "integer" }, "scoreconfigvalue2": { "description": "积分配置1", "type": "integer" }, "scoretype": { "description": "积分类型 - 1:提货积分", "type": "integer" }, "scorevalue": { "description": "积分", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "uploadedtime": { "description": "同步时间", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.QhjSiteColumnDetail": { "type": "object", "properties": { "author": { "description": "作者", "type": "string" }, "brief": { "description": "简介", "type": "string" }, "columnid": { "description": "所属栏目", "type": "integer" }, "context": { "description": "内容", "type": "string" }, "coverimage": { "description": "封面图片", "type": "string" }, "creaedate": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "hits": { "description": "点击数", "type": "integer" }, "id": { "description": "ID(SEQ_SITE_COLUMNDETAIL)", "type": "integer" }, "isshow": { "description": "是否展示 - 0:不展示 1:展示", "type": "integer" }, "istop": { "description": "是否置顶 - 0:不置 1:置顶", "type": "integer" }, "modifierid": { "description": "操作人", "type": "integer" }, "publishdate": { "description": "发布日期", "type": "string" }, "srcid": { "description": "来源ID", "type": "string" }, "srclogo": { "description": "来源LOGO", "type": "string" }, "srcname": { "description": "来源名称", "type": "string" }, "srcurl": { "description": "来源网址", "type": "string" }, "status": { "description": "状态 - 1:暂存 10:待审核 20:审核通过 30:审核拒绝", "type": "integer" }, "title": { "description": "标题", "type": "string" }, "updatedate": { "description": "修改时间", "type": "string" }, "userid": { "description": "用户ID(默认为0, 核心为为机构用户ID)", "type": "integer" }, "username": { "description": "用户名称", "type": "string" } } }, "models.QhjTeamOrder": { "type": "object", "properties": { "accountid": { "description": "账户ID[报价币种]", "type": "integer" }, "accountname": { "description": "账户名称", "type": "string" }, "agreeunit": { "description": "合约乘数", "type": "number" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketname": { "description": "市场名称", "type": "string" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "refereeuserid": { "description": "推荐人ID", "type": "integer" }, "tradeamount": { "description": "成交金额[账户币种,用于所有权]", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeqty": { "description": "成交数量", "type": "number" }, "tradetime": { "description": "成交时间", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.QhjTradeGoodsPickup": { "type": "object", "properties": { "accountid": { "description": "账户ID", "type": "integer" }, "address": { "description": "提货人详细地址", "type": "string" }, "amount": { "description": "提货金额", "type": "number" }, "artradedate": { "description": "自动收货交易日(yyyyMMdd)", "type": "string" }, "auditer": { "description": "审核人", "type": "integer" }, "auditsrc": { "description": "更新来源 - 1:管理端 2:终端", "type": "integer" }, "audittime": { "description": "审核时间(发货时间 | 备货完成时间 都是这个字段)", "type": "string" }, "audittradedate": { "description": "审核交易日(yyyyMMdd)", "type": "string" }, "cardnum": { "description": "提货人证件号码", "type": "string" }, "cardtypeid": { "description": "提货人证件类型", "type": "integer" }, "checkremark": { "description": "审核备注", "type": "string" }, "cityid": { "description": "市", "type": "integer" }, "cityname": { "description": "城市名称", "type": "string" }, "confirmtime": { "description": "取货时间 或 收货时间", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "countryname": { "description": "国家名称", "type": "string" }, "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "districtid": { "description": "地区", "type": "integer" }, "districtname": { "description": "地区名称", "type": "string" }, "enumdicname": { "description": "单位名称(提货商品)", "type": "string" }, "expresscompany": { "description": "物流公司", "type": "string" }, "expressnum": { "description": "物流单号", "type": "string" }, "goodsagreeunit": { "description": "交易商品乘数", "type": "number" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodsqty": { "description": "交易商品手数(69模式按成交量小数位放大取整)", "type": "number" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "logincode": { "description": "账号(登录代码, 有可能为空)", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "phonenum": { "description": "提货人联系方式", "type": "string" }, "pickupgoodsagreeunit": { "description": "提货商品合约乘数", "type": "number" }, "pickupgoodsid": { "description": "提货商品ID", "type": "string" }, "pickupgoodsname": { "description": "提货商品名称", "type": "string" }, "pickupgoodsqty": { "description": "提货商品手数(数量)", "type": "number" }, "pickupgoodsunitid": { "description": "单位ID(提货商品)", "type": "integer" }, "pickupratio": { "description": "提货系数", "type": "number" }, "preparedays": { "description": "备货期(天)-提货单明细表", "type": "integer" }, "provinceid": { "description": "省", "type": "integer" }, "provincename": { "description": "省名称", "type": "string" }, "qty": { "description": "交易商品总手数(交易商品 - 69模式按成交量放大) - 明细表的交易商品手数汇总", "type": "number" }, "qtydecimalplace": { "description": "商品数量小数位", "type": "integer" }, "recivername": { "description": "提货人姓名", "type": "string" }, "reqtime": { "description": "提货申请时间", "type": "string" }, "storeuserid": { "description": "门店用户ID (千海金)", "type": "integer" }, "storeusername": { "description": "门店用户名称", "type": "string" }, "takemode": { "description": "提货方式 - 2:自提 3:配送(邮寄)", "type": "integer" }, "takeorderid": { "description": "提货单号(905+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "takeorderstatus": { "description": "提货状态 - 1:备货中 2:待取货(自提) 3:已取货(自提) 4:待收货(邮寄) 5:已收货(邮寄) 6:自动收货(邮寄) 7:已拒绝 8:已撤销", "type": "integer" }, "takeremark": { "description": "提货备注", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "userinfotype": { "description": "客户类型 1-个人 2-企业", "type": "integer" }, "username": { "description": "用户名称", "type": "string" } } }, "models.QhjUserNodeCfgAndStatus": { "type": "object", "properties": { "agreementcontent": { "description": "协议内容", "type": "string" }, "agreementid": { "description": "协议ID", "type": "integer" }, "agreementname": { "description": "协议名称", "type": "string" }, "agreementno": { "description": "协议编号", "type": "string" }, "agreementtype": { "description": "协议类型 - 1:注册 2:登录 3:交易", "type": "integer" }, "agreementversion": { "description": "协议版本号", "type": "integer" }, "configid": { "description": "配置(SEQ_QHJ_NODEAGREEMENTCONFIG)", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "goodsid": { "description": "商品ID [默认为0, NodeType\u003e=3 的为商品值]", "type": "integer" }, "nodetype": { "description": "环节类型 - 1:注册 2:登录 3:购买 4:融资购买 5:定投 6:卖出", "type": "integer" }, "signtimestamp": { "description": "签约状态时间戳(最近一次)", "type": "string" }, "tradedate": { "description": "签约交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "客户ID", "type": "integer" } } }, "models.Qhjgoodsex": { "type": "object", "properties": { "canfinance": { "description": "是否支持融资 - 0:不支持 1:支持【69:铂金宝】", "type": "integer" }, "canregularlybuy": { "description": "是否支持定投 - 0:不支持 1:支持【69:铂金宝】", "type": "integer" }, "defaulttradeuserid": { "description": "默认交易用户ID", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "goodsid": { "description": "商品ID(自增ID SEQ_GOODS)", "type": "integer" }, "minamount": { "description": "最小购买金额", "type": "number" }, "regularlybuyminamount": { "description": "定投最小金额", "type": "number" }, "regularlybuyminqty": { "description": "定投最小数量", "type": "number" }, "spotgoodsbrandid": { "description": "现货品牌ID - 存“DGFactoryItem”表\"DGFactoryItemID\"", "type": "integer" }, "visibilityforenterprise": { "description": "企业客户是否可见 - 0:不可见 1:可见", "type": "integer" }, "visibilityforpersonal": { "description": "个人客户是否可见 - 0:不可见 1:可见", "type": "integer" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" } } }, "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.QueryHedgeOrderDetailRsp": { "type": "object", "properties": { "accountid": { "description": "账户ID", "type": "integer" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "cancellogincode": { "description": "撤单人", "type": "string" }, "channelbuildtype": { "description": "开平标志 - 0:无 1:建仓 2:平仓", "type": "integer" }, "channelinnerorderstatus": { "description": "委托状态 - 1:委托请求 2:冻结成功 3:委托失败 4:部分成交 5:委托成功 6:全部撤销 7:部成部撤 8:部成部撤部失败 9:全部成交", "type": "integer" }, "channeloperatetype": { "description": "操作类型 - 1:正常委托 2:斩仓委托 3:强平委托", "type": "integer" }, "closetype": { "description": "平仓方式 - 0:无 1:平今 2:平昨", "type": "integer" }, "curexchangerate": { "description": "当前汇率", "type": "number" }, "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "exchangefullname": { "description": "外部交易所全称", "type": "string" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "openfreezemargin": { "description": "冻结保证金(冻结交易金额)", "type": "number" }, "orderid": { "description": "委托单号(107+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "orderlogincode": { "description": "委托人", "type": "string" }, "orderprice": { "description": "委托价格(账户)", "type": "number" }, "orderqty": { "description": "委托数量", "type": "integer" }, "ordertime": { "description": "委托时间", "type": "string" }, "pricemode": { "description": "取价方式 - 1:市价 2: 限价", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeqty": { "description": "成交数量", "type": "integer" } } }, "models.QueryHedgeTradeDetailRsp": { "type": "object", "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "channelbuildtype": { "description": "委托单据类型 0:无 1:建仓 2:平仓", "type": "integer" }, "closecharge": { "description": "平仓手续费(账户)", "type": "number" }, "closecharge2": { "description": "平仓手续费(商品)", "type": "number" }, "closepl": { "description": "平仓盈亏(账户)", "type": "number" }, "closepl2": { "description": "平仓盈亏(商品)", "type": "number" }, "closepl3": { "description": "平仓盈亏(账户)(逐笔)", "type": "number" }, "closepl4": { "description": "平仓盈亏(商品)(逐笔)", "type": "number" }, "closetype": { "description": "平仓方式 - 0:无 1:平今 2:平昨", "type": "integer" }, "curexchangerate": { "description": "当前汇率", "type": "number" }, "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "exchangefullname": { "description": "外部交易所全称", "type": "string" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "opencharge": { "description": "建仓手续费(账户)", "type": "number" }, "opencharge2": { "description": "建仓手续费(商品)", "type": "number" }, "orderid": { "description": "委托单号", "type": "string" }, "orderlogincode": { "description": "委托人", "type": "string" }, "tradeamount": { "description": "成交金额(账户)", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "成交单号(108+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "tradetime": { "description": "成交时间", "type": "string" }, "tradetype": { "description": "成交类别 - 1:正常委托成交 2:风控斩仓成交 3:修正持仓成交 4:管理端斩仓成交", "type": "integer" } } }, "models.QueryNewContentsRsp": { "type": "object", "properties": { "author": { "description": "作者", "type": "string" }, "brief": { "description": "简介", "type": "string" }, "columnid": { "description": "所属栏目", "type": "integer" }, "context": { "description": "内容", "type": "string" }, "coverimage": { "description": "封面图片", "type": "string" }, "creaedate": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "hits": { "description": "点击数", "type": "integer" }, "id": { "description": "ID(SEQ_SITE_COLUMNDETAIL)", "type": "integer" }, "isshow": { "description": "是否展示 - 0:不展示 1:展示", "type": "integer" }, "istop": { "description": "是否置顶 - 0:不置 1:置顶", "type": "integer" }, "modifierid": { "description": "操作人", "type": "integer" }, "publishdate": { "description": "发布日期", "type": "string" }, "srcid": { "description": "来源ID", "type": "integer" }, "srclogo": { "description": "图片地址\\来源LOGO", "type": "string" }, "srcname": { "description": "会员名称\\来源名称", "type": "string" }, "srcurl": { "description": "标签(逗号分隔)\\来源网址", "type": "string" }, "status": { "description": "状态 - 1:暂存 10:待审核 20:审核通过 30:审核拒绝", "type": "integer" }, "title": { "description": "标题", "type": "string" }, "updatedate": { "description": "修改时间", "type": "string" }, "userid": { "description": "用户ID(默认为0, 核心为为机构用户ID)", "type": "integer" } } }, "models.QueryNewTitlesRsp": { "type": "object", "properties": { "author": { "description": "作者", "type": "string" }, "brief": { "description": "简介", "type": "string" }, "columnid": { "description": "所属栏目", "type": "integer" }, "coverimage": { "description": "封面图片", "type": "string" }, "creaedate": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "hits": { "description": "点击数", "type": "integer" }, "id": { "description": "ID(SEQ_SITE_COLUMNDETAIL)", "type": "integer" }, "isshow": { "description": "是否展示 - 0:不展示 1:展示", "type": "integer" }, "istop": { "description": "是否置顶 - 0:不置 1:置顶", "type": "integer" }, "modifierid": { "description": "操作人", "type": "integer" }, "publishdate": { "description": "发布日期", "type": "string" }, "status": { "description": "状态 - 1:暂存 10:待审核 20:审核通过 30:审核拒绝", "type": "integer" }, "title": { "description": "标题", "type": "string" }, "updatedate": { "description": "修改时间", "type": "string" }, "userid": { "description": "用户ID(默认为0, 核心为为机构用户ID)", "type": "integer" } } }, "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.Reckondaytaaccount": { "type": "object", "required": [ "userid" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "accountname": { "description": "账户名称", "type": "string" }, "accountpl": { "description": "今日账户盈亏 = 今日净值-昨日净值+今日出金-今日入金-今日划转+今日授信减少-今日授信增加+今日其它授信减少-今日其它授信增加+今日三方出金-今日三方入金;由统计服务更新", "type": "number" }, "avaiablemoney": { "description": "可用资金", "type": "number" }, "avaiableoutmoney": { "description": "可出资金", "type": "number" }, "balance": { "description": "期初余额", "type": "number" }, "capitalbalance": { "description": "本金余额[外部子账户实际出入金余额]", "type": "number" }, "changeflag": { "description": "变动标志(当前账户资金有任何变动更新为1系统结算时更新0;供清算时使用) 0:无变动 1:有变动", "type": "integer" }, "clearbalance": { "description": "清算余额 = 期末余额 - 授信金额 - 其它授信金额", "type": "number" }, "clearpl": { "description": "真实资金变动值(除出入金、应付交易所手续费)清算盈亏 = 期末余额 - 期初余额 - (今日入金 + 今日出金) - 今日应付交易所手续费 - 【(今日授信增加 + 今日授信减少) - (今日其它授信增加 + 今日其它授信减少) ----母账户】 = 今日手续费支出 + 今日平仓盈亏 + 今日结算盈亏 + 其他支出 + 其他收入 + 今日划转金额 + 今日已收手续费分成 - 今日应付交易所手续费", "type": "number" }, "closepl": { "description": "今日平仓盈亏", "type": "number" }, "closepl2": { "description": "平仓盈亏(逐笔)", "type": "number" }, "creditdecrease": { "description": "今日授信减少", "type": "number" }, "creditincrease": { "description": "今日授信增加", "type": "number" }, "curdebt": { "description": "期末欠款", "type": "number" }, "currencyid": { "description": "货币ID", "type": "integer" }, "currentbalance": { "description": "期末余额", "type": "number" }, "cycletype": { "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表 (日报表不传此参数)", "type": "integer" }, "defercharge": { "description": "今日递延费2支出[111, 112]", "type": "number" }, "deliveryamountin": { "description": "今日交收货款收入", "type": "number" }, "deliveryamountout": { "description": "今日交收货款支出", "type": "number" }, "deliverycharge": { "description": "今日交收手续费支出 [105,106]", "type": "number" }, "deliverycompensationfeein": { "description": "今日交收补偿费收入", "type": "number" }, "deliverycompensationfeeout": { "description": "今日交收补偿费支出", "type": "number" }, "dividedcharge": { "description": "今日已收手续费分成", "type": "number" }, "floatnetvalue": { "description": "浮动净值 = 净值 + 浮动盈亏", "type": "number" }, "floatpl": { "description": "浮动盈亏 - 每日有负债类商品", "type": "number" }, "freezecharge": { "description": "手续费冻结", "type": "number" }, "freezemargin": { "description": "冻结保证金", "type": "number" }, "fromaccountid": { "description": "所属上级账户", "type": "integer" }, "holdcharge": { "description": "今日持仓过夜费支出[108,109,110]", "type": "number" }, "inamount": { "description": "今日入金金额", "type": "number" }, "interestcharge": { "description": "今日递延费支出[103, 104]", "type": "number" }, "ismain": { "description": "是否账号 0:不是母账户 1:是母账户", "type": "integer" }, "ismarketaccount": { "description": "是否机构接单账号 0:不是 1:是", "type": "integer" }, "isreckonaccount": { "description": "是否机构分润账号 0:不是 1:是", "type": "integer" }, "mortgagecredit": { "description": "授信金额", "type": "number" }, "netvalue": { "description": "净值 = 期末余额 + 所有权市值 + 仓单市值仓单市值由统计服务更新", "type": "number" }, "oridebt": { "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" }, "ownershipvalue": { "description": "所有权市值", "type": "number" }, "parentaccountid": { "description": "所属根账户", "type": "integer" }, "password": { "description": "资金密码", "type": "string" }, "paycharge": { "description": "今日手续费支出", "type": "number" }, "paycharge2": { "description": "今日手续费支出(外部配置)", "type": "number" }, "payexchcharge": { "description": "今日应付交易所手续费", "type": "number" }, "reckondate": { "description": "日照日期(yyyyMMdd)", "type": "string" }, "reckonpl": { "description": "今日结算盈亏", "type": "number" }, "reckonpl2": { "description": "结算盈亏(逐笔) - 汇总取期末", "type": "number" }, "relatedaccountstatus": { "description": "关联用户交易状态 - 1:正常(可交易) 2:受限(可平仓,不可建仓) 3:冻结(不可交易)", "type": "integer" }, "relateuserid": { "description": "关联用户", "type": "integer" }, "riskrate": { "description": "风险率 = 占用/ 浮动净值 或 浮动净值/占用", "type": "number" }, "signstatus": { "description": "签约状态 - 1:未签约 2:已签约 3:已解约", "type": "integer" }, "spotvalue": { "description": "现货市值-统计服务更新", "type": "number" }, "sublevelpath": { "description": "账号层级路径(逗号分隔,首尾加逗号)", "type": "string" }, "taaccounttype": { "description": "外部/内部账号 - 1:外部账号 2:内部账号", "type": "integer" }, "thirdinamount": { "description": "今日三方入金", "type": "number" }, "thirdoutamount": { "description": "今日三方出金", "type": "number" }, "tradeamount": { "description": "今日成交金额", "type": "number" }, "tradecharge": { "description": "今日交易手续费支出 [101,102]", "type": "number" }, "tradeqty": { "description": "今日成交量", "type": "integer" }, "tradestatus": { "description": "交易状态 - 1:正常 2:受限 3:冻结 4:禁止建仓(人工受限) 5:禁止交易(人工冻结)", "type": "integer" }, "transferamount": { "description": "今日划转金额(母子账号资金划转,从账号划入为正,从账号划出为负)", "type": "number" }, "usedmargin": { "description": "占用保证金", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.Reckongzmemtradesum": { "type": "object", "required": [ "userid" ], "properties": { "buylistingamount": { "description": "买挂牌金额 - 无数据,预留", "type": "number" }, "buylistinglot": { "description": "买挂牌宗数", "type": "integer" }, "buylistingqty": { "description": "买挂牌数量 - 无数据,预留", "type": "number" }, "buytradeamount": { "description": "购买金额", "type": "number" }, "buytradelot": { "description": "购买宗数", "type": "integer" }, "buytradeqty": { "description": "购买数量", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "reckondate": { "description": "日照日期(yyyyMMdd)", "type": "string" }, "selllistingamount": { "description": "卖挂牌金额", "type": "number" }, "selllistinglot": { "description": "卖挂牌宗数", "type": "integer" }, "selllistingqty": { "description": "卖挂牌数量", "type": "number" }, "selltradeamount": { "description": "销售金额", "type": "number" }, "selltradelot": { "description": "销售宗数", "type": "integer" }, "selltradeqty": { "description": "销售数量", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "zscategory": { "description": "钻石分类 - 枚举”ZSCategory“", "type": "integer" }, "zscategorydisplay": { "type": "string" }, "zscurrencytype": { "description": "货币类型 - 枚举“ZSCurrencyType”", "type": "integer" }, "zscurrencytypedisplay": { "type": "string" }, "zscurrencytypedisplayunit": { "type": "string" } } }, "models.RedisTradeHolderDetailEx": { "type": "object", "properties": { "agreeUnit": { "description": "合约单位", "type": "number" }, "decimalPlace": { "description": "小数位位数", "type": "integer" }, "depositRate": { "description": "订单定金率", "type": "number" }, "floatPL": { "description": "浮动盈亏", "type": "number" }, "goodsCode": { "description": "商品代码", "type": "string" }, "goodsName": { "description": "商品名称", "type": "string" }, "goodsUnit": { "description": "单位名称", "type": "string" }, "goodsUnitID": { "description": "单位", "type": "integer" }, "quoteMinUnit": { "description": "行情最小变动单位", "type": "integer" }, "refundableDeposit": { "description": "可退定金", "type": "number" }, "tHDetailEx": { "description": "交易持仓扩展表记录", "$ref": "#/definitions/models.TradeHolderDetailEx" } } }, "models.RegisterMoney": { "type": "object", "properties": { "amount": { "description": "红包", "type": "number" } } }, "models.RelatedTaAccount": { "type": "object", "properties": { "accountid": { "description": "资金账户ID", "type": "integer" } } }, "models.ReportBankAccountOutInLog": { "type": "object", "required": [ "accountId", "reportType", "tradedate" ], "properties": { "accountId": { "description": "资金账户", "type": "integer" }, "amount": { "description": "金额", "type": "number" }, "applystatusdisplay": { "description": "申请状态", "type": "string" }, "executetypedisplay": { "description": "申请类型", "type": "string" }, "reportType": { "description": "报表类型 日报表-1 月报表-2", "type": "integer" }, "tradedate": { "description": "查询日期 日报表-yyyyMMdd 月报表-yyyyMM", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.ReportReckonDayPosition": { "type": "object", "required": [ "accountid", "reckondate", "reportType" ], "properties": { "accountid": { "description": "账号Id", "type": "integer" }, "avagepricedisplay": { "description": "均价", "type": "string" }, "buyorselldisplay": { "description": "方向", "type": "string" }, "curholderamount": { "description": "当前持仓总金额", "type": "number" }, "curpositionqty": { "description": "当前持仓总数量", "type": "integer" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "frozenqty": { "description": "持仓冻结", "type": "integer" }, "goodsdisplay": { "description": "商品名称", "type": "string" }, "goodsid": { "description": "商品Id", "type": "integer" }, "reckondate": { "description": "日照日期(yyyyMMdd)", "type": "string" }, "reportType": { "description": "报表类型 日报表-1 月报表-2", "type": "integer" } } }, "models.ReportReckondaytaaccount": { "type": "object", "required": [ "accountid", "reckondate" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "accountname": { "description": "账户名称", "type": "string" }, "accountpl": { "description": "今日账户盈亏 = 今日净值-昨日净值+今日出金-今日入金-今日划转+今日授信减少-今日授信增加+今日其它授信减少-今日其它授信增加+今日三方出金-今日三方入金;由统计服务更新", "type": "number" }, "avaiablemoney": { "description": "可用资金", "type": "number" }, "avaiableoutmoney": { "description": "可出资金", "type": "number" }, "balance": { "description": "期初余额", "type": "number" }, "capitalbalance": { "description": "本金余额[外部子账户实际出入金余额]", "type": "number" }, "changeflag": { "description": "变动标志(当前账户资金有任何变动更新为1系统结算时更新0;供清算时使用) 0:无变动 1:有变动", "type": "integer" }, "clearbalance": { "description": "清算余额 = 期末余额 - 授信金额 - 其它授信金额", "type": "number" }, "clearpl": { "description": "真实资金变动值(除出入金、应付交易所手续费)清算盈亏 = 期末余额 - 期初余额 - (今日入金 + 今日出金) - 今日应付交易所手续费 - 【(今日授信增加 + 今日授信减少) - (今日其它授信增加 + 今日其它授信减少) ----母账户】 = 今日手续费支出 + 今日平仓盈亏 + 今日结算盈亏 + 其他支出 + 其他收入 + 今日划转金额 + 今日已收手续费分成 - 今日应付交易所手续费", "type": "number" }, "closepl": { "description": "今日平仓盈亏", "type": "number" }, "closepl2": { "description": "平仓盈亏(逐笔)", "type": "number" }, "creditdecrease": { "description": "今日授信减少", "type": "number" }, "creditincrease": { "description": "今日授信增加", "type": "number" }, "curdebt": { "description": "期末欠款", "type": "number" }, "currencyid": { "description": "货币ID", "type": "integer" }, "currentbalance": { "description": "期末余额", "type": "number" }, "defercharge": { "description": "今日递延费2支出[111, 112]", "type": "number" }, "deliveryamountin": { "description": "今日交收货款收入", "type": "number" }, "deliveryamountout": { "description": "今日交收货款支出", "type": "number" }, "deliverycharge": { "description": "今日交收手续费支出 [105,106]", "type": "number" }, "deliverycompensationfeein": { "description": "今日交收补偿费收入", "type": "number" }, "deliverycompensationfeeout": { "description": "今日交收补偿费支出", "type": "number" }, "dividedcharge": { "description": "今日已收手续费分成", "type": "number" }, "floatnetvalue": { "description": "浮动净值 = 净值 + 浮动盈亏", "type": "number" }, "floatpl": { "description": "浮动盈亏 - 每日有负债类商品", "type": "number" }, "freezecharge": { "description": "手续费冻结", "type": "number" }, "freezemargin": { "description": "冻结保证金", "type": "number" }, "fromaccountid": { "description": "所属上级账户", "type": "integer" }, "holdcharge": { "description": "今日持仓过夜费支出[108,109,110]", "type": "number" }, "inamount": { "description": "今日入金金额", "type": "number" }, "interestcharge": { "description": "今日递延费支出[103, 104]", "type": "number" }, "ismain": { "description": "是否账号 0:不是母账户 1:是母账户", "type": "integer" }, "ismarketaccount": { "description": "是否机构接单账号 0:不是 1:是", "type": "integer" }, "isreckonaccount": { "description": "是否机构分润账号 0:不是 1:是", "type": "integer" }, "mortgagecredit": { "description": "授信金额", "type": "number" }, "netvalue": { "description": "净值 = 期末余额 + 所有权市值 + 仓单市值仓单市值由统计服务更新", "type": "number" }, "oridebt": { "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" }, "ownershipvalue": { "description": "所有权市值", "type": "number" }, "parentaccountid": { "description": "所属根账户", "type": "integer" }, "password": { "description": "资金密码", "type": "string" }, "paycharge": { "description": "今日手续费支出", "type": "number" }, "paycharge2": { "description": "今日手续费支出(外部配置)", "type": "number" }, "payexchcharge": { "description": "今日应付交易所手续费", "type": "number" }, "reckondate": { "description": "日照日期(yyyyMMdd)", "type": "string" }, "reckonpl": { "description": "今日结算盈亏", "type": "number" }, "reckonpl2": { "description": "结算盈亏(逐笔) - 汇总取期末", "type": "number" }, "relatedaccountstatus": { "description": "关联用户交易状态 - 1:正常(可交易) 2:受限(可平仓,不可建仓) 3:冻结(不可交易)", "type": "integer" }, "relateuserid": { "description": "关联用户", "type": "integer" }, "riskrate": { "description": "风险率 = 占用/ 浮动净值 或 浮动净值/占用", "type": "number" }, "signstatus": { "description": "签约状态 - 1:未签约 2:已签约 3:已解约", "type": "integer" }, "spotvalue": { "description": "现货市值-统计服务更新", "type": "number" }, "sublevelpath": { "description": "账号层级路径(逗号分隔,首尾加逗号)", "type": "string" }, "taaccounttype": { "description": "外部/内部账号 - 1:外部账号 2:内部账号", "type": "integer" }, "thirdinamount": { "description": "今日三方入金", "type": "number" }, "thirdoutamount": { "description": "今日三方出金", "type": "number" }, "tradeamount": { "description": "今日成交金额", "type": "number" }, "tradecharge": { "description": "今日交易手续费支出 [101,102]", "type": "number" }, "tradeqty": { "description": "今日成交量", "type": "integer" }, "tradestatus": { "description": "交易状态 - 1:正常 2:受限 3:冻结 4:禁止建仓(人工受限) 5:禁止交易(人工冻结)", "type": "integer" }, "transferamount": { "description": "今日划转金额(母子账号资金划转,从账号划入为正,从账号划出为负)", "type": "number" }, "usedmargin": { "description": "占用保证金", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.ReportTradeDetail": { "type": "object", "required": [ "accountid", "histradedate", "reportType" ], "properties": { "accountid": { "description": "资金账户", "type": "integer" }, "buyorselldisplay": { "description": "类型/方向", "type": "string" }, "charge": { "description": "服务费", "type": "number" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "goodsdisplay": { "description": "商品", "type": "string" }, "goodsid": { "description": "期货合约ID(自增ID SEQ_GOODS)", "type": "integer" }, "histradedate": { "description": "查询日期 日报表-yyyyMMdd 月报表-yyyyMM", "type": "string" }, "reportType": { "description": "报表类型 日报表-1 月报表-2", "type": "integer" }, "tradeamount": { "description": "成交金额", "type": "number" }, "tradeid": { "description": "成交单号", "type": "string" }, "tradeprice": { "description": "价格", "type": "number" }, "tradeqty": { "description": "数量", "type": "integer" }, "tradetime": { "description": "时间", "type": "string" } } }, "models.Reporttaaccount": { "type": "object", "required": [ "accountid", "cycletime" ], "properties": { "accountid": { "description": "资金账户ID", "type": "integer" }, "accountname": { "description": "账户名称", "type": "string" }, "accountpl": { "description": "今日账户盈亏 = 今日净值-昨日净值+今日出金-今日入金-今日划转+今日授信减少-今日授信增加+今日其它授信减少-今日其它授信增加+今日三方出金-今日三方入金;由统计服务更新", "type": "number" }, "avaiablemoney": { "description": "可用资金【期末】", "type": "number" }, "avaiableoutmoney": { "description": "可出资金【期末】", "type": "number" }, "balance": { "description": "期初余额", "type": "number" }, "capitalbalance": { "description": "本周期本金余额[外部子账户实际出入金余额]", "type": "number" }, "clearbalance": { "description": "清算余额 = 期末余额 - 授信金额 - 其它授信金额", "type": "number" }, "clearpl": { "description": "清算盈亏", "type": "number" }, "closepl": { "description": "本周期平仓盈亏", "type": "number" }, "closepl2": { "description": "平仓盈亏(逐笔)", "type": "number" }, "creditdecrease": { "description": "本周期授信减少", "type": "number" }, "creditincrease": { "description": "本周期授信增加", "type": "number" }, "curdebt": { "description": "期末欠款【期末】", "type": "number" }, "currencyid": { "description": "货币ID", "type": "integer" }, "currentbalance": { "description": "期末余额", "type": "number" }, "cycletime": { "description": "周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(0)", "type": "string" }, "cycletype": { "description": "周期类型 - 1:月 2:季 3:年 4:周 5:全报表", "type": "integer" }, "defercharge": { "description": "本周期递延费2支出[111, 112]", "type": "number" }, "deliveryamountin": { "description": "本周期交收货款收入", "type": "number" }, "deliveryamountout": { "description": "本周期交收货款支出", "type": "number" }, "deliverycharge": { "description": "本周期交收手续费支出 [105,106]", "type": "number" }, "deliverycompensationfeein": { "description": "本周期交收补偿费收入", "type": "number" }, "deliverycompensationfeeout": { "description": "本周期交收补偿费支出", "type": "number" }, "dividedcharge": { "description": "本周期已收手续费分成", "type": "number" }, "floatnetvalue": { "description": "浮动净值【期末】", "type": "number" }, "floatpl": { "description": "浮动盈亏【期末】", "type": "number" }, "freezecharge": { "description": "手续费冻结", "type": "number" }, "freezemargin": { "description": "冻结保证金", "type": "number" }, "fromaccountid": { "description": "所属上级账户", "type": "integer" }, "holdcharge": { "description": "本周期持仓过夜费支出[108,109, 110]", "type": "number" }, "inamount": { "description": "本周期入金金额", "type": "number" }, "interestcharge": { "description": "本周期递延费支出[103, 104]", "type": "number" }, "ismain": { "description": "是否母账号 0:不是母账户 1:是母账户", "type": "integer" }, "mortgagecredit": { "description": "授信金额", "type": "number" }, "netvalue": { "description": "净值 = 期末余额 + 所有权市值", "type": "number" }, "oridebt": { "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" }, "ownershipvalue": { "description": "所有权市值", "type": "number" }, "parentaccountid": { "description": "所属根账户", "type": "integer" }, "paycharge": { "description": "本周期手续费支出", "type": "number" }, "paycharge2": { "description": "今日手续费支出(外部配置)", "type": "number" }, "payexchcharge": { "description": "本周期应付交易所手续费", "type": "number" }, "reckonpl": { "description": "本周期结算盈亏", "type": "number" }, "reckonpl2": { "description": "结算盈亏(逐笔) - 汇总取期末", "type": "number" }, "relateuserid": { "description": "关联用户", "type": "integer" }, "riskrate": { "description": "风险率【期末】", "type": "number" }, "spotvalue": { "description": "现货市值-统计服务更新", "type": "number" }, "sublevelpath": { "description": "账号层级路径(逗号分隔,首尾加逗号)", "type": "string" }, "taaccounttype": { "description": "外部/内部账号 - 1:外部账号 2:内部账号", "type": "integer" }, "thirdinamount": { "description": "本周期三方入金", "type": "number" }, "thirdoutamount": { "description": "本周期三方出金", "type": "number" }, "tradeamount": { "description": "本周期成交金额", "type": "number" }, "tradecharge": { "description": "本周期交易手续费支出 [101,102]", "type": "number" }, "tradeqty": { "description": "本周期成交量", "type": "integer" }, "transferamount": { "description": "本周期划转金额(母子账号资金划转,从账号划入为正,从账号划出为负)", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "usedmargin": { "description": "占用保证金", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.Riskratiotype": { "type": "object", "properties": { "addmarginriskratio": { "description": "追加保证金风险率", "type": "number" }, "addsaferatio": { "description": "追加安全度", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "customertype": { "description": "客户类别(机构/投资者客户类别枚举项值)", "type": "integer" }, "cutbackriskratio": { "description": "斩仓恢复风险率(投资者用,会员转全部净头寸)", "type": "number" }, "cutmarginseq": { "description": "斩仓市场顺序(按市场)", "type": "string" }, "cutriskratio": { "description": "斩仓风险率", "type": "number" }, "cutsaferatio": { "description": "斩仓安全度", "type": "number" }, "cutthreshold": { "description": "净值斩仓阈值(做市会员用)", "type": "number" }, "cutthresholdflag": { "description": "净值斩仓标志 - 0:不启用 1:启用(做市会员用)", "type": "integer" }, "isdefault": { "description": "是否默认(每个风控模式必有且只能设置一个默认) - 0:非默认 1:默认", "type": "integer" }, "issendcancel": { "description": "到达追加风险率是否撤单(交易) - 0:不撤 1:撤单", "type": "integer" }, "issenddeliverycancel": { "description": "到达追加风险率是否撤单(交割) - 0:不撤 1:撤单", "type": "integer" }, "modifierid": { "description": "修改人ID", "type": "integer" }, "modifytime": { "description": "修改时间", "type": "string" }, "notemarginriskratio": { "description": "提示保证金风险率", "type": "number" }, "notesaferatio": { "description": "提示安全度", "type": "number" }, "recoversaferatio": { "description": "恢复正常安全度(会员)", "type": "number" }, "recovertraderiskratio": { "description": "恢复正常交易风险率(会员)", "type": "number" }, "riskcontrolmode": { "description": "适用交易用户类型 1:投资者/机构自营 2:机构做市", "type": "integer" }, "riskratiocalcmode": { "description": "风险率计算方法 - 1:占用/净值", "type": "integer" }, "riskrationame": { "description": "类型名称", "type": "string" } } }, "models.RoleMenu": { "type": "object", "properties": { "hasright": { "description": "是否有权限 0-没有权限 1-有权限", "type": "integer" }, "iconame": { "description": "菜单图标", "type": "string" }, "menutype": { "description": "菜单类型 1:管理端 2:交易端 3:终端(企业云平台)", "type": "integer" }, "parentcode": { "description": "上级资源代码", "type": "string" }, "remark": { "description": "菜单备注", "type": "string" }, "resourcecode": { "description": "菜单代码", "type": "string" }, "resourcelevel": { "description": "级别", "type": "integer" }, "resourcename": { "description": "菜单名称", "type": "string" }, "roleid": { "description": "角色id", "type": "integer" }, "sort": { "description": "排序", "type": "integer" }, "subMenu": { "description": "子级菜单(结构同上层一样, swag解析不出来)", "type": "array", "items": { "$ref": "#/definitions/models.RoleMenu" } }, "url": { "description": "URL", "type": "string" }, "userid": { "description": "用户id", "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.SellOrder": { "type": "object", "properties": { "accountid": { "description": "资金账号", "type": "integer" }, "applyid": { "description": "申请单ID", "type": "integer" }, "attachment1": { "description": "附件1", "type": "string" }, "attachment2": { "description": "附件2", "type": "string" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "canbargain": { "description": "是否可议价 - 0:不可 1:可", "type": "integer" }, "cancelqty": { "description": "撤销数量", "type": "integer" }, "canceltime": { "description": "撤销时间", "type": "string" }, "cerno": { "type": "string" }, "chargealgorithm": { "description": "手续费收取方式 1:比率 2:固定", "type": "integer" }, "chargealgorithmvalue": { "description": "手续费设置值(交易所部分)", "type": "number" }, "chargealgorithmvalue2": { "description": "手续费设置值(会员部分)", "type": "number" }, "clientordertime": { "description": "客户端委托时间", "type": "string" }, "cpcertno": { "type": "string" }, "exchangerate": { "description": "汇率[67]", "type": "number" }, "firstratio": { "description": "首付比率 - [挂牌时指定,摘牌时使用]", "type": "number" }, "fixedprice": { "description": "[克拉单价]固定价格 - [挂牌]", "type": "number" }, "freezecharge": { "description": "冻结手续费", "type": "number" }, "freezefirstamount": { "description": "冻结首付金额 - [摘牌]", "type": "number" }, "freezemargin": { "description": "冻结保证金", "type": "number" }, "goodsno": { "description": "商品编号", "type": "string" }, "imagepath": { "type": "string" }, "isQueryDiamond": { "description": "是否钻石查询", "type": "boolean" }, "isspecified": { "description": "是否指定对手 - 0:不指定 1:指定好友(贸易圈) 2:指定对手 - [挂牌]", "type": "integer" }, "kppath": { "type": "string" }, "kpweight": { "type": "string" }, "marginalgorithm": { "description": "保证金方式 - 1:比率 2:固定", "type": "integer" }, "marginvalue": { "description": "保证金设置值", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketprice": { "type": "string" }, "orderamount": { "description": "挂牌金额[账户] [67]= OrderQty * FixedPrice * ExchangeRate /100", "type": "number" }, "ordertime": { "description": "委托时间", "type": "string" }, "performancetemplateid": { "description": "履约计划模板ID", "type": "integer" }, "price": { "description": "价格", "type": "number" }, "pricefactor": { "description": "价格系数(浮动价时填写) - [挂牌]", "type": "number" }, "pricemove": { "description": "升贴水(浮动价时填写) - [挂牌]", "type": "number" }, "priceper": { "type": "string" }, "relatedwrtradeorderid": { "description": "关联委托单号(摘牌委托关联挂牌委托单ID)", "type": "integer" }, "remainqty": { "description": "剩余重量", "type": "number" }, "remark": { "type": "string" }, "retcode": { "description": "错误代码", "type": "integer" }, "sellusername": { "description": "卖方(查询字段-模糊查询)", "type": "string" }, "settingmaterial": { "description": "镶嵌材料", "type": "string" }, "size1": { "type": "string" }, "size2": { "type": "string" }, "size3": { "type": "string" }, "sizedisplay": { "description": "尺寸", "type": "string" }, "stonedesc": { "description": "配石描述", "type": "string" }, "totalqty": { "description": "总重量", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价格 - [摘牌] (浮动价 ((商品1价格*商品1价格系数+升贴水)* 商品1重量系数 + 商品2价格*商品2价格系数+商品2升贴水)* 商品2重量系数 ...)* 委托单价格系数 + 委托单升贴水)", "type": "number" }, "unfreezecharge": { "description": "解冻手续费", "type": "number" }, "unfreezefirstamount": { "description": "解冻首付金额 - [摘牌]", "type": "number" }, "unfreezemargin": { "description": "解冻保证金", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" }, "uuid": { "description": "发起端唯一id", "type": "string" }, "validtime": { "description": "有效期限", "type": "string" }, "validtype": { "description": "有效类型 - 1当日有效 2本周有效 3指定日期有效 4一直有效", "type": "integer" }, "warehousenamedisplay": { "type": "string" }, "wrbargainid": { "description": "议价申请单ID", "type": "integer" }, "wrfactortypeid": { "description": "仓单要素类型ID/商品ID(77)", "type": "integer" }, "wrpath": { "type": "string" }, "wrpricetype": { "description": "价格方式 - 1:固定价 2-浮动价 - [挂牌]", "type": "integer" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrtradeorderid": { "description": "仓单贸易委托单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrtradeorderstatus": { "description": "委托状态 - 参考枚举'WRTradeOrderStatus' - 1:委托请求 2:待冻结 3:委托成功 4:委托失败 5:配对成功 6:已撤 7:部成 8:已成 9:部成部撤 10:成交失败 11:委托拒绝 12:经过摘牌(先摘后挂专用) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用) 17:冻结PD成功 18:冻结PD失败 19:冻结能量成功 20:冻结能量失败 21:预约已报价 22:过期未付 23:优惠券处理中 24:仓单生成失败 25:首付扣款失败 26:履约失败 27:撤单解冻贷款失败", "type": "integer" }, "wrtradetype": { "description": "仓单贸易类型 - 1:挂牌 2:摘牌 3:提货卖(文化中国) 4:提货买(文化中国)", "type": "integer" }, "wrtransferuserid": { "description": "仓单受让用户 - [摘牌]", "type": "integer" }, "zscategory": { "description": "钻石分类 - 枚举”ZSCategory“", "type": "integer" }, "zscategorydisplay": { "description": "钻石分类 - 描述", "type": "string" }, "zscerttypedisplay": { "type": "string" }, "zsclaritytype1display": { "type": "string" }, "zsclaritytype2display": { "type": "string" }, "zscolortype1display": { "type": "string" }, "zscolortype2display": { "type": "string" }, "zscrystaltype": { "type": "string" }, "zscrystaltypedisplay": { "type": "string" }, "zscurrencytype": { "description": "货币类型 - 枚举“ZSCurrencyType”", "type": "integer" }, "zscurrencytypedisplay": { "type": "string" }, "zscurrencytypedisplayunit": { "type": "string" }, "zscuttype1display": { "type": "string" }, "zscuttype2display": { "type": "string" }, "zsczcolor1typedisplay": { "type": "string" }, "zsczcolor2typedisplay": { "type": "string" }, "zsczcolor3typedisplay": { "type": "string" }, "zsfluorescencetype1display": { "type": "string" }, "zsfluorescencetype2display": { "type": "string" }, "zspolishtype1display": { "type": "string" }, "zspolishtype2display": { "type": "string" }, "zsshapetypedisplay": { "type": "string" }, "zsstyletypedisplay": { "type": "string" }, "zssymmetrytype1display": { "type": "string" }, "zssymmetrytype2display": { "type": "string" } } }, "models.SellOrderQueryReq": { "type": "object", "properties": { "cerno": { "description": "证书编号", "type": "string" }, "origin": { "description": "原产地", "type": "string" }, "page": { "description": "页码", "type": "integer" }, "pagesize": { "description": "每页大小", "type": "integer" }, "total": { "description": "总条数", "type": "integer" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "weight1": { "description": "总重量(克拉重量)-从", "type": "number" }, "weight2": { "description": "总重量(克拉重量)-至", "type": "number" }, "weightavg1": { "description": "平均单颗重量-从", "type": "number" }, "weightavg2": { "description": "平均单颗重量-至", "type": "number" }, "zscategory": { "description": "钻石分类 - 枚举”ZSCategory“", "type": "integer" }, "zscategorys": { "description": "钻石分类 - 枚举”ZSCategorys“ 逗号分隔", "type": "string" }, "zscerttype": { "description": "证书类型", "type": "array", "items": { "type": "string" } }, "zsclaritytype": { "description": "净度", "type": "array", "items": { "type": "integer" } }, "zscolortype": { "description": "颜色", "type": "array", "items": { "type": "integer" } }, "zscurrencytype": { "description": "货币类型 - 枚举“ZSCurrencyType”", "type": "array", "items": { "type": "string" } }, "zscuttype": { "description": "切工", "type": "array", "items": { "type": "integer" } }, "zsczcolor1type": { "description": "彩钻颜色1", "type": "array", "items": { "type": "string" } }, "zsfluorescencetype": { "description": "荧光", "type": "array", "items": { "type": "integer" } }, "zspolishtype": { "description": "抛光度", "type": "array", "items": { "type": "integer" } }, "zsshapetype": { "description": "形状 - 枚举”ZSShapeType“ - 类型:1,2,4,5 ;(1为多个,逗号分隔)", "type": "array", "items": { "type": "string" } }, "zsstyletype": { "description": "款式", "type": "array", "items": { "type": "string" } }, "zssymmetrytype": { "description": "对称度", "type": "array", "items": { "type": "integer" } } } }, "models.Sitecolumnconfig": { "type": "object", "properties": { "columnname": { "description": "栏目名称", "type": "string" }, "columntype": { "description": "栏目类型 - 1:行情资讯 10:会员服务 30:关于我们 100:核心企业栏目-百色", "type": "integer" }, "creaedate": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "id": { "description": "ID(SEQ_SITE_COLUMNCONFIG)", "type": "integer" }, "isshow": { "description": "是否展示 - 0:不展示 1:展示", "type": "integer" }, "modifierid": { "description": "操作人", "type": "integer" }, "sort": { "description": "排序", "type": "integer" }, "updatedate": { "description": "修改时间", "type": "string" } } }, "models.Spotgoodsprice": { "type": "object", "properties": { "diffprice": { "description": "差价", "type": "number" }, "prespotgoodsprice": { "description": "上日价格", "type": "number" }, "priceflag": { "description": "点价标识(1:为可点价-本月招标价已发布,否则为0)", "type": "integer" }, "spotgoodsprice": { "description": "当前价格", "type": "number" }, "spotgoodsqty": { "description": "招标量", "type": "number" }, "todayspotgoodsprice": { "description": "今开价格", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradedate2": { "description": "交易日-期货(yyyyMMdd)", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(通用则为0)", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" }, "ystspotgoodsprice": { "description": "昨结价格", "type": "number" } } }, "models.Systemparam": { "type": "object", "required": [ "paramcode" ], "properties": { "loginid": { "description": "更新用户账号,登录账号", "type": "string" }, "modifyflag": { "description": "修改标志0 不允许修改 1 允许修改", "type": "integer" }, "paramcode": { "description": "参数代码", "type": "string" }, "paramname": { "description": "参数名", "type": "string" }, "paramtype": { "description": "参数类型 0-通用 1-管理端 2-终端 3-后台 4-商城", "type": "integer" }, "paramvalue": { "description": "参数值", "type": "string" }, "paramvalue2": { "description": "参数值(CLOB)", "type": "string" }, "regexpress": { "description": "正则表达式", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "serverip": { "description": "限制服务器IP,备份参数,现在界面不用显示0.0.0.0则无限制,是通用参数192.168.0.211 指定服务器的参数配置", "type": "string" }, "showflag": { "description": "是否显示0 不显示 1 显示", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "更新用户ID", "type": "integer" } } }, "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.TBGoods": { "type": "object", "properties": { "agreeunit": { "description": "合约乘数", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "商品代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID(自增ID SEQ_GOODS)", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" } } }, "models.TBGoodsGroup": { "type": "object", "properties": { "GDLST": { "description": "商品列表", "type": "array", "items": { "$ref": "#/definitions/models.TBGoods" } }, "convertratio": { "description": "折算系数", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "exexchangecode": { "description": "交易所代码", "type": "string" }, "exexchangename": { "description": "交易所名称", "type": "string" }, "goodsgroupid": { "description": "商品组ID(自增ID)", "type": "integer" }, "goodsgroupname": { "description": "商品组名称", "type": "string" }, "goodunitid": { "description": "报价单位ID", "type": "integer" } } }, "models.TBMiddleGoods": { "type": "object", "properties": { "GPLST": { "description": "期货品种列表", "type": "array", "items": { "$ref": "#/definitions/models.TBGoodsGroup" } }, "WDLST": { "description": "商品信息列表(现货品类)", "type": "array", "items": { "$ref": "#/definitions/models.TBWrstandard" } }, "areauserid": { "description": "机构用户ID", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodsunitid": { "description": "套保品种单位id", "type": "integer" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种ID(SEQ_ERMS_MIDDLEGOODS)", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "needarbitrageratio": { "description": "套利比率", "type": "number" }, "needhedgeratio": { "description": "套保比率", "type": "number" } } }, "models.TBWrstandard": { "type": "object", "properties": { "convertratio": { "description": "折算系数", "type": "number" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "vatrate": { "description": "增值税率", "type": "number" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(SEQ_WRSTANDARD)", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.THJDeliveryMode": { "type": "object", "properties": { "enumdicname": { "description": "枚举项名称", "type": "string" }, "enumitemname": { "description": "枚举项值", "type": "integer" } } }, "models.THJDeliveryMonth": { "type": "object", "properties": { "enddate": { "description": "预售结束日期(yyyy-mm-dd)", "type": "string" }, "endmonth": { "description": "预售结束月份(yyyy-mm)", "type": "string" }, "orderqty": { "description": "委托数量", "type": "integer" }, "presaleapplyid": { "description": "预售申请ID(184+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "remainqty": { "description": "可用数量", "type": "integer" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "unitprice": { "description": "[参考价]商品单价", "type": "number" } } }, "models.THJFriend": { "type": "object", "properties": { "accoutstatus": { "description": "状态", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "customername": { "description": "客户名称(企业名称),模糊查询", "type": "string" }, "frienduserid": { "description": "用户UserID", "type": "string" }, "groupname": { "description": "分级名称", "type": "string" }, "hasauth": { "description": "是否已实名认证 - 0:未认证 1:已认证 2:已提交(待审核) 3:已拒绝", "type": "integer" }, "mobile": { "description": "手机号码(加密存储),加密串精确查询", "type": "string" } } }, "models.THJGoodsDetailRsp": { "type": "object", "properties": { "goodsinfo": { "description": "商品信息", "$ref": "#/definitions/models.THJWrstandardDetail_GoodsInfo" }, "spotgoodspricelogs": { "description": "历史价格走势", "type": "array", "items": { "$ref": "#/definitions/models.THJSpotGoodsPriceLog" } } } }, "models.THJPresaleApplyDeposit": { "type": "object", "properties": { "depositid": { "description": "自增ID autoid", "type": "string" }, "depositrate": { "description": "定金比例", "type": "number" }, "discountamount": { "description": "优惠金额(每吨)", "type": "number" }, "presaleapplyid": { "description": "预售申请ID(184+Unix秒时间戳(10位)+xxxxxx)", "type": "string" } } }, "models.THJProduct": { "type": "object", "properties": { "bannerpicurl": { "description": "Banner图(逗号分隔)", "type": "string" }, "pictureurls": { "description": "详情图片(逗号分隔)", "type": "string" }, "thumurls": { "description": "缩略图片(1:1)(逗号分隔)", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(自增 SEQ_GOODS 确保不重复)", "type": "string" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.THJProfit": { "type": "object", "properties": { "brokerprofitrate": { "description": "会员释出比例", "type": "string" }, "brokerrate": { "description": "会员比例", "type": "string" }, "buyorselldisplay": { "description": "方向", "type": "string" }, "chargeamount": { "description": "手续费总额", "type": "number" }, "firend": { "description": "下单好友", "type": "string" }, "levelonevalue": { "description": "一级比例", "type": "string" }, "leveltwovalue": { "description": "二级比例", "type": "string" }, "marketname": { "description": "市场", "type": "string" }, "profitamount": { "description": "分润金额", "type": "number" }, "profitroletypedisplay": { "description": "分润角色", "type": "string" }, "tradeid": { "description": "成交单号", "type": "string" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "tradetimedisplay": { "description": "成交时间", "type": "string" }, "wrstandardname": { "description": "商品", "type": "string" } } }, "models.THJPurchaseTradeDetailRsp": { "type": "object", "properties": { "deliverydate": { "description": "交割日期", "type": "array", "items": { "$ref": "#/definitions/models.THJPurchaseTradeDetail_Date" } }, "goodsinfo": { "description": "商品信息", "$ref": "#/definitions/models.THJPurchaseTradeDetail_Goodsinfo" }, "spotgoodspricelogs": { "description": "历史价格走势", "type": "array", "items": { "$ref": "#/definitions/models.THJSpotGoodsPriceLog" } } } }, "models.THJPurchaseTradeDetail_Date": { "type": "object", "properties": { "depositrate": { "description": "定金比例", "type": "number" }, "enddate": { "description": "预售结束日期", "type": "string" }, "endmonth": { "description": "交收月份(yyyy-mm)", "type": "string" }, "takestartdate": { "description": "提货开始日期", "type": "string" }, "tradeprice": { "description": "摘牌价格", "type": "number" }, "tradeqty": { "description": "摘牌数量", "type": "integer" }, "transferamount": { "description": "转让金额", "type": "number" }, "transferid": { "description": "协议转让ID(332+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "transferprice": { "description": "转让价格", "type": "number" } } }, "models.THJPurchaseTradeDetail_Goodsinfo": { "type": "object", "properties": { "minivalue": { "description": "最小变动值", "type": "integer" }, "minivaluedp": { "description": "最小变动值小数位", "type": "integer" }, "pictureurls": { "description": "详情图片(逗号分隔)", "type": "string" }, "refgoodscode": { "description": "参考商品代码", "type": "string" }, "refgoodsid": { "description": "参考商品ID", "type": "integer" }, "unitid": { "description": "现货商品单位ID", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(自增 SEQ_GOODS 确保不重复)", "type": "integer" }, "wrstandardname": { "description": "现货商品名称(模糊查询)", "type": "string" } } }, "models.THJSigninReq": { "type": "object", "required": [ "userid" ], "properties": { "userid": { "description": "用户ID", "type": "integer" } } }, "models.THJSigninRsp": { "type": "object", "properties": { "signinstatus": { "description": "状态操作标志 1-签到成功 2-当日已签到,不能重复签到", "type": "integer" } } }, "models.THJSpotGoodsPriceLog": { "type": "object", "properties": { "spotgoodsprice": { "description": "现货价格", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" } } }, "models.THJTradeData": { "type": "object", "required": [ "marketid", "userid" ], "properties": { "accountname": { "description": "被推荐人", "type": "string" }, "buytradelot": { "description": "购买笔数", "type": "integer" }, "buytradeqty": { "description": "购买数量", "type": "number" }, "marketid": { "description": "市场ID 采购-64201 供求-65201", "type": "integer" }, "reckondate": { "description": "日照日期(yyyyMMdd)日照日期(yyyyMMdd)", "type": "string" }, "selltradelot": { "description": "销售笔数", "type": "integer" }, "selltradeqty": { "description": "销售数量", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.THJUserLevelInfo": { "type": "object", "properties": { "appup": { "description": "晋升已累计的数量", "type": "integer" }, "checkday": { "description": "最近一次考核日", "type": "string" }, "levelgroup": { "description": "当前等级", "type": "string" }, "nextlevelgroup": { "description": "下一等级", "type": "string" }, "notyet": { "description": "晋升还差多少数量", "type": "integer" }, "progress": { "description": "进度", "type": "number" } } }, "models.THJWrstandard": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "bannerpicurl": { "description": "Banner图(逗号分隔)", "type": "string" }, "convertfactor": { "description": "标仓系数", "type": "number" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "minivalue": { "description": "最小变动值", "type": "integer" }, "minivaluedp": { "description": "最小变动值小数位", "type": "integer" }, "pictureurls": { "description": "详情图片(逗号分隔)", "type": "string" }, "realminivalue": { "description": "实际最小变动值", "type": "integer" }, "realminivaluedp": { "description": "实际最小变动值小数位", "type": "integer" }, "storagefee": { "description": "仓储费(固定: 111)", "type": "number" }, "thumurls": { "description": "缩略图片(1:1)(逗号分隔)", "type": "string" }, "unitid": { "description": "现货商品单位ID", "type": "integer" }, "vatrate": { "description": "现货增值税率", "type": "number" }, "wrsstatus": { "description": "状态 - 作废 - 0:未激活 1:正常", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(自增 SEQ_GOODS 确保不重复)", "type": "integer" }, "wrstandardname": { "description": "现货商品名称(模糊查询)", "type": "string" } } }, "models.THJWrstandardDetailRsp": { "type": "object", "properties": { "deliverymodes": { "description": "交割方式", "type": "array", "items": { "$ref": "#/definitions/models.THJDeliveryMode" } }, "deliverymonth": { "description": "交割月份", "type": "array", "items": { "$ref": "#/definitions/models.THJDeliveryMonth" } }, "goodsinfo": { "description": "商品信息", "$ref": "#/definitions/models.THJWrstandardDetail_GoodsInfo" }, "presaleapplydeposits": { "description": "支付方式", "type": "array", "items": { "$ref": "#/definitions/models.THJPresaleApplyDeposit" } }, "spotgoodspricelogs": { "description": "历史价格走势", "type": "array", "items": { "$ref": "#/definitions/models.THJSpotGoodsPriceLog" } } } }, "models.THJWrstandardDetail_GoodsInfo": { "type": "object", "properties": { "bannerpicurl": { "description": "Banner图(逗号分隔)", "type": "string" }, "pictureurls": { "description": "详情图片(逗号分隔)", "type": "string" }, "spotgoodsprice": { "description": "现货价格", "type": "number" }, "unitid": { "description": "现货商品单位ID", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(自增 SEQ_GOODS 确保不重复)", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "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" }, "curamount": { "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" }, "remainamount": { "description": "融资额(从融资合同中统计)", "type": "number" }, "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" }, "fixed": { "description": "固定类型 - 空 | left | right", "type": "string" }, "formatterstring": { "description": "格式化字符", "type": "string" }, "formattertype": { "description": "格式化类型", "type": "string" }, "groupname": { "description": "表头分组名称", "type": "string" }, "ismerge": { "description": "是否合并显示 - 0:不合并 1:合并", "type": "integer" }, "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.ThjSpotQuote": { "type": "object", "properties": { "spotname": { "description": "现货名称", "type": "string" } } }, "models.Thjinvesotrdeposit": { "type": "object", "properties": { "depositqty": { "description": "可用量", "type": "integer" }, "depositrate": { "description": "定金比例", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.Thjinvestorlevelgroup": { "type": "object", "properties": { "grouplevel": { "description": "分组级别 - 唯一", "type": "integer" }, "groupname": { "description": "分级名称", "type": "string" }, "keepbuyqty": { "description": "保级一级采购总量", "type": "integer" }, "levelgroupid": { "description": "自增ID(SEQ_THJ_INVESTORLEVELGROUP)", "type": "integer" }, "levelonealgorithm": { "description": "一级分润算法(采购) 1:比率 2:固定", "type": "integer" }, "levelonealgorithm2": { "description": "一级分润算法(供求) 1:比率 2:固定", "type": "integer" }, "levelonealgorithm3": { "description": "一级分润算法(转让) 1:比率 2:固定", "type": "integer" }, "levelonevalue": { "description": "一级分润值(采购)", "type": "number" }, "levelonevalue2": { "description": "一级分润值(供求)", "type": "number" }, "levelonevalue3": { "description": "一级分润值(转让)", "type": "number" }, "leveltwoalgorithm": { "description": "二级级分润算法(采购) 1:比率 2:固定", "type": "integer" }, "leveltwovalue": { "description": "二级分润值(采购)", "type": "number" }, "upbuyqty": { "description": "晋级一级采购总量", "type": "integer" }, "updatetime": { "description": "平台更新时间", "type": "string" }, "updatorid": { "description": "更新人", "type": "integer" } } }, "models.Thjpurchasetradedetail": { "type": "object", "required": [ "buyuserid" ], "properties": { "availabletime": { "description": "可用次数", "type": "integer" }, "buyaccountid": { "description": "买方账号ID", "type": "integer" }, "buychargevalue": { "description": "买方到期手续费", "type": "number" }, "buyconfirmremark": { "description": "买方确认备注", "type": "string" }, "buyconfirmtime": { "description": "买方确认时间", "type": "string" }, "buyfreezecharge": { "description": "买方摘牌冻结手续费", "type": "number" }, "buyuserid": { "description": "买方用户ID", "type": "integer" }, "contactinfo": { "description": "联系方式", "type": "string" }, "contactname": { "description": "联系人姓名", "type": "string" }, "contractaddrbuy": { "description": "贸易合同地址(买家)", "type": "string" }, "contractaddrsell": { "description": "贸易合同地址(卖家)", "type": "string" }, "createtime": { "description": "预售挂牌时间", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "depositrate": { "description": "定金比例", "type": "number" }, "desaddress": { "description": "目的地地址", "type": "string" }, "discountamount": { "description": "优惠总金额(优惠金额*TradeQty)", "type": "number" }, "enddate": { "description": "到期日期", "type": "string" }, "enddatemonth": { "description": "交收月份(提货日期)", "type": "string" }, "firstbuyuserid": { "description": "买方用户ID(预售摘牌人)", "type": "integer" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "lastamount": { "description": "到期总货款 = 到期价格 * 摘牌数量", "type": "number" }, "lastprice": { "description": "[实际价]到期价格", "type": "number" }, "lastpricedate": { "description": "到期价格日期 - 暂不使用", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "orderstatus": { "description": "单据状态 - 1:待付尾款 2:支付尾款成功 3:支付尾款失败 4:已违约 5:卖方已确认 6:买方已确认 7:系统自动确认 (枚举:THJOrderStatus)", "type": "integer" }, "payeddeposit": { "description": "[定金]买方已付定金(预付款)", "type": "number" }, "payedtradedate": { "description": "支付尾款成功交易日", "type": "string" }, "pointflag": { "description": "是否已点价", "type": "boolean" }, "pointincome": { "description": "点价总收益", "type": "number" }, "pointprice": { "description": "已点价格", "type": "number" }, "pointtimes": { "description": "点价总次", "type": "integer" }, "presaleapplyid": { "description": "预售申请ID(184+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "presalestatus": { "description": "预留状态 1:未开始 2:进行中 3:已结束 4:已关闭 5:处理中 6::处理失败 7:已完成", "type": "integer" }, "receiptinfo": { "description": "发票信息", "type": "string" }, "remainamount": { "description": "[尾款]剩余货款 = 到期总货款 - 已付定金 - 优惠金额", "type": "number" }, "sellaccountid": { "description": "卖方账号ID", "type": "integer" }, "sellchargevalue": { "description": "卖方到期手续费", "type": "number" }, "sellconfirmattach": { "description": "卖方确认附件", "type": "string" }, "sellconfirmremark": { "description": "卖方确认备注", "type": "string" }, "sellconfirmtime": { "description": "卖方确认时间", "type": "string" }, "sellconfirmtradedate": { "description": "卖方确认交易日", "type": "string" }, "selluserid": { "description": "卖方用户ID", "type": "integer" }, "thjdeliverymode": { "description": "交割方式 - 1:平台仓储 2:自提 3:代办运输 (枚举:THJDeliveryMode)", "type": "integer" }, "thjdeliverymodedisplay": { "description": "提货方式", "type": "string" }, "thjorderstatusdisplay": { "description": "状态", "type": "string" }, "todaypointincome": { "description": "点价总收益", "type": "number" }, "tradeamount": { "description": "摘牌总货款", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "摘牌价格 - 参考价", "type": "number" }, "tradeqty": { "description": "[预售价]摘牌数量", "type": "integer" }, "tradetime": { "description": "摘牌时间(委托时间)", "type": "string" }, "transferprice": { "description": "转让价格 - 购买价", "type": "number" }, "unitid": { "description": "商品单位", "type": "integer" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" }, "wrtradedetailid": { "description": "采购成交单ID(321+Unix秒时间戳(10位)+xxxxxx)", "type": "string" } } }, "models.Thjpurchasetransfer": { "type": "object", "required": [ "ordertype" ], "properties": { "buyaccountid": { "description": "买方账号ID", "type": "integer" }, "buyuserid": { "description": "买方用户ID", "type": "integer" }, "contractaddr": { "description": "协议转让合同地址", "type": "string" }, "createtime": { "description": "转让挂牌时间", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "enddate": { "description": "到期日期", "type": "string" }, "enddatemonth": { "description": "交收月份(提货日期)", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "marketid": { "description": "市场ID(固定为(64202)", "type": "integer" }, "ordertype": { "description": "类型 - 1:转让委托 - 挂牌中(卖方) 2:转让成交(卖方) 3:转让委托 - 已完成(卖方)", "type": "integer" }, "payeddeposit": { "description": "买方已付定金(预付款)", "type": "number" }, "pointflag": { "description": "是否已点价", "type": "boolean" }, "pointincome": { "description": "点价总收益", "type": "number" }, "pointprice": { "description": "已点价格", "type": "number" }, "presaleapplyid": { "description": "预售申请ID(184+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "presalestatus": { "description": "预售状态 1:未开始 2:进行中 3:已结束 4:已关闭 5:处理中 6::处理失败 7:已完成", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "sellaccountid": { "description": "卖方账号ID", "type": "integer" }, "sellcharge": { "description": "卖方手续费值", "type": "number" }, "sellchargealgorithm": { "description": "卖方手续费收取方式 1:比率 2:固定", "type": "integer" }, "sellchargealgorithmvalue": { "description": "手续费设置值(交易所部分)", "type": "number" }, "selluserid": { "description": "卖方用户ID", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "参考价", "type": "number" }, "transferamount": { "description": "转让金额", "type": "number" }, "transferid": { "description": "协议转让ID(332+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "transferprice": { "description": "转让价格", "type": "number" }, "transferqty": { "description": "数量", "type": "integer" }, "transferstatus": { "description": "转让状态 - 1:挂牌中 2:已撤销 3:处理中 4:已转让", "type": "integer" }, "transfertradedate": { "description": "转让交易日", "type": "string" }, "transfertradetime": { "description": "转让成交时间", "type": "string" }, "unitid": { "description": "现货商品单位ID", "type": "integer" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "wrfactortypeid": { "description": "仓单要素类型ID", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" }, "wrtradedetailid": { "description": "采购成交单ID(321+Unix秒时间戳(10位)+xxxxxx)", "type": "string" } } }, "models.ThjpurchasetransferDetail": { "type": "object", "properties": { "buyusername": { "description": "受让人", "type": "string" }, "contactinfo": { "description": "联系方式", "type": "string" }, "contactname": { "description": "联系人姓名", "type": "string" }, "contractaddr": { "description": "协议转让合同地址", "type": "string" }, "contractaddrbuy": { "description": "贸易合同地址(买家)", "type": "string" }, "contractaddrsell": { "description": "贸易合同地址(卖家)", "type": "string" }, "createtime": { "description": "转让委托时间", "type": "string" }, "depositrate": { "description": "定金比例", "type": "number" }, "desaddress": { "description": "目的地地址", "type": "string" }, "enddate": { "description": "到期日期", "type": "string" }, "enddatemonth": { "description": "交收月份(提货日期)", "type": "string" }, "firstbuyuserid": { "description": "预售采购用户ID", "type": "integer" }, "lastprice": { "description": "[实际价]到期价格", "type": "number" }, "payeddeposit": { "description": "买方已付定金(预付款(含定金))", "type": "number" }, "pointflag": { "description": "是否已点价", "type": "boolean" }, "pointincome": { "description": "点价总收益", "type": "number" }, "pointprice": { "description": "已点价格", "type": "number" }, "receiptinfo": { "description": "发票信息", "type": "string" }, "sellusername": { "description": "转让人", "type": "string" }, "thjdeliverymode": { "description": "交割方式 - 1:平台仓储 2:自提 3:代办运输 (枚举:THJDeliveryMode)", "type": "integer" }, "tradeprice": { "description": "预售价格", "type": "number" }, "transferamount": { "description": "转让金额", "type": "number" }, "transferid": { "description": "转让单号", "type": "string" }, "transferprice": { "description": "转让价格", "type": "number" }, "transferqty": { "description": "转让数量", "type": "integer" }, "transferstatus": { "description": "转让状态 - 1:挂牌中 2:已撤销 3:处理中 4:已转让", "type": "integer" }, "transfertradetime": { "description": "转让成交时间", "type": "string" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" }, "wrtradedetailid": { "description": "采购成交单ID(321+Unix秒时间戳(10位)+xxxxxx)", "type": "string" } } }, "models.Thjscoreconfig": { "type": "object", "properties": { "parma1": { "description": "参数1", "type": "integer" }, "parma2": { "description": "参数2", "type": "integer" }, "parma3": { "description": "参数3", "type": "integer" }, "parma4": { "description": "参数4", "type": "integer" }, "parma5": { "description": "参数5", "type": "integer" }, "parma6": { "description": "参数6", "type": "integer" }, "parma7": { "description": "参数6", "type": "integer" }, "scoreconfigtype": { "description": "积分配置类型 - 1:注册送红包 2:签到送积分 3:推广送积分 4:下级用户下单送积分 5:自己采购下单送积分 6:自己供求下单送积分 7:抽奖得红包", "type": "integer" } } }, "models.Thjspotquoteconfig": { "type": "object", "properties": { "autoid": { "description": "自增ID(SEQ_THJ_SPOTQUOTECONFIG)", "type": "integer" }, "relatedid": { "description": "关联新闻ID(Site_ColumnDetail)", "type": "integer" }, "spotmonth": { "description": "现货月份(yyyy-MM)", "type": "string" }, "spotname": { "description": "现货名称", "type": "string" }, "spotprice": { "description": "现货招标价", "type": "string" }, "spotqty": { "description": "现货采购量", "type": "string" }, "spotsrc": { "description": "现货来源", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.TjmdHolderDetailTradeInfo": { "type": "object", "properties": { "agreeunit": { "description": "合约乘数", "type": "number" }, "buyaccountid": { "description": "买方账户", "type": "string" }, "buyusername": { "description": "买方", "type": "string" }, "delistingdate": { "description": "最后结算日", "type": "string" }, "expiredate": { "description": "到期结算价定价日", "type": "string" }, "exprieprice": { "description": "到期清算价格", "type": "string" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称(交易标的)", "type": "string" }, "lasttradedate": { "description": "最后交易日", "type": "string" }, "listingdate": { "description": "开始交易日", "type": "string" }, "openprice": { "description": "成交价", "type": "number" }, "openqty": { "description": "交易数量", "type": "integer" }, "sellaccountid": { "description": "卖方账户", "type": "string" }, "sellusername": { "description": "卖方", "type": "string" }, "tradeamount": { "description": "初始名义价值", "type": "number" }, "tradedate": { "description": "成交日期", "type": "string" }, "tradeid": { "description": "成交编号", "type": "string" } } }, "models.TjmdMarketSection": { "type": "object", "properties": { "marketsectionid": { "description": "市场版块ID(SEQ_MARKETSECTION)", "type": "integer" }, "marketsectionname": { "description": "市场版块名称", "type": "string" }, "mlist": { "description": "市场列表(板块下面有多少个市场)", "type": "array", "items": { "$ref": "#/definitions/models.TjmdMarketSectionConfig" } }, "orderindex": { "description": "排序", "type": "integer" }, "pictureurl": { "description": "图片url, 规格(90*90)", "type": "string" }, "remark": { "description": "备注", "type": "string" } } }, "models.TjmdMarketSectionConfig": { "type": "object", "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" }, "financemarketid": { "description": "融资回购市场ID [仓单贸易]", "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" }, "isupdatereckonprice": { "description": "输入结算价标识 - 0:系统生成 1:手工输入(自动) 2:手工输入(手动)", "type": "integer" }, "listingmode": { "description": "挂牌方式 1:一口价 2:浮动价 3:贸易圈 4:协议指定", "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" }, "marketsectionid": { "description": "市场版块ID(SEQ_MARKETSECTION)", "type": "integer" }, "marketserviceid": { "description": "市场服务ID", "type": "integer" }, "marketstatus": { "description": "生效状态(ValidStatus枚举): 1:待生效 2:正常 3:注销", "type": "integer" }, "markettype": { "description": "市场类型- 1:非交易服务 2:交易服务", "type": "integer" }, "matchermode": { "description": "指定对手模式[仓单贸易模式专用] - 1:任意对手 - 作废", "type": "integer" }, "nowrquotaflag": { "description": "是否校验无仓单额度(仓单贸易) 0:否 1:是", "type": "integer" }, "openmethod": { "description": "开盘模式 - 0 自动 1手动", "type": "integer" }, "orderindex": { "description": "排序", "type": "integer" }, "otcuserid": { "description": "场外期权做市商[场外期权]", "type": "integer" }, "outersynctime": { "description": "外部同步时间点(h24:mi:ss)[场外期权]", "type": "string" }, "paylaterflag": { "description": "是否支持后付 - 0:不支持 1;支持 - [挂牌点选 所有权、预售挂牌支持]", "type": "integer" }, "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" }, "updatereckonpriceinterval": { "description": "输入结算价时长(分钟) [1:手工输入(自动)]", "type": "integer" } } }, "models.TjmdQuoteGoods": { "type": "object", "properties": { "buyqty": { "description": "买量(暂不做, 无值, 保留字段)", "type": "number" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "goodscode": { "description": "合约代码", "type": "string" }, "goodsgroupid": { "description": "商品组ID(自增ID)", "type": "integer" }, "goodsgroupname": { "description": "商品组名称", "type": "string" }, "goodsid": { "description": "合约id", "type": "integer" }, "goodsname": { "description": "合约名称", "type": "string" }, "refgoodscode": { "description": "标的合约代码", "type": "string" }, "refgoodsid": { "description": "标的合约id", "type": "integer" }, "refgoodsname": { "description": "标的合约名称", "type": "string" }, "sellqty": { "description": "卖量(暂不做, 无值, 保留字段)", "type": "number" } } }, "models.TjmdTodayAccountMargin": { "type": "object", "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "goodsid": { "description": "商品ID", "type": "integer" }, "infoc": { "description": "配置参数", "$ref": "#/definitions/pb.GoodsMarginCfgStruct" }, "marketid": { "description": "市场ID", "type": "integer" } } }, "models.TjmdTradeOrderDetail": { "type": "object", "properties": { "buyorsell": { "description": "买卖方向 0-买 1-卖", "type": "integer" }, "goodsid": { "description": "商品id", "type": "integer" }, "marketmaxsub": { "description": "市价最大偏移范围 [浮动价 - 点差]", "type": "number" }, "memberuserid": { "description": "所属会员ID", "type": "integer" }, "orderid": { "description": "委托单号", "type": "string" }, "orderprice": { "description": "期初均价", "type": "number" }, "orderqty": { "description": "委托数量", "type": "integer" }, "pricemode": { "description": "取价方式 - 1:市价 2: 限价 3:浮动价", "type": "integer" }, "userid": { "description": "用户id", "type": "integer" }, "username": { "description": "用户名称(已脱敏)", "type": "string" } } }, "models.TjmdTransferApply": { "type": "object", "properties": { "applyid": { "description": "申请ID(自增ID SEQ_TRADE_HOLDTRANSFERAPPLY)", "type": "integer" }, "applystatus": { "description": "状态 - 0:未提交 1:待审核 2:审核中 3:审核通过 4:审核拒绝 5:审核失败 6:已撤销", "type": "integer" }, "applytime": { "description": "申请时间(时间)", "type": "string" }, "auditremark": { "description": "审核备注(拒绝原因?)", "type": "string" }, "begindate": { "description": "开始交易日(yyyymmdd)", "type": "string" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "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" }, "qty": { "description": "期初均价", "type": "number" }, "tradeid": { "description": "成交单号(关联持仓)", "type": "string" }, "transferamount": { "description": "转让总金额(金额)", "type": "number" }, "transferprice": { "description": "转让价格(协议价格)", "type": "number" } } }, "models.Todayaccountmargin": { "type": "object", "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "createdate": { "description": "创建时间", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "infocontent": { "description": "保证金信息(存储配置的Protobuffer串)", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" } } }, "models.Todayaccounttradefee": { "type": "object", "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "createdate": { "description": "创建时间", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "infocontent": { "description": "交易费用信息(存储配置的Protobuffer串)", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "tradetype": { "description": "交易类型 - 1:投资者\\自营 2:做市", "type": "integer" } } }, "models.Todayaccounttraderule": { "type": "object", "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "createdate": { "description": "创建时间", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "infocontent": { "description": "交易规则信息(存储配置的Protobuffer串)", "type": "string" }, "marketid": { "description": "市场ID", "type": "integer" }, "tradetype": { "description": "交易类型 - 1:投资者\\自营 2:做市", "type": "integer" } } }, "models.TouristGoods": { "type": "object", "required": [ "goodscode", "goodsid", "goodsname", "marketid" ], "properties": { "agreeunit": { "description": "合约单位", "type": "number" }, "areauserid": { "description": "所属机构", "type": "integer" }, "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" }, "isvisible": { "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" }, "pictureurl": { "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" }, "trademode": { "description": "交易模式 - 10:做市 13:竞价 15:通道交易 16:挂牌点选 17:仓单贸易 18:期权 19:竞拍-降价式 20:竞拍-竞价式 21:竞拍-大宗式 22:受托竞价", "type": "integer" } } }, "models.TradeCloseDetail": { "type": "object", "required": [ "accountid" ], "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "closeid": { "description": "平仓明细ID(104+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "integer" }, "closenum": { "description": "平仓数量(带单位)", "type": "string" }, "closepl": { "description": "平仓盈亏 - 按持仓价计算", "type": "number" }, "closeprice": { "description": "平仓价格", "type": "number" }, "closeqty": { "description": "平仓数量", "type": "integer" }, "closetime": { "description": "平仓时间", "type": "string" }, "goodsfullname": { "description": "商品名称", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "holderprice": { "description": "持仓价格", "type": "number" }, "isconfirmexercise": { "description": "是否确认行权- 0:否 1:是", "type": "integer" }, "ispreexercise": { "description": "是否预申报- 0:否 1:是", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "opennum": { "description": "开仓数量(带单位)", "type": "string" }, "openprice": { "description": "建仓价格", "type": "number" }, "opentradedate": { "description": "建仓成交单交易日", "type": "string" }, "opentradeid": { "description": "关联建仓成交单号", "type": "integer" }, "optiontype": { "description": "期权类型 - 1:认购(看涨) 2:认沽(看跌)", "type": "integer" }, "preexerciseprice": { "description": "预申报价格", "type": "number" }, "premium": { "description": "权利金 - [持仓单的权利金]", "type": "number" }, "releasecredit": { "description": "释放授信金额", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "成交单号", "type": "integer" }, "tradeproperty": { "description": "交易属性", "type": "integer" } } }, "models.TradeHolderDetail": { "type": "object", "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "agreeunit": { "description": "合约乘数", "type": "number" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "currencyid": { "description": "商品币种id", "type": "integer" }, "currencyname": { "description": "币种名称", "type": "string" }, "decimalplace": { "description": "商品价格小数位", "type": "integer" }, "enumdicname": { "description": "商品单位名称", "type": "string" }, "expirecycle": { "description": "行权周期(天) - 1:滚动行权时填写", "type": "integer" }, "expiredate": { "description": "行权日(yyyyMMdd) - 到期日", "type": "string" }, "expiretype": { "description": "行权日类型 - 1:滚动行权 2:固定日行权", "type": "integer" }, "freezeqty": { "description": "期初均价", "type": "number" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunitid": { "description": "商品单位id", "type": "integer" }, "holderamount": { "description": "持仓金额", "type": "number" }, "holdercredit": { "description": "持仓授信金额", "type": "number" }, "holderdays": { "description": "剩余冻结天数", "type": "integer" }, "holderprice": { "description": "持仓价格", "type": "number" }, "holderqty": { "description": "期初均价", "type": "number" }, "isconfirmexercise": { "description": "是否确认行权- 0:否 1:是", "type": "integer" }, "ispreexercise": { "description": "是否预申报- 0:否 1:是 2:不可行权", "type": "integer" }, "marketid": { "description": "市场id", "type": "integer" }, "marketname": { "description": "市场名称", "type": "string" }, "openprice": { "description": "建仓价格", "type": "number" }, "openqty": { "description": "期初均价", "type": "number" }, "optiontype": { "description": "期权类型 - 1:认购(看涨) 2:认沽(看跌)", "type": "integer" }, "preexerciseprice": { "description": "预申报价格", "type": "number" }, "premium": { "description": "权利金", "type": "number" }, "qtydecimalplace": { "description": "商品成交量小数位", "type": "integer" }, "refgoodscode": { "description": "标的合约代码", "type": "string" }, "refgoodsid": { "description": "标的合约id", "type": "integer" }, "releaseamount": { "description": "释放持仓金额", "type": "number" }, "releaseholdercredit": { "description": "释放持仓授信金额", "type": "number" }, "taname": { "description": "资金账号名称", "type": "string" }, "tradeamount": { "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:受托竞价 46:掉期", "type": "integer" }, "tradeproperty": { "description": "交易属性", "type": "integer" }, "tradetime": { "description": "交易时间", "type": "string" }, "userid": { "description": "用户id", "type": "integer" }, "username": { "description": "用户名称", "type": "string" } } }, "models.TradeHolderDetailEx": { "type": "object", "properties": { "accountID": { "description": "账号ID", "type": "integer" }, "buyOrSell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "callAteFee": { "description": "已计滞纳金", "type": "number" }, "closePL": { "description": "平仓盈亏", "type": "number" }, "cutDepositRate": { "description": "斩仓定金率", "type": "number" }, "cutPrice": { "description": "斩仓价格", "type": "number" }, "deliveryQty": { "description": "交收手数(已交收)", "type": "integer" }, "depositRate": { "description": "订单定金率", "type": "number" }, "floatPL": { "description": "浮动盈亏", "type": "number" }, "freezeQty": { "description": "冻结数量", "type": "integer" }, "goodsID": { "description": "商品ID", "type": "integer" }, "holdDays": { "description": "持仓天数", "type": "integer" }, "holderAmount": { "description": "持仓金额", "type": "number" }, "holderPrice": { "description": "持仓价格", "type": "number" }, "holderQty": { "description": "持仓数量", "type": "integer" }, "lateFeeAlgorithm": { "description": "滞纳金收取方式 1:比率 2:固定", "type": "integer" }, "lateFeeDays": { "description": "滞纳金起计天数", "type": "integer" }, "lateFeeValue": { "description": "滞纳金收取值", "type": "number" }, "marketID": { "description": "市场ID", "type": "integer" }, "matchAccountID": { "description": "对手账号ID", "type": "integer" }, "matchUserID": { "description": "对手用户ID", "type": "integer" }, "openPrice": { "description": "建仓价格", "type": "number" }, "openQty": { "description": "建仓数量", "type": "integer" }, "payedDeposit": { "description": "已付定金", "type": "number" }, "promptDepositRate": { "description": "提示定金率", "type": "number" }, "promptPrice": { "description": "提示价格", "type": "number" }, "refundableDeposit": { "description": "可退定金", "type": "number" }, "restockDeposit": { "description": "补充定金", "type": "number" }, "tradeAmount": { "description": "成交金额", "type": "number" }, "tradeDate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeID": { "description": "成交单号(101+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string", "example": "0" }, "tradeTime": { "description": "交易时间", "type": "string" }, "userID": { "description": "用户ID", "type": "integer" } } }, "models.Tradeholderdetailex": { "type": "object", "required": [ "accountid" ], "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "agreeunit": { "description": "期货合约乘数", "type": "number" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "callatefee": { "description": "已计滞纳金", "type": "number" }, "closepl": { "description": "平仓盈亏", "type": "number" }, "cutdepositrate": { "description": "斩仓定金率", "type": "number" }, "cutprice": { "description": "斩仓价格", "type": "number" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "deliveryqty": { "description": "交收手数(已交收)", "type": "integer" }, "depositrate": { "description": "订单定金率", "type": "number" }, "floatpl": { "description": "浮动盈亏", "type": "number" }, "freezeqty": { "description": "冻结数量", "type": "integer" }, "goodscode": { "description": "期货合约代码(内部)", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "期货合约名称", "type": "string" }, "goodunitid": { "description": "报价单位ID", "type": "integer" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "holddays": { "description": "持仓天数", "type": "integer" }, "holderamount": { "description": "持仓金额", "type": "number" }, "holderprice": { "description": "持仓价格", "type": "number" }, "holderqty": { "description": "持仓数量", "type": "integer" }, "latefeealgorithm": { "description": "滞纳金收取方式 1:比率 2:固定", "type": "integer" }, "latefeedays": { "description": "滞纳金起计天数", "type": "integer" }, "latefeevalue": { "description": "滞纳金收取值", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "matchaccountid": { "description": "对手账号ID", "type": "integer" }, "matchuserid": { "description": "对手用户ID", "type": "integer" }, "openprice": { "description": "建仓价格", "type": "number" }, "openqty": { "description": "建仓数量", "type": "integer" }, "payeddeposit": { "description": "已付定金", "type": "number" }, "payedlatefee": { "description": "已付滞纳金", "type": "number" }, "promptdepositrate": { "description": "提示定金率", "type": "number" }, "promptprice": { "description": "提示价格", "type": "number" }, "refundabledeposit": { "description": "可退定金", "type": "number" }, "restockdeposit": { "description": "补充定金", "type": "number" }, "tradeamount": { "description": "成交金额", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeid": { "description": "成交单号(101+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)", "type": "string" }, "tradetime": { "description": "交易时间", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.Unlinkermcphedgeplan": { "type": "object", "required": [ "areauserid" ], "properties": { "accountid": { "description": "期货账户ID - 作废", "type": "integer" }, "accountname": { "description": "交易用户", "type": "string" }, "applyid": { "description": "申请人", "type": "integer" }, "applysrc": { "description": "申请来源 - 1:管理端 2:终端", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "areauserid": { "description": "[企业ID]机构ID", "type": "integer" }, "auditid": { "description": "审核人", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "audittradedate": { "description": "审核交易日(yyyyMMdd)", "type": "string" }, "biztype": { "description": "业务类型 - 1:套保", "type": "integer" }, "contracttype": { "description": "计划类型 - 1:采购 -1:销售", "type": "integer" }, "convertfactor": { "description": "标仓系数 - 作废", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "currencyid": { "description": "结算币种ID - 作废", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "enumdicname": { "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" }, "isrelated": { "description": "是否已关联计划项目 - 0:否 1:是", "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" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeuserid": { "description": "交易用户ID", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品,模糊查询", "type": "string" } } }, "models.UserCollectConfig": { "type": "object", "properties": { "accountstatus": { "description": "账户状态 - 1:正常 2:停用 3:注销", "type": "integer" }, "collectaccountname": { "description": "收款人账户名称", "type": "string" }, "collectaccountno": { "description": "收款人账户", "type": "string" }, "collectbankname": { "description": "收款人开户行", "type": "string" }, "collectbranchbankname": { "description": "收款人开户支行", "type": "string" }, "collectconfigid": { "description": "收款账户配置ID(SEQ_USERCOLLECTCONFIG)", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "userid": { "description": "收款人用户ID", "type": "integer" } } }, "models.UserReceiveInfo": { "type": "object", "properties": { "address": { "description": "提货人详细地址", "type": "string" }, "autoid": { "description": "AutoID", "type": "integer" }, "cardnum": { "description": "证件号码(加密存储)", "type": "string" }, "cardtypeid": { "description": "证件类型", "type": "integer" }, "cityid": { "description": "市", "type": "integer" }, "cityname": { "description": "城市名称", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "countryname": { "description": "国家名称", "type": "string" }, "districtid": { "description": "地区", "type": "integer" }, "districtname": { "description": "地区名称", "type": "string" }, "hasencrypt": { "description": "数据是否已加密 - 0:未加密 1:已加密", "type": "integer" }, "isdefault": { "description": "是否默认地址 - 0:否 1:是", "type": "integer" }, "phonenum": { "description": "提货人联系方式(加密存储)", "type": "string" }, "provinceid": { "description": "省", "type": "integer" }, "provincename": { "description": "省名称", "type": "string" }, "receivername": { "description": "提货人姓名", "type": "string" }, "takeremark": { "description": "提货备注", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } }, "models.Useraccount": { "type": "object", "required": [ "userid" ], "properties": { "accountname": { "description": "账户名称(机构名称)", "type": "string" }, "accountstatus": { "description": "账户状态 - 1:待激活 2:待审核 3:待复审 4:正常 5:审核拒绝 6:停用(注销) 7:注销(删除)", "type": "integer" }, "applysrc": { "description": "申请来源 - 1:管理端 2:终端", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "audituserid": { "description": "审核人", "type": "integer" }, "broker": { "description": "所属经纪人ID", "type": "integer" }, "canceltime": { "description": "销户时间", "type": "string" }, "canceluserid": { "description": "销户人", "type": "integer" }, "canrecommend": { "description": "是否可推荐 - 0:不可 1;可", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "curscore": { "description": "积分", "type": "integer" }, "hasauth": { "description": "是否已实名认证 - 0:未认证 1:已认证 2:已提交(待审核) 3:已拒绝", "type": "integer" }, "isanonymous": { "description": "是否匿名下单 - 0:否 1:是", "type": "integer" }, "issigned": { "description": "今日是否已签到", "type": "boolean" }, "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" }, "parenttopuser": { "description": "上级顶级机构 [092=0,1时,默认为1, 092=2时若自已为顶级,则填入自己,自己不为顶级,填入ParentUserID的\"ParentTopUser\"]", "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" }, "rootuserid": { "description": "根用户ID", "type": "integer" }, "subaccountlevel": { "description": "子账户层数", "type": "integer" }, "subarealevelpath": { "description": "子机构层级路径(逗号分隔,首尾加逗号)", "type": "string" }, "todayrefercount": { "description": "今日推荐人数", "type": "integer" }, "userid": { "description": "用户ID", "type": "integer" }, "usertype": { "description": "账户类型 - 1:交易所 2:机构 3:会员子机构 4:经纪人 5:投资者 6:客户 7:企业成员(云平台)", "type": "integer" } } }, "models.Useresignrecord": { "type": "object", "properties": { "areauserid": { "description": "服务商ID - 麦顿", "type": "integer" }, "authinfo": { "description": "认证信息", "type": "string" }, "contractfileaddr": { "description": "合同签署文件地址", "type": "string" }, "contractno": { "description": "合同编号", "type": "string" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "orderindex": { "description": "显示顺序", "type": "integer" }, "partakey": { "description": "甲方Key(逗号分隔)", "type": "string" }, "partbkey": { "description": "乙方Key(逗号分隔)", "type": "string" }, "recordid": { "description": "记录ID(SEQ_USERESIGNRECORD)", "type": "integer" }, "recordstatus": { "description": "记录状态 - 1:未签署 2:签署中 3:已签署 4:签署拒绝", "type": "integer" }, "signremark": { "description": "签署备注", "type": "string" }, "signurl": { "description": "合同签署URL(三方URL)", "type": "string" }, "templateconfigid": { "description": "模板配置ID", "type": "integer" }, "templatename": { "description": "模板名称", "type": "string" }, "templateno": { "description": "模板编号(电子签类型对应的模板编号)", "type": "string" }, "templatetype": { "description": "模板类型 - 1:实名认证 2:开户协议 3:日结算单", "type": "integer" }, "tradedate": { "description": "交易日", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" }, "userid": { "description": "用户ID", "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" }, "bankbankname": { "description": "银行名称(bankid关联查询的name)", "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" }, "city": { "description": "市", "type": "string" }, "cityid": { "description": "市ID", "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" }, "district": { "description": "地区", "type": "string" }, "districtid": { "description": "地区ID", "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" }, "province": { "description": "省", "type": "string" }, "provinceid": { "description": "省ID", "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.WRPositionReport": { "type": "object", "properties": { "accountid": { "description": "帐户ID", "type": "integer" }, "brandid": { "description": "品牌ID(1交割品种升贴水参数表 AutoID) - 作废", "type": "integer" }, "buylistinglot": { "description": "买挂牌宗数", "type": "integer" }, "buytradeamount": { "description": "购买金额", "type": "number" }, "buytradelot": { "description": "购买宗数", "type": "integer" }, "buytradeqty": { "description": "购买数量", "type": "number" }, "creditcurqty": { "description": "授信当前数量", "type": "integer" }, "creditfreezeqty": { "description": "授信冻结数量", "type": "integer" }, "credittotalqty": { "description": "授信总数量", "type": "integer" }, "credittradeqty": { "description": "授信成交数量", "type": "integer" }, "decreaseqty": { "description": "今日减少数量", "type": "integer" }, "deliverygoodsid": { "description": "交割商品ID", "type": "integer" }, "deliverymonthid": { "description": "月份ID(1交割品种升贴水参数表 AutoID) - 作废", "type": "integer" }, "freezeqty": { "description": "总冻结数量", "type": "integer" }, "increaseqty": { "description": "今日增加数量", "type": "integer" }, "marketvalue": { "description": "市值", "type": "number" }, "pickupqty": { "description": "今日提货数量", "type": "integer" }, "qualityid": { "description": "品质ID(1交割品种升贴水参数表 AutoID) - 作废", "type": "integer" }, "reckondate": { "description": "日照时期(yyyyMMdd)", "type": "string" }, "relatedqty": { "description": "关联数量", "type": "integer" }, "selllistingamount": { "description": "卖挂牌金额", "type": "number" }, "selllistinglot": { "description": "卖挂牌宗数", "type": "integer" }, "selllistingqty": { "description": "卖挂牌数量", "type": "number" }, "selltradeamount": { "description": "销售金额", "type": "number" }, "selltradelot": { "description": "销售宗数", "type": "integer" }, "selltradeqty": { "description": "销售数量", "type": "number" }, "specid": { "description": "规格ID(1交割品种升贴水参数表 AutoID) - 作废", "type": "integer" }, "totalprice": { "description": "销售金额(¥)", "type": "number" }, "totalqty": { "description": "总数量", "type": "integer" }, "totalweight": { "description": "销售重量(ct)", "type": "number" }, "tradewrqty": { "description": "订单仓单头寸总数量", "type": "integer" }, "transfertradewrqty": { "description": "今日转订单数量", "type": "integer" }, "warehouseid": { "description": "仓库ID(1交割品种升贴水参数表 AutoID) - 作废", "type": "integer" }, "wrfactortypeid": { "description": "仓单要素类型ID", "type": "integer" }, "wrpositionid": { "description": "仓单头寸ID(201+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wruserid": { "description": "持有人ID", "type": "integer" }, "zscategory": { "description": "商品分类", "type": "integer" }, "zscategorydisplay": { "type": "string" }, "zscurrencytype": { "description": "商品币种", "type": "integer" }, "zscurrencytypedisplay": { "type": "string" }, "zscurrencytypedisplayunit": { "type": "string" } } }, "models.WRSConverTDetail": { "type": "object", "properties": { "convertratio": { "description": "套保系数", "type": "number" }, "deliverygoodscode": { "description": "现货商品代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "deliverygoodsname": { "description": "现货商品名称", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodsunitid": { "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": { "areauserid": { "description": "所属机构", "type": "integer" }, "convertfactor": { "description": "标仓系数", "type": "number" }, "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" }, "remark": { "description": "备注", "type": "string" }, "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.WRTradeBargainApply": { "type": "object", "properties": { "accountid": { "description": "摘牌资金账号", "type": "integer" }, "applyprice": { "description": "申请价格(议价价格)", "type": "string" }, "applyqty": { "description": "摘牌数量(议价数量)", "type": "number" }, "applyremark": { "description": "申请备注", "type": "string" }, "applystatus": { "description": "申请状态(议价状态) - 1:待确认 2:已确认 3:已拒绝 4:已撤销 5:系统撤销 6:处理失败 7:确认中", "type": "integer" }, "applytime": { "description": "申请时间(议价时间)", "type": "string" }, "begindate": { "description": "开始交易日(yyyymmdd)", "type": "string" }, "buyorsell": { "description": "买卖(挂牌类型) - 0:买 1:卖", "type": "integer" }, "confirmremark": { "description": "确认备注", "type": "string" }, "confirmtime": { "description": "确认时间", "type": "string" }, "confirmuserid": { "description": "确认人", "type": "integer" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "deliverymonth": { "description": "交收月", "type": "string" }, "enddate": { "description": "结束交易日(yyyymmdd)", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "fixedprice": { "description": "期初均价", "type": "number" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "marginvalue": { "description": "期初均价", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "matchaccountid": { "description": "挂牌方资金账号", "type": "integer" }, "matchuserid": { "description": "挂牌方用户id", "type": "integer" }, "matchusername": { "description": "挂牌方用户名称(已脱敏)", "type": "string" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "optioncompare": { "description": "选择项比较串【{选择项ID}+{冒号}+选择项值 } ,逗号分隔,头尾加逗号】-- 所有选择项拼接,用于比较", "type": "string" }, "orderqty": { "description": "挂牌数量", "type": "integer" }, "refprice": { "description": "参考价格", "type": "string" }, "retcode": { "description": "委托返回代码", "type": "integer" }, "templatename": { "description": "履约方式(履约模板名称)", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "摘牌人用户ID(议价人ID)", "type": "integer" }, "username": { "description": "议价人名字(已脱敏)", "type": "string" }, "validtime": { "description": "有效期限", "type": "string" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrbargainid": { "description": "议价申请单ID(327+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrfactortypename": { "description": "仓单要素类型名称(选择项要素的名称合并显示,逗号分隔)", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" }, "wrtradeorderid": { "description": "关联委托单ID", "type": "string" }, "wrtypename": { "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" } } }, "models.WrAverageTradePrice": { "type": "object", "properties": { "averageprice": { "description": "期初均价", "type": "number" }, "tradedate": { "description": "交易日yyyymm", "type": "string" } } }, "models.WrBrandAndYears": { "type": "object", "properties": { "brandlst": { "description": "品牌列表", "type": "array", "items": { "$ref": "#/definitions/models.DgFactoryItem" } }, "yearslst": { "description": "年份列表", "type": "array", "items": { "$ref": "#/definitions/models.DgFactoryItem" } } } }, "models.WrBsGoodsInfo": { "type": "object", "properties": { "buyorsell": { "description": "买卖方向 0-买 1-卖", "type": "integer" }, "goodsid": { "description": "交易合约ID", "type": "integer" }, "lstitem": { "description": "商品信息项", "type": "array", "items": { "$ref": "#/definitions/models.WrTypeItem" } }, "lststep": { "description": "履约规则", "type": "array", "items": { "$ref": "#/definitions/models.WrGoodsPerformanceStep" } } } }, "models.WrBuybackDetail": { "type": "object", "properties": { "buybackamount": { "description": "回购金额", "type": "number" }, "buybackqty": { "description": "回购数量", "type": "number" }, "buybackreleasemargin": { "description": "回购释放保证金", "type": "number" }, "buybacktime": { "description": "回购时间", "type": "string" }, "errordesc": { "description": "错误描述", "type": "string" }, "handlestatus": { "description": "处理 - 1:待处理 2:处理成功 3:处理失败", "type": "integer" }, "relatedwrid": { "description": "关联仓单ID", "type": "integer" }, "scfcontractid": { "description": "SCF合同ID", "type": "string" }, "scfwrbuybackid": { "description": "SCF仓单回购明细ID(312+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" } } }, "models.WrClientAdSpaceConfig": { "type": "object", "properties": { "adspaceid": { "description": "广告位ID", "type": "integer" }, "adspacename": { "description": "广告位名称", "type": "string" }, "adspacetype": { "description": "广告位类型 - 1:固定广告位", "type": "integer" }, "areauserid": { "description": "所属机构ID", "type": "integer" }, "createdate": { "description": "创建时间", "type": "string" }, "imagepath": { "description": "图片", "type": "string" }, "modifierid": { "description": "操作人", "type": "integer" }, "recsize": { "description": "推荐尺寸", "type": "string" }, "title": { "description": "标题", "type": "string" }, "updatedate": { "description": "更新时间", "type": "string" }, "urlcontent": { "description": "链接(地址\\商品ID\\功能菜单Key\\appid)", "type": "string" }, "urltype": { "description": "链接类型 - 0:无 1:直接地址 2:商品ID 3:图片详情 4:App功能 5:微信小程序", "type": "integer" } } }, "models.WrDeliveryAvalidHoldLB": { "type": "object", "properties": { "accountid": { "description": "资金账号", "type": "integer" }, "avalidqty": { "description": "数量(可点选数量)", "type": "number" }, "deliverygoodsid": { "description": "品种id", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodsid": { "description": "x合约商品id", "type": "integer" }, "ladingbillid": { "description": "提单id", "type": "string" }, "pgoodscode": { "description": "p商品代码(点价合约)", "type": "string" }, "pgoodsid": { "description": "p商品id(点价合约)", "type": "integer" }, "pgoodsname": { "description": "p商品名称(点价合约)", "type": "string" }, "pricemove": { "description": "升贴水", "type": "number" }, "subnum": { "description": "提单子id", "type": "integer" }, "userid": { "description": "用户id", "type": "integer" }, "username": { "description": "仓单持有人", "type": "string" }, "warehousecode": { "description": "仓库代码", "type": "string" }, "warehouseid": { "description": "仓库id", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素id", "type": "string" }, "wrstandardcode": { "description": "品代码", "type": "string" }, "wrstandardid": { "description": "品类d", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" }, "wrtypename": { "description": "商品", "type": "string" }, "xgoodscode": { "description": "x合约代码", "type": "string" }, "xgoodsname": { "description": "x合约名称", "type": "string" } } }, "models.WrDeliveryDetail": { "type": "object", "properties": { "accountid": { "description": "账号ID", "type": "integer" }, "averageprice": { "description": "期初均价", "type": "number" }, "begindate": { "description": "开始交易日(yyyymmdd)", "type": "string" }, "buyorsell": { "description": "方向 - 0:买 1:卖", "type": "integer" }, "deliveryamount": { "description": "货款金额(X总货款+P总货款)", "type": "number" }, "deliveryid": { "description": "交割单号(121+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "deliveryorderid": { "description": "申报单号", "type": "string" }, "deliverypricemove": { "description": "升贴水(升贴水总额)", "type": "number" }, "deliveryqty": { "description": "交收数量(点选数量)", "type": "number" }, "deliverystatus": { "description": "状态 - 1:待成交 2:已成交 3:成交失败 4:履约完成", "type": "integer" }, "deliverytime": { "description": "交割时间", "type": "string" }, "deliverytotalamount": { "description": "交收金额", "type": "number" }, "enddate": { "description": "结束交易日(yyyymmdd)", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "matchaccountid": { "description": "对手账号ID", "type": "integer" }, "matchusername": { "description": "对手方名称(仓单持有人)", "type": "string" }, "p1goodsremainamount": { "description": "点价货款 ps:当PPRICEMODE=2时, 界面需显示\"-\"", "type": "number" }, "pdeliverycloseqty": { "description": "p合约平仓数量", "type": "number" }, "pdeliveryprice": { "description": "点价价格 ps:当PPRICEMODE=2时, 界面需显示\"-\"", "type": "number" }, "pgoodscode": { "description": "商品代码", "type": "string" }, "pgoodsid": { "description": "p点选合约id", "type": "integer" }, "pgoodsname": { "description": "商品名称", "type": "string" }, "ppricemode": { "description": "点价价格方式 - 1:商品价 2:固定值", "type": "integer" }, "remaintotalamount": { "description": "实际剩余总货款 = (X、P剩余总货款 + 升贴水总额) * (实际成交数量/交割数量)", "type": "number" }, "tradedate": { "description": "交易日(yyyymmdd)", "type": "string" }, "userid": { "description": "用户id", "type": "integer" }, "username": { "description": "用户名称", "type": "string" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID", "type": "string" }, "wrtypename": { "description": "商品", "type": "string" }, "xdeliverycloseqty": { "description": "合约数量", "type": "number" }, "xdeliveryprice": { "description": "交易合约交割价", "type": "number" }, "xgoodsamount": { "description": "期初均价", "type": "number" }, "xgoodscode": { "description": "商品代码", "type": "string" }, "xgoodsid": { "description": "x交易合约ID", "type": "integer" }, "xgoodsname": { "description": "商品名称", "type": "string" }, "xgoodsremainamount": { "description": "X剩余总货款", "type": "number" } } }, "models.WrDeliveryGoodsSection": { "type": "object", "properties": { "dglst": { "description": "板块商品列表", "type": "array", "items": { "$ref": "#/definitions/models.WrDeliveryGoodsSectionConfig" } }, "imagepath": { "description": "图片地址", "type": "string" }, "orderindex": { "description": "排序", "type": "integer" }, "sectionid": { "description": "版块ID (SEQ_DELIVERYGOODSSECTION) - 自增100开始, 前面ID预留给SectionType = 1的版块1 - 云融指数", "type": "integer" }, "sectionname": { "description": "版块名称", "type": "string" }, "sectiontype": { "description": "版块类型 - 1:指数版块 2:普通版块", "type": "integer" } } }, "models.WrDeliveryGoodsSectionConfig": { "type": "object", "properties": { "deliverygoodscode": { "description": "现货商品代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID(SEQ_DELIVERYGOODS)", "type": "integer" }, "deliverygoodsname": { "description": "现货商品名称", "type": "string" }, "orderindex": { "description": "排序", "type": "integer" } } }, "models.WrDraftUserInfo": { "type": "object", "properties": { "address": { "description": "地址", "type": "string" }, "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" }, "bankaccount": { "description": "银行帐号 (加密存储)", "type": "string" }, "bankaccountname": { "description": "收款人名称", "type": "string" }, "bankcardfrontphotourl": { "description": "银行卡正面照地址", "type": "string" }, "bankid": { "description": "银行编码", "type": "string" }, "bankname": { "description": "银行名称", "type": "string" }, "birthday": { "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" }, "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" }, "contactcardbackphotourl": { "description": "联系人证件背面图片地址", "type": "string" }, "contactcardfrontphotourl": { "description": "联系人证件正面图片地址", "type": "string" }, "contactname": { "description": "联系人", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "creditquota": { "description": "授信额度(金瑞)", "type": "number" }, "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\t:网上开户注册(会员官网) 3:微信开户 4:网页交易端注册 5:安卓手机端注册 6:苹果手机端注册 7:PC交易端注册", "type": "integer" }, "otherurl": { "description": "其它图片地址[使用分号分隔]", "type": "string" }, "postalcode": { "description": "邮政编码", "type": "string" }, "provinceid": { "description": "省", "type": "integer" }, "proxystatementurl": { "description": "授权委托书", "type": "string" }, "qq": { "description": "QQ(加密存储", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "sex": { "description": "用户性别 0: 女 1: 男", "type": "integer" }, "signpdfurl": { "description": "签约pdf文件", "type": "string" }, "taxpayernum": { "description": "纳税人识别号", "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:投资者", "type": "integer" }, "wechat": { "description": "微信(加密存储)", "type": "string" }, "wskhinfo": { "description": "开户申请信息(JSON)", "type": "string" } } }, "models.WrFAProductDetail": { "type": "object", "properties": { "accountid": { "description": "资金账号", "type": "integer" }, "areauserid": { "description": "金融机构ID", "type": "integer" }, "financingdays": { "description": "天数(天)", "type": "integer" }, "interestminlen": { "description": "最小起息天数", "type": "integer" }, "interestrate": { "description": "利率", "type": "number" }, "interestratemode": { "description": "利率方式 - 1:年利率 2:日利率 3:日固定值", "type": "integer" }, "interestsettlemode": { "description": "结息方式 - 1:按日结息 3:按月结息", "type": "integer" }, "interestsettlevalue": { "description": "结息方式值", "type": "integer" }, "isautoloan": { "description": "是否自动放款 0-手动 1-自动 (当为自动放款时,显示\"放款快\")", "type": "integer" }, "loantag": { "description": "放款标识: \"放款快\" 或者为空", "type": "string" }, "marginratio": { "description": "保证金比率质押率 - [仓单质押]", "type": "number" }, "productdetailid": { "description": "产品组合ID(SEQ_FINANCEAREAPRODUCTDETAIL)", "type": "integer" }, "productid": { "description": "金融产品ID", "type": "integer" }, "productname": { "description": "产品名称", "type": "string" }, "updatetime": { "description": "更新时间", "type": "string" }, "username": { "description": "融出方", "type": "string" } } }, "models.WrFactorTypeInfo": { "type": "object", "properties": { "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "dgfactoryitemid": { "description": "选择项id", "type": "integer" }, "dgfactoryitemtypeid": { "description": "要素选择项ID (1-仓库 2-品牌)", "type": "integer" }, "dgfactoryitemvalue": { "description": "要素项值", "type": "string" }, "itemtypename": { "description": "要素项名称", "type": "string" }, "optioncompare": { "description": "选择比较串", "type": "string" }, "warehouseid": { "description": "仓库id", "type": "integer" }, "wrfactortypeid": { "description": "仓单要素ID", "type": "string" }, "wrfactortypename": { "description": "要素名称", "type": "string" }, "wrfactortypename2": { "description": "要素名称(不含仓库)", "type": "string" }, "wrstandardcode": { "description": "品类代码", "type": "string" }, "wrstandardid": { "description": "品类id", "type": "integer" }, "wrstandardname": { "description": "品类名称", "type": "string" } } }, "models.WrFilterItem": { "type": "object", "properties": { "itemcode": { "description": "代码", "type": "string" }, "itemid": { "description": "项id", "type": "integer" }, "itemname": { "description": "名称", "type": "string" }, "itemtype": { "description": "类型 1-品种 2-品类(商品) 3-仓库", "type": "integer" } } }, "models.WrFinanceBuyApply": { "type": "object", "properties": { "applydate": { "description": "申请时间", "type": "string" }, "applystatus": { "description": "申请状态 - 1:待审核 2.审核中 3:审核通过 4:审核拒绝 5:审核失败 6:已撤销 7:自动审核 8:融资失败", "type": "integer" }, "applyuserid": { "description": "申请人", "type": "integer" }, "auditdate": { "description": "审核时间", "type": "string" }, "auditremark": { "description": "审核备注", "type": "string" }, "audituserid": { "description": "审核人", "type": "integer" }, "buyaccountid": { "description": "买方资金账号", "type": "integer" }, "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "buyuserid": { "description": "买方用户ID", "type": "integer" }, "buyusername": { "description": "买方名称", "type": "string" }, "buywrtradeorderid": { "description": "融资方买委托单ID", "type": "string" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "deliverymonth": { "description": "交收月(yyyy-MM) [无仓单HasWR =0]", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "financeaccountid": { "description": "融资方资金帐户ID", "type": "integer" }, "financeapplyid": { "description": "融资申请单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "financeareauserid": { "description": "融资方用户ID", "type": "string" }, "financename": { "description": "融出方名称", "type": "string" }, "financetype": { "description": "融资类型 1-融资回购", "type": "integer" }, "financingdays": { "description": "天数(天)", "type": "integer" }, "freezebuymargin": { "description": "冻结融资保证金(买方)", "type": "number" }, "handleremark": { "description": "处理备注", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "interestminlen": { "description": "最小起息天数", "type": "integer" }, "interestrate": { "description": "利率", "type": "number" }, "interestratemode": { "description": "利率方式 - 1:年利率 2:日利率 3:日固定值", "type": "integer" }, "interestsettlemode": { "description": "结息方式 - 1:按日结息 3:按月结息", "type": "integer" }, "interestsettlevalue": { "description": "结息方式值", "type": "integer" }, "isautoloan": { "description": "是否自动放款 - 0:手动 1:自动", "type": "integer" }, "marginratio": { "description": "保证金比率质押率 - [仓单质押]", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "optioncompare": { "description": "选择项比较串【{选择项ID}+{冒号}+选择项值 } ,逗号分隔,头尾加逗号】-- 所有选择项拼接,用于比较", "type": "string" }, "orderqty": { "description": "委托数量(商品数量)", "type": "number" }, "productdetailid": { "description": "产品组合ID", "type": "integer" }, "productid": { "description": "金融产品ID", "type": "integer" }, "productname": { "description": "产品名称", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "scfcontractid": { "description": "仓单回购合同ID", "type": "string" }, "sellaccountid": { "description": "卖方资金账号", "type": "integer" }, "selluserid": { "description": "卖方用户ID", "type": "integer" }, "sellwrtradeorderid": { "description": "卖方委托单ID", "type": "string" }, "tradeamount": { "description": "成交金额(借款金额)", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价格", "type": "number" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrfactortypename": { "description": "仓单要素类型名称(选择项要素的名称合并显示,逗号分隔)", "type": "string" }, "wrpricetype": { "description": "价格方式 - 1:固定价 2-浮动价 - [挂牌单]", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" }, "wrtypename": { "description": "商品", "type": "string" } } }, "models.WrFriendApply": { "type": "object", "properties": { "applicantid": { "description": "申请人", "type": "integer" }, "applyname": { "description": "申请人名称", "type": "string" }, "applysrc": { "description": "申请来源 - 1:管理端 2:终端", "type": "integer" }, "applystatus": { "description": "申请状态 - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "auditname": { "description": "审核人名称", "type": "string" }, "auditorid": { "description": "审核人", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "friendapplyid": { "description": "申请ID(SEQ_FRIENDAPPLY)", "type": "string" }, "friendname": { "description": "好友名字(已脱敏)", "type": "string" }, "frienduserid": { "description": "好友用户ID", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "userid": { "description": "申请人用户ID", "type": "integer" } } }, "models.WrFtDeliveryGoods": { "type": "object", "properties": { "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "wdlst": { "description": "商品列表", "type": "array", "items": { "$ref": "#/definitions/models.WrFtWrstandard" } } } }, "models.WrFtWrstandard": { "type": "object", "properties": { "enumdicname": { "description": "单位名称", "type": "string" }, "minivalue": { "description": "最小变动值", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" } } }, "models.WrGoodsInfo": { "type": "object", "properties": { "haswr": { "description": "0:仓单预售 1:仓单贸易", "type": "integer" }, "lstitem": { "description": "商品信息项", "type": "array", "items": { "$ref": "#/definitions/models.WrTypeItem" } }, "lststep": { "description": "履约规则", "type": "array", "items": { "$ref": "#/definitions/models.WrGoodsPerformanceStep" } }, "marketid": { "description": "市场id", "type": "integer" } } }, "models.WrGoodsPerformanceStep": { "type": "object", "properties": { "autoid": { "description": "AutoID", "type": "integer" }, "isauto": { "description": "是否自动 - 0:不自动 1:自动", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "stepdate": { "description": "天数信息(T+N)", "type": "string" }, "stepdays": { "description": "距离上一步天数", "type": "integer" }, "stepindex": { "description": "步骤序号", "type": "integer" }, "stepinfo": { "description": "步骤信息(步骤名称+步骤值)", "type": "string" }, "steptypeid": { "description": "履约步骤类型ID - 1:买方支付 2:卖方收款 3:买方自提 4:卖方发货 5:买方确认货 6:卖方发票 7:买方确认票 8:仓单转移 9:释放卖方冻结 10:货款溢短 11:生成合同[中江] 12:运费 90:确认支付 91. 确认放行 92买方支付(直接扣款) 用于-1模板“", "type": "integer" }, "steptypename": { "description": "步骤名称", "type": "string" }, "stepvalue": { "description": "期初均价", "type": "number" }, "templateid": { "description": "履约计划模板ID", "type": "integer" } } }, "models.WrHoldLB": { "type": "object", "properties": { "accountid": { "description": "持有人帐户ID", "type": "integer" }, "bannerpicurl": { "description": "Banner图", "type": "string" }, "createtime": { "description": "创建时间(过户时间)", "type": "string" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "enableqty": { "description": "可用数量", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "freezerqty": { "description": "冻结数量", "type": "number" }, "ladingbillid": { "description": "提单ID(208+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "optioncompare": { "description": "选择项比较串【{选择项ID}+{冒号}+选择项值 } ,逗号分隔,头尾加逗号】-- 所有选择项拼接,用于比较", "type": "string" }, "parentsubnum": { "description": "拆分父子单号", "type": "integer" }, "pledgeqty": { "description": "质押数量", "type": "number" }, "qty": { "description": "数量", "type": "number" }, "spotgoodsprice": { "description": "参考价(THJ)", "type": "number" }, "subnum": { "description": "提单子单号", "type": "integer" }, "thumurls": { "description": "缩略图", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "userid": { "description": "持有人ID", "type": "integer" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrfactortypename": { "description": "仓单要素类型名称(选择项要素的名称合并显示,逗号分隔)", "type": "string" }, "wrholdeno": { "description": "仓单编号", "type": "string" }, "wrid": { "description": "仓单变更ID", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" }, "wrtypename": { "description": "商品", "type": "string" } } }, "models.WrMarketTradeConfig": { "type": "object", "properties": { "basisdownratio": { "description": "浮动价基差下限比例(仓单贸易)", "type": "number" }, "basisupratio": { "description": "浮动价基差上限比例(仓单贸易)", "type": "number" }, "buychargealgorithm": { "description": "买方手续费收取方式 1:比率 2:固定", "type": "integer" }, "buychargealgorithm2": { "description": "回购买方手续费收取方式 1:比率 2:固定 --77:现货商城", "type": "integer" }, "buychargealgorithmvalue": { "description": "买方手续费设置值(交易所部分)", "type": "number" }, "buychargealgorithmvalue2": { "description": "买方手续费设置值(会员部分)", "type": "number" }, "buychargealgorithmvalue3": { "description": "回购买方手续费设置值(交易所部分) --77:现货商城", "type": "number" }, "buychargealgorithmvalue4": { "description": "回购买方手续费设置值(会员部分) --77:现货商城", "type": "number" }, "buyfirstmarginalgorithm": { "description": "买方出价保证金方式 - 1:比率 2:固定 - [竞拍]", "type": "integer" }, "buyfirstmarginvalue": { "description": "买方出价保证金设置值 - [竞拍]", "type": "number" }, "buymarginalgorithm": { "description": "买方保证金方式 - 1:比率 2:固定", "type": "integer" }, "buymarginvalue": { "description": "买方保证金设置值", "type": "number" }, "buyreleaseratio": { "description": "买方释放比率[2:分步履约]", "type": "number" }, "executemode": { "description": "执行方式[2:分步履约] - 1:顺序执行 2:交叉执行", "type": "integer" }, "executeside": { "description": "执行方[2:分步履约] - 1:买方 2:卖方", "type": "integer" }, "failedchargealgorithm": { "description": "流拍手续费收取方式 1:比率 2:固定", "type": "integer" }, "failedchargevalue": { "description": "流拍手续费设置值", "type": "number" }, "failedchargevalue2": { "description": "流拍卖方手续费设置值", "type": "number" }, "holddays": { "description": "合同期限[2:分步履约]", "type": "integer" }, "listingmode": { "description": "挂牌方式 - 1:一口价 2:浮动价 3:贸易圈 4:协议指定", "type": "integer" }, "marketid": { "description": "市场ID-仓单贸易、竞拍、预售", "type": "integer" }, "minqty": { "description": "最小执行量[2:分步履约]", "type": "number" }, "modifierid": { "description": "修改人", "type": "integer" }, "nowrquotaflag": { "description": "是否校验无仓单额度(仓单贸易) - 0:否 1:是", "type": "integer" }, "performancetempid": { "description": "履约计划模板ID(有仓单) - 根据交货模式:1:履约 - 履约计划模板2:分步履约 - 履约计划模板3:分步提货 - 履约方式: 立即执行(-1)", "type": "integer" }, "performancetempid2": { "description": "履约计划模板ID(无仓单) - 根据交货模式:1:履约 - 履约计划模板2:分步履约 - 履约计划模板3:分步提货 - 履约方式: 立即执行", "type": "integer" }, "performancetempid2s": { "description": "履约计划模板IDs(无仓单) - 根据交货模式, 多个逗号分隔:1:履约 - 履约计划模板2:分步履约 - 履约计划模板3:分步提货 - 履约方式: 立即执行", "type": "string" }, "performancetempids": { "description": "履约计划模板IDs(有仓单)- 根据交货模式, 多个逗号分隔:1:履约 - 履约计划模板2:分步履约 - 履约计划模板3:分步提货 - 履约方式: 立即执行(-1)", "type": "string" }, "performanceway": { "description": "交货模式 - 1:履约计划 2:分步履约 3:分步提货[文昌]", "type": "integer" }, "sellchargealgorithm": { "description": "卖方手续费收取方式 1:比率 2:固定", "type": "integer" }, "sellchargealgorithm2": { "description": "回购卖方手续费收取方式 1:比率 2:固定 --77:现货商城", "type": "integer" }, "sellchargealgorithmvalue": { "description": "卖方手续费设置值(交易所部分)", "type": "number" }, "sellchargealgorithmvalue2": { "description": "卖方手续费设置值(会员部分)", "type": "number" }, "sellchargealgorithmvalue3": { "description": "回购卖方手续费设置值(交易所部分) --77:现货商城", "type": "number" }, "sellchargealgorithmvalue4": { "description": "回购卖方手续费设置值(会员部分) --77:现货商城", "type": "number" }, "sellmarginalgorithm": { "description": "卖方保证金方式 - 1:比率 2:固定", "type": "integer" }, "sellmarginvalue": { "description": "卖方保证金设置值", "type": "number" }, "sellmarginvalue2": { "description": "卖方保证金设置值(无仓单)", "type": "number" }, "sellreleaseratio": { "description": "卖方释放比率[2:分步履约]", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.WrOrderDetail": { "type": "object", "properties": { "accountid": { "description": "交易账号(资金账号)", "type": "integer" }, "allfriendsflag": { "description": "是否全好友可见 - 0:否 1:是", "type": "integer" }, "amount": { "description": "期初均价", "type": "number" }, "bannerpicurl": { "description": "Banner图", "type": "string" }, "begindate": { "description": "开始交易日(yyyymmdd)", "type": "string" }, "buyorsell": { "description": "买卖 - 0:买 1:卖(挂牌类型 买为采购 卖为销售)", "type": "integer" }, "canbargain": { "description": "是否可议价 - 0:不可 1:可", "type": "integer" }, "cancelqty": { "description": "撤销数量", "type": "number" }, "canpart": { "description": "是否允许部份摘牌 - 0:不允许(要求整单) 1:允许(可以不整单)", "type": "integer" }, "delistminqty": { "description": "起摘数量", "type": "integer" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "deliverymonth": { "description": "交收月", "type": "string" }, "enddate": { "description": "结束交易日(yyyymmdd)", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "fixedprice": { "description": "固定价格 - [挂牌]", "type": "number" }, "freezecharge": { "description": "期初均价", "type": "number" }, "freezemargin": { "description": "期初均价", "type": "number" }, "futupricemove": { "description": "期货升贴水", "type": "number" }, "futushow": { "description": "期货合约/升贴水", "type": "string" }, "goodscode": { "description": "期货合约", "type": "string" }, "goodsid": { "description": "期货商品id", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "haswr": { "description": "是否有仓单-卖方 - 0:无仓单 1:有仓单", "type": "integer" }, "isspecified": { "description": "是否指定对手 - 0:不指定 1:指定 - [挂牌]", "type": "integer" }, "ladingbillid": { "description": "提单ID(208+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "marginvalue": { "description": "期初均价", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "matchusername": { "description": "对手方名称(当ISSPECIFIED=1时,有值,指定朋友的名称)", "type": "string" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "optioncompare": { "description": "选择项比较串【{选择项ID}+{冒号}+选择项值 } ,逗号分隔,头尾加逗号】-- 所有选择项拼接,用于比较", "type": "string" }, "orderqty": { "description": "委托数量", "type": "number" }, "ordertime": { "description": "委托时间(挂牌时间)", "type": "string" }, "performancetemplateid": { "description": "履约模板id", "type": "integer" }, "pricemove": { "description": "升贴水(浮动价时填写) - [挂牌]", "type": "number" }, "taname": { "description": "交易用户名称(资金账号名称)", "type": "string" }, "thumurls": { "description": "缩略图", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价格 - [摘牌] (浮动价 ((商品1价格*商品1价格系数+升贴水)* 商品1重量系数 + 商品2价格*商品2价格系数+商品2升贴水)* 商品2重量系数 ...)* 委托单价格系数 + 委托单升贴水)", "type": "number" }, "tradeqty": { "description": "成交数量", "type": "number" }, "unitid": { "description": "现货商品单位ID", "type": "integer" }, "userid": { "description": "用户ID", "type": "integer" }, "validtime": { "description": "挂牌有效期", "type": "string" }, "validtype": { "description": "有效类型 - 1当日有效 2本周有效 3指定日期有效 4一直有效", "type": "integer" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrfactortypename": { "description": "仓单要素类型名称(选择项要素的名称合并显示,逗号分隔)", "type": "string" }, "wrpricetype": { "description": "价格方式 - 1:固定价 2-浮动价 - [挂牌]", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" }, "wrtradeorderid": { "description": "仓单贸易委托单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrtradeorderstatus": { "description": "委托状态 - 1:委托请求 2:待冻结 3:委托成功 4:委托失败 5:配对成功 6:已撤 7:部成 8:已成 9:部成部撤 10:成交失败 11:委托拒绝 12:经过摘牌(先摘后挂专用) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用) 17:冻结PD成功 18:冻结PD失败 19:冻结能量成功 20:冻结能量失败 21:预约已报价 22:过期未付 23:优惠券处理中 24:仓单生成失败 25:首付扣款失败 26:履约失败 27:撤单解冻贷款失败", "type": "integer" }, "wrtradetype": { "description": "仓单贸易类型 - 1:挂牌 2:摘牌 3:提货卖(文化中国) 4:提货买(文化中国)", "type": "integer" }, "wrtypename": { "description": "商品", "type": "string" } } }, "models.WrOrderQuote": { "type": "object", "properties": { "bannerpicurl": { "description": "Banner图", "type": "string" }, "buyprice": { "description": "买价", "type": "number" }, "buypricemove": { "description": "买升贴水(基差)", "type": "number" }, "buyqty": { "description": "买量", "type": "number" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种id", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "deliverymonth": { "description": "交收月", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "goodscode": { "description": "商品合约(浮动价列表才有)", "type": "string" }, "goodsid": { "description": "商品id(浮动价列表才有)", "type": "integer" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "pictureurls": { "description": "详情图片(逗号分隔)", "type": "string" }, "sellprice": { "description": "卖价", "type": "number" }, "sellpricemove": { "description": "卖升贴水(基差)", "type": "number" }, "sellqty": { "description": "卖量", "type": "number" }, "spotgoodsprice": { "description": "参考价(THJ)", "type": "number" }, "thumurls": { "description": "缩略图片(1:1)(逗号分隔)", "type": "string" }, "warehousecode": { "description": "仓库代码", "type": "string" }, "warehouseid": { "description": "仓库id", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素id", "type": "string" }, "wrfactortypename": { "description": "仓单要素类型名称(选择项要素的名称合并显示,逗号分隔)", "type": "string" }, "wrgoodsname": { "description": "商品(商品名称+仓库要素名称 拼接)", "type": "string" }, "wrstandardcode": { "description": "商品代码", "type": "string" }, "wrstandardid": { "description": "商品id", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" } } }, "models.WrOrderQuoteDetail": { "type": "object", "properties": { "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "delistminqty": { "description": "期初均价", "type": "number" }, "deliverymonth": { "description": "交收月", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "fixedprice": { "description": "买(卖)价", "type": "number" }, "marketid": { "description": "市场id", "type": "integer" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "orderqty": { "description": "买(卖)量(=委托量-成交量)", "type": "number" }, "ordertime": { "description": "委托时间", "type": "string" }, "pricemove": { "description": "买(卖)升贴水- 基差", "type": "number" }, "userid": { "description": "购买方(销售方)用户ID", "type": "integer" }, "username": { "description": "购买方(销售方)", "type": "string" }, "wrtradeorderid": { "description": "仓单贸易委托单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "string" } } }, "models.WrOutInApply": { "type": "object", "properties": { "address": { "description": "详细地址", "type": "string" }, "applyid": { "description": "申请单id", "type": "string" }, "applystatus": { "description": "申请状态 - 0:预约成功 1:待初审 2:初审通过 3:初审拒绝 4:初审失败 5复审通过 6:复审拒绝 7:复审失败 8:已撤销", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "applytype": { "description": "申请类型 - 1:预约入库 2:预约出库 3:入库注册 4:出库注销", "type": "integer" }, "appointmentmodel": { "description": "预约方式 - 1:物流 2:自送 3:自提", "type": "integer" }, "appointmentmodeldisplay": { "description": "预约方式(显示枚举)", "type": "string" }, "appointmentremark": { "description": "申请备注", "type": "string" }, "bannerpicurl": { "description": "Banner图", "type": "string" }, "begindate": { "description": "开始交易日(yyyymmdd)", "type": "string" }, "cityid": { "description": "市", "type": "integer" }, "cityname": { "description": "城市名称", "type": "string" }, "contactname": { "description": "联系人", "type": "string" }, "contactnum": { "description": "联系方式", "type": "string" }, "countryid": { "description": "国家", "type": "integer" }, "countryname": { "description": "国家名称", "type": "string" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "districtid": { "description": "区", "type": "integer" }, "districtname": { "description": "地区名称", "type": "string" }, "enddate": { "description": "结束交易日(yyyymmdd)", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "expresscompany": { "description": "物流公司", "type": "string" }, "expressnum": { "description": "物流单号", "type": "string" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "optioncompare": { "description": "选择项比较串【{选择项ID}+{冒号}+选择项值 } ,逗号分隔,头尾加逗号】-- 所有选择项拼接,用于比较", "type": "string" }, "provinceid": { "description": "省", "type": "integer" }, "provincename": { "description": "省名称", "type": "string" }, "qty": { "description": "数量", "type": "integer" }, "userid": { "description": "用户id", "type": "integer" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrfactortypename": { "description": "仓单要素类型名称(选择项要素的名称合并显示,逗号分隔)", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" }, "wrtypename": { "description": "商品", "type": "string" } } }, "models.WrPerformancePlan": { "type": "object", "required": [ "userid" ], "properties": { "activatemonth": { "description": "履约激活月 [无仓单的交易收月](yyyy-MM)", "type": "string" }, "amount": { "description": "履约金额(总金额)", "type": "number" }, "begindate": { "description": "开始交易日(yyyymmdd)", "type": "string" }, "buyaccountid": { "description": "买方账号", "type": "integer" }, "buyerfreezeamount": { "description": "履约冻结(买履约)", "type": "number" }, "buyerfreezeamountremain": { "description": "履约冻结剩余(买履约)", "type": "number" }, "buyerinfo": { "description": "买方联系信息 - 存JSON字符串, 根据枚举‘BuyerContactInfo',显示\\隐藏字段,若数据不为JSON,则直接显示{ \"ContactInfo\": \"xxxxxxxx\", \"ReceiveInfo\": \"xxxxxxxxx\", \"ReceiptInfo\": \"xxxxxxxxxxxx\"}", "type": "string" }, "buyorsell": { "description": "买卖方向 0-买 1-卖", "type": "integer" }, "buypaidamount": { "description": "买方已冻/已扣金额 (已付金额)", "type": "number" }, "buyusername": { "description": "买方名字", "type": "string" }, "contractid": { "description": "合同ID", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "curstepdeadline": { "description": "当前步骤到期时间", "type": "string" }, "curstepid": { "description": "当前步骤ID", "type": "string" }, "curstepname": { "description": "当前步骤名称", "type": "string" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "enddate": { "description": "结束交易日(yyyymmdd)", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "executeside": { "description": "步骤执行方 - 1:买方 2:卖方", "type": "string" }, "expressfee": { "description": "运费", "type": "number" }, "expressfeeconfirmed": { "description": "是否确认运费 - 0:无 1:买方确认 2:卖方确认", "type": "integer" }, "hasovershort": { "description": "是否确认溢短 - 0:没有 1:买方确认 2:卖方确认", "type": "integer" }, "haswr": { "description": "类型 0-仓单预售 1-仓单贸易", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "middleaccountid": { "description": "中间商资金账号ID", "type": "integer" }, "middleuserid": { "description": "中间商用户ID", "type": "integer" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "optioncompare": { "description": "选择项比较串【{选择项ID}+{冒号}+选择项值 } ,逗号分隔,头尾加逗号】-- 所有选择项拼接,用于比较", "type": "string" }, "overshortamount": { "description": "溢短金额", "type": "number" }, "overshortqty": { "description": "溢短数量", "type": "number" }, "paymenttype": { "description": "付款方式 - 1:冻结 2:扣款", "type": "integer" }, "performanceplanid": { "description": "履约计划ID(130+yyMMddHHmmss+xxxx)", "type": "string" }, "performancestatus": { "description": "履约状态 - 1:初始化 2:正常 3:处理错误 4:违约待处理 5:违约处理中 6:完成 7.违约已完成 8:释放冻结失败 9:超时待处理 10:超时关闭", "type": "integer" }, "performancetype": { "description": "履约类型 - 0:通用 1:交割 2:仓单贸易 3:预售集采 4:竞拍-降价式 (无仓单) 5:挂牌期权 6:竞拍-降价式 7:竞拍-竞价式 8:竞拍-大宗式 9:荷兰式 10:法币C2C 11:报价系统 12:挂牌系统", "type": "integer" }, "qty": { "description": "履约数量", "type": "number" }, "relatedorderid": { "description": "关联单号(履约类型的关联单号)", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "sellaccountid": { "description": "卖方账号", "type": "integer" }, "sellerfreezeamount": { "description": "履约冻结(卖履约)", "type": "number" }, "sellerfreezeamountremain": { "description": "履约冻结剩余(卖履约)", "type": "number" }, "sellerinfo": { "description": "卖方联系信息 - 存JSON字符串, 根据枚举‘SellerContactInfo',显示\\隐藏字段,若数据不为JSON,则直接显示{ \"ContactInfo\": \"xxxxxxxx\"}", "type": "string" }, "sellreceivedamount": { "description": "卖方已收金额", "type": "number" }, "sellusername": { "description": "卖方名字", "type": "string" }, "shipremark": { "description": "发货备注[物流单号]", "type": "string" }, "starttime": { "description": "当前步骤开始时间", "type": "string" }, "steptypeid": { "description": "履约步骤类型ID - 1:买方支付 2:卖方收款 3:买方自提 4:卖方发货 5:买方确认货 6:卖方发票 7:买方确认票 8:仓单转移 9:释放卖方冻结 10:货款溢短 11:生成合同[中江] 12:运费 90:确认支付 91. 确认放行 92买方支付(直接扣款) 用于-1模板“", "type": "integer" }, "typename": { "description": "履约类型 名称", "type": "string" }, "unpaidamount": { "description": "期初均价", "type": "number" }, "userid": { "description": "用户id", "type": "integer" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrfactortypename": { "description": "仓单要素类型名称(选择项要素的名称合并显示,逗号分隔)", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" }, "wrtransferuserid": { "description": "仓单受让用户", "type": "integer" }, "wrtypename": { "description": "商品", "type": "string" } } }, "models.WrPerformancePlanStep": { "type": "object", "properties": { "delaydays": { "description": "延期申请天数", "type": "integer" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "endtime": { "description": "结束日期", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "executeside": { "description": "步骤执行方 - 1:买方 2:卖方", "type": "integer" }, "handlestatus": { "description": "处理状态 - 1:开始 2:结束 3:冻结请求 4:冻结返回成功 5:冻结返回失败 6:扣款请求 7:扣款返回成功 8:扣款返回失败 9:仓单转移请求 10:仓单转移返回成功 11:仓单转移返回失败 12:加钱请求 13:加钱返回成功 14:加钱返回失败 15:解冻仓单头寸请求 16:解冻仓单头寸返回成功 17:解冻仓单头寸返回失败 18:解冻库位请求 19:解冻库位返回成功 20:解冻库位返回失败", "type": "integer" }, "isauto": { "description": "是否自动 - 0:不自动 1:自动", "type": "integer" }, "islastreceivestep": { "description": "是否最后收款步骤 - 0:不是 1:是 (暂时不用,由服务自己判断是否为最后一步付款或收款)", "type": "integer" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "optioncompare": { "description": "选择项比较串【{选择项ID}+{冒号}+选择项值 } ,逗号分隔,头尾加逗号】-- 所有选择项拼接,用于比较", "type": "string" }, "overdays": { "description": "超期天数 = 当前时间(数据库时间) - 结束日期", "type": "integer" }, "performancestepid": { "description": "履约步骤ID(131+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "planid": { "description": "所属履约计划ID", "type": "string" }, "realamount": { "description": "实际完成金额", "type": "number" }, "relatedorderid": { "description": "关联单号", "type": "string" }, "remaindays": { "description": "剩余天数", "type": "integer" }, "remark": { "description": "错误备注", "type": "string" }, "starttime": { "description": "开始日期", "type": "string" }, "stepamount": { "description": "步骤金额", "type": "number" }, "stepdays": { "description": "距离上一步天数(分钟)", "type": "integer" }, "stepindex": { "description": "步骤序号", "type": "integer" }, "steplanchtype": { "description": "步骤启动类型 - 1:系统自动 2:手动", "type": "integer" }, "stepremark": { "description": "步骤备注", "type": "string" }, "stepstatus": { "description": "步骤状态 - 1:待开始 2:进行中 3:已完成 4:延期(进行中) 5:失败 6:自动完成 7:超时关闭", "type": "integer" }, "steptypeid": { "description": "履约步骤类型ID - 1:买方支付 2:卖方收款 3:买方自提 4:卖方发货 5:买方确认货 6:卖方发票 7:买方确认票 8:仓单转移 9:释放卖方冻结 10:货款溢短 11:生成合同[中江] 12:运费 90:确认支付 91. 确认放行 92买方支付(直接扣款) 用于-1模板“", "type": "integer" }, "steptypename": { "description": "步骤名称", "type": "string" }, "stepvalue": { "description": "步骤值", "type": "number" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrfactortypename": { "description": "仓单要素类型名称(选择项要素的名称合并显示,逗号分隔)", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" }, "wrtypename": { "description": "商品", "type": "string" } } }, "models.WrPerformanceStepType": { "type": "object", "properties": { "canauto": { "description": "能否自动确认 - 0:不可自动确认 1:可自动确认 (可设置自动确认步骤: 1:买方支付 3:买方自提 5:买方确认货 7:买方确认票)", "type": "integer" }, "steptypeid": { "description": "步骤类型ID - 1:买方支付 2:卖方收款 3:买方自提 4:卖方发货 5:买方确认货 6:卖方发票 7:买方确认票 8:仓单转移", "type": "integer" }, "steptypename": { "description": "步骤类型名称", "type": "string" } } }, "models.WrPerformanceTemplateEx": { "type": "object", "properties": { "autoid": { "description": "AutoID 模板id", "type": "integer" }, "createtime": { "description": "创建时间", "type": "string" }, "creatorid": { "description": "创建人", "type": "integer" }, "lstStep": { "description": "步骤信息列表", "type": "array", "items": { "$ref": "#/definitions/models.WrGoodsPerformanceStep" } }, "paymenttype": { "description": "支付方式 - 1:冻结 2:扣款", "type": "integer" }, "takemode": { "description": "提货方式 - 1:无 2:买方自提 3:卖方发货", "type": "integer" }, "templatename": { "description": "模板名称", "type": "string" }, "templatetype": { "description": "模板类型 - 0:通用 1:交割 2:仓单贸易 3:预售集采 7:竞拍-竞价式 8:竞拍-大宗式 9:荷兰式--失效枚举:4:竞拍-降价式 (无仓单) 5:挂牌期权 6:竞拍-降价式", "type": "integer" }, "userid": { "description": "所属用户", "type": "integer" } } }, "models.WrPosition": { "type": "object", "properties": { "accountid": { "description": "帐户ID", "type": "integer" }, "buyexcuteqty": { "description": "采购履约中数量", "type": "number" }, "creditcurqty": { "description": "授信当前数量(预售仓单:预售当前量)", "type": "number" }, "creditenableqty": { "description": "授信可用数量(预售仓单: 可用数量)", "type": "number" }, "creditfreezeqty": { "description": "授信冻结数量(预售仓单: 当前数量)", "type": "number" }, "credittotalqty": { "description": "授信总数量(预售仓单:预售总量)", "type": "number" }, "credittradeqty": { "description": "授信成交数量(预售仓单:成交总量)", "type": "number" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "enalbeqty": { "description": "可用数量", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "freezeqty": { "description": "总冻结数量", "type": "number" }, "haswr": { "description": "是否有仓单-卖方 - 0:无仓单 1:有仓单", "type": "integer" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "modifytime": { "description": "修改时间(过户时间)", "type": "string" }, "optioncompare": { "description": "选择项比较串【{选择项ID}+{冒号}+选择项值 } ,逗号分隔,头尾加逗号】-- 所有选择项拼接,用于比较", "type": "string" }, "pledgeqty": { "description": "质押数量", "type": "number" }, "querytype": { "description": "查询类型 1-现货汇总 2-库存汇总(订单汇总)", "type": "integer" }, "sellexcuteqty": { "description": "销售履约中数量", "type": "number" }, "totalqty": { "description": "总数量(库存数量)", "type": "number" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrfactortypename": { "description": "仓单要素类型名称(选择项要素的名称合并显示,逗号分隔)", "type": "string" }, "wrpositionid": { "description": "仓单头寸ID(201+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrpositionno": { "description": "仓单编号", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" }, "wrtypename": { "description": "商品", "type": "string" }, "wruserid": { "description": "持有人ID", "type": "integer" } } }, "models.WrPreSaleInfo": { "type": "object", "properties": { "bannerpicurl": { "description": "Banner图", "type": "string" }, "baseqty": { "description": "中签基数", "type": "number" }, "createtime": { "description": "创建时间", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "enddate": { "description": "预售结束日期", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "lotteryflag": { "description": "摇号标识 - 0:未摇号 1:已摇号", "type": "integer" }, "lotteryqty": { "description": "摇号总量", "type": "number" }, "luckyqty": { "description": "已中签量", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "maxbuyqty": { "description": "单人最大申购量", "type": "number" }, "maxluckyqty": { "description": "单人最大中签量", "type": "number" }, "pictureurls": { "description": "详情图片(逗号分隔)", "type": "string" }, "placeqty": { "description": "已配售量", "type": "number" }, "presaleapplyid": { "description": "预售申请ID(184+Unix秒时间戳(10位)+xxxxxx)", "type": "string", "example": "0" }, "presaleqty": { "description": "预售总量", "type": "number" }, "presalestatus": { "description": "预售状态 - 1:未开始 2:进行中 3:已结束 4:已关闭", "type": "integer" }, "sellaccountid": { "description": "发行方资金账户ID", "type": "integer" }, "selluserid": { "description": "发行方用户ID", "type": "integer" }, "sellwrtradeorderid": { "description": "发行方卖委托单ID", "type": "string" }, "startdate": { "description": "预售开始日期", "type": "string" }, "takestartdate": { "description": "提货开始日期", "type": "string" }, "thumurls": { "description": "缩略图片(1:1)(逗号分隔)", "type": "string" }, "tradedate": { "description": "交易日", "type": "string" }, "unitid": { "description": "单位ID", "type": "integer" }, "unitprice": { "description": "商品单价", "type": "number" }, "username": { "description": "发行方用户名称", "type": "string" }, "warehousecode": { "description": "仓库代码(仓库简称)", "type": "string" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID - 根据现货商品\\仓库生成", "type": "string", "example": "0" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.WrQuoteOrderMyq": { "type": "object", "properties": { "buyorsell": { "description": "买卖 - 0:买 1:卖", "type": "integer" }, "canbargain": { "description": "是否可议价 - 0:不可 1:可", "type": "integer" }, "canpart": { "description": "是否允许部份摘牌 - 0:不允许 1:允许", "type": "integer" }, "delistminqty": { "description": "期初均价", "type": "number" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "deliverymonth": { "description": "交收月", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "fixedprice": { "description": "买(卖)价", "type": "number" }, "goodscode": { "description": "商品合约代码", "type": "string" }, "marginflag": { "description": "挂牌是否指定保证金 - 0:未指定 1:指定", "type": "integer" }, "marginvalue": { "description": "保证金设置值", "type": "number" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "orderqty": { "description": "买(卖)量(=委托量-成交量)", "type": "number" }, "ordertime": { "description": "委托时间", "type": "string" }, "performancetemplateid": { "description": "履约模板id", "type": "integer" }, "pricemove": { "description": "买(卖)升贴水- 基差", "type": "number" }, "templatename": { "description": "履约模板名称", "type": "string" }, "userid": { "description": "购买方(销售方)用户ID", "type": "integer" }, "username": { "description": "购买方(销售方)", "type": "string" }, "validtime": { "description": "有效期限", "type": "string" }, "validtype": { "description": "有效类型 - 1当日有效 2本周有效 3指定日期有效 4一直有效", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素id", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" }, "wrtradeorderid": { "description": "仓单贸易委托单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrtypename": { "description": "商品", "type": "string" } } }, "models.WrReckonSpotGoodsTradeSum": { "type": "object", "properties": { "begindate": { "description": "开始日期(结果含开始日期) yyyymmdd", "type": "string" }, "enddate": { "description": "结束日期(结果含结束日期) yyyymmdd", "type": "string" }, "istoday": { "description": "是否当日", "type": "boolean" }, "marketid": { "description": "市场ID", "type": "integer" }, "price": { "description": "价格 = 日成交金额 / 日成交数量", "type": "string" }, "reckondate": { "description": "日期 格式 yyyymmdd", "type": "string" }, "tradeamount": { "description": "期初均价", "type": "number" }, "tradeqty": { "description": "期初均价", "type": "number" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" } } }, "models.WrScfContract": { "type": "object", "properties": { "borroweruserid": { "description": "借款用户ID", "type": "integer" }, "buybackwrpositionqty": { "description": "已回购仓单头寸数量 - [仓单回购\\仓单质押] -\u003e 已回购数量", "type": "number" }, "closeinterest": { "description": "已结利息 -\u003e 已结费用", "type": "number" }, "currisklevel": { "description": "风险级别 - 1:正常 2:追加货款 3:支付尾款", "type": "integer" }, "deadline": { "description": "截止日期(yyyyMMdd) -\u003e 借款到期时间", "type": "string" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "financingdays": { "description": "天数(天)", "type": "integer" }, "initmargin": { "description": "保证金 - [仓单回购]", "type": "number" }, "interestamount": { "description": "计息金额=合同剩余金额 - 初始保证金 - 追缴保证金 \\ 合同剩余金额", "type": "number" }, "interestdebt": { "description": "利息欠款(记录负数) -\u003e 费用欠款", "type": "number" }, "interestminlen": { "description": "最小起息天数", "type": "integer" }, "interestrate": { "description": "利率", "type": "number" }, "interestratemode": { "description": "利率方式 - 1:年利率 2:日利率 3:日固定值", "type": "integer" }, "interestsettlemode": { "description": "结息方式 - 1:按日结息 3:按月结息", "type": "integer" }, "interestsettlevalue": { "description": "结息方式值", "type": "integer" }, "isautoloan": { "description": "是否自动放款 - 0:手动 1:自动 - [仓单质押]", "type": "integer" }, "lastcloseinterestday": { "description": "最近结息日(yyyyMMdd)", "type": "string" }, "lenderamount": { "description": "贷款金额 -\u003e 借款金额", "type": "number" }, "lenderuserid": { "description": "贷款方用户ID -\u003e 融出方用户ID", "type": "integer" }, "lenderusername": { "description": "融出方", "type": "string" }, "marginratio": { "description": "保证金比率质押率 - [仓单质押]", "type": "number" }, "marketid": { "description": "市场ID - 拆成三个独立模式后,根据市场ID处理", "type": "integer" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "optioncompare": { "description": "选择项比较串【{选择项ID}+{冒号}+选择项值 } ,逗号分隔,头尾加逗号】-- 所有选择项拼接,用于比较", "type": "string" }, "pricemove": { "description": "估值升贴水值", "type": "number" }, "productdetailid": { "description": "产品组合ID", "type": "integer" }, "productid": { "description": "金融产品ID", "type": "integer" }, "productname": { "description": "产品名称", "type": "string" }, "remainamount": { "description": "合同剩余金额 -\u003e 剩余金额", "type": "number" }, "remainwrpositionqty": { "description": "剩余仓单头寸数量 - [仓单回购\\仓单质押] -\u003e 剩余数量(待回购数量)", "type": "number" }, "remark": { "description": "备注", "type": "string" }, "scfcontractid": { "description": "SCF合同ID(310+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "scfcontractstatus": { "description": "合同状态 - 1:待确认 2:已确认 3:确认拒绝 4:已支付保证金 5:已激活 6:已违约 7:到期结束 8:延期结束 9:违约结束 10:已注销 11:已关闭 99:未提交", "type": "integer" }, "scfcontracttype": { "description": "合同类型 - 1:仓单回购 2:仓单质押 3:合作套保 4:资金贷款 5:融资单 6:融资回购", "type": "integer" }, "startinterestday": { "description": "计息开始日(yyyyMMdd) -\u003e 开始计费日期", "type": "string" }, "totalinterest": { "description": "已计利息 -\u003e 已计费用", "type": "number" }, "unpaidinterest": { "description": "期初均价", "type": "number" }, "updatetime": { "description": "更新时间", "type": "string" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrfactortypename": { "description": "仓单要素类型名称(选择项要素的名称合并显示,逗号分隔)", "type": "string" }, "wrqty": { "description": "仓单数量 - [仓单回购\\仓单质押] -\u003e 数量", "type": "number" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" }, "wrtypename": { "description": "商品", "type": "string" } } }, "models.WrScfContractInterest": { "type": "object", "properties": { "closeinterest": { "description": "已结利息", "type": "number" }, "closeintereststatus": { "description": "结息状态 - 1:未结 2:已结", "type": "integer" }, "closetime": { "description": "结息时间", "type": "string" }, "closetradedate": { "description": "结息交易日", "type": "string" }, "creatorid": { "description": "操作人ID", "type": "integer" }, "dayrate": { "description": "日利率(根据利率配置计算出的日利率值,年利率则除以360,保留5位小数)", "type": "number" }, "interest": { "description": "利息", "type": "number" }, "interestamount": { "description": "计息金额", "type": "number" }, "interestday": { "description": "计息日(yyyyMMdd)", "type": "string" }, "scfcontractid": { "description": "SCF合同ID", "type": "string" }, "scfcontractinterestid": { "description": "SCF合同计息ID(313+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" }, "updatetime": { "description": "更新时间", "type": "string" } } }, "models.WrSearchUser": { "type": "object", "required": [ "username" ], "properties": { "userid": { "description": "用户ID", "type": "integer" }, "username": { "description": "用户名称(已脱敏)", "type": "string" }, "username2": { "description": "用户名称(未脱敏)", "type": "string" }, "usertype": { "description": "账户类型 - 1:交易所 2:机构 3:会员子机构 4:经纪人 5:投资者 6:客户 7:企业成员(云平台)", "type": "integer" } } }, "models.WrSiteColumnDetail": { "type": "object", "properties": { "author": { "description": "作者", "type": "string" }, "brief": { "description": "简介", "type": "string" }, "context": { "description": "内容", "type": "string" }, "coverimage": { "description": "封面图片", "type": "string" }, "creaedate": { "description": "创建时间", "type": "string" }, "id": { "description": "ID(SEQ_SITE_COLUMNDETAIL)", "type": "integer" }, "istop": { "description": "是否置顶 - 0:不置 1:置顶", "type": "integer" }, "publishdate": { "description": "发布日期", "type": "string" }, "title": { "description": "标题", "type": "string" }, "updatedate": { "description": "修改时间", "type": "string" } } }, "models.WrSpecialMatchOrder": { "type": "object", "properties": { "amount": { "description": "金额 = 数量 * 价格", "type": "number" }, "buyorsell": { "description": "买卖 - 0:买 1:卖(挂牌类型 买为采购 卖为销售)", "type": "integer" }, "cancelqty": { "description": "撤销数量", "type": "number" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "fixedprice": { "description": "固定价格(价格)", "type": "number" }, "haswr": { "description": "是否有仓单-卖方 - 0:无仓单 1:有仓单", "type": "integer" }, "isspecified": { "description": "是否指定对手 - 0:不指定 1:指定好友(贸易圈) 2:指定对手 - [挂牌]", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "matchuserid": { "description": "指定方资金账号(字段名为userid,实际存的是accountid by:邓工)", "type": "integer" }, "matchusername": { "description": "指定方", "type": "string" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "optioncompare": { "description": "选择项比较串【{选择项ID}+{冒号}+选择项值 } ,逗号分隔,头尾加逗号】-- 所有选择项拼接,用于比较", "type": "string" }, "orderqty": { "description": "委托数量", "type": "number" }, "ordertime": { "description": "委托时间", "type": "string" }, "pricemove": { "description": "升贴水(浮动价时填写) - [挂牌]", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeqty": { "description": "成交数量", "type": "number" }, "userid": { "description": "用户ID", "type": "integer" }, "username": { "description": "发起方", "type": "string" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrfactortypename": { "description": "仓单要素类型名称(选择项要素的名称合并显示,逗号分隔)", "type": "string" }, "wrpricetype": { "description": "价格方式 - 1:固定价 2-浮动价 - [挂牌]", "type": "integer" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" }, "wrtradeorderid": { "description": "仓单贸易委托单ID(320+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrtradeorderstatus": { "description": "委托状态 - 1:委托请求 2:待冻结 3:委托成功 4:委托失败 5:配对成功 6:已撤 7:已成 8:成交失败 9:委托拒绝 10:挂牌部分成交 11:仓单生成失败 12:首付扣款失败 13:履约失败 14:撤单解冻贷款失败 15:部成部撤", "type": "integer" }, "wrtradetype": { "description": "仓单贸易类型 - 1:挂牌 2:摘牌 3:提货卖(文化中国) 4:提货买(文化中国)", "type": "integer" }, "wrtypename": { "description": "商品", "type": "string" } } }, "models.WrSpotGroupTradeSum": { "type": "object", "properties": { "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID(SEQ_DELIVERYGOODS)", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "lastavgprice": { "description": "上上个交易日价格(前2天价格)", "type": "string" }, "lastreckondate": { "description": "上上个交易日(前2天交易日)", "type": "string" }, "reckondate": { "description": "上个交易日(前1天交易日)", "type": "string" }, "todayavgprice": { "description": "上个交易日价格(前1天价格)", "type": "string" }, "updown": { "description": "涨跌", "type": "string" }, "updownratio": { "description": "涨幅(已格式化, 直接显示即可)", "type": "string" } } }, "models.WrSpotGroupTradeSumDetail": { "type": "object", "properties": { "deliverygoodsid": { "description": "现货商品id", "type": "integer" }, "price": { "description": "价格", "type": "number" }, "reckondate": { "description": "日期(yyymmdd, 如:20211031)", "type": "string" } } }, "models.WrSpotGroupTradeSumEx": { "type": "object", "properties": { "lst": { "description": "指数列表", "type": "array", "items": { "$ref": "#/definitions/models.WrSpotGroupTradeSum" } }, "prereckondate": { "description": "上上个交易日(yyymmdd)", "type": "string" }, "reckondate": { "description": "上个交易日(yyyymmdd)", "type": "string" } } }, "models.WrStandardFactoryItem": { "type": "object", "properties": { "dgfactoryitemid": { "description": "选择项id", "type": "integer" }, "dgfactoryitemvalue": { "description": "要素项值", "type": "string" }, "warehouseid": { "description": "仓库id", "type": "integer" } } }, "models.WrStandardFactoryItemEx": { "type": "object", "properties": { "dgfactoryitemtypeid": { "description": "要素项类型id(1-999:预留为特殊类型 1:仓库 2:品牌)", "type": "integer" }, "itemlst": { "description": "要素项列表", "type": "array", "items": { "$ref": "#/definitions/models.WrStandardFactoryItem" } }, "itemtypename": { "description": "要素项类型名称", "type": "string" }, "wrstandardid": { "description": "品类", "type": "integer" } } }, "models.WrTradeDetail": { "type": "object", "properties": { "accountid": { "description": "资金账号", "type": "integer" }, "bannerpicurl": { "description": "Banner图", "type": "string" }, "begindate": { "description": "开始交易日(yyyymmdd)", "type": "string" }, "buyorsell": { "description": "买卖 - 0:买 1:卖(挂牌类型 买为采购 卖为销售)", "type": "integer" }, "chargevalue": { "description": "手续费", "type": "number" }, "contractaddr": { "description": "合同地址", "type": "string" }, "deliverygoodscode": { "description": "品种代码", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "deliverygoodsname": { "description": "品种名称", "type": "string" }, "deliverymonth": { "description": "交收月", "type": "string" }, "enddate": { "description": "结束交易日(yyyymmdd)", "type": "string" }, "enumdicname": { "description": "单位名称", "type": "string" }, "haswr": { "description": "是否有仓单-卖方 - 0:无仓单 1:有仓单", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "matchaccountid": { "description": "对手账号", "type": "integer" }, "matchusername": { "description": "对手方", "type": "string" }, "minivalue": { "description": "现货商品最小变动值", "type": "integer" }, "optioncompare": { "description": "选择项比较串【{选择项ID}+{冒号}+选择项值 } ,逗号分隔,头尾加逗号】-- 所有选择项拼接,用于比较", "type": "string" }, "thumurls": { "description": "缩略图", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeqty": { "description": "成交数量", "type": "number" }, "tradetime": { "description": "成交时间", "type": "string" }, "unitid": { "description": "现货商品单位ID", "type": "integer" }, "userid": { "description": "用户ID", "type": "integer" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "warehousename": { "description": "仓库名称", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID(212+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrfactortypename": { "description": "仓单要素类型名称(选择项要素的名称合并显示,逗号分隔)", "type": "string" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "商品名称", "type": "string" }, "wrtradedetailid": { "description": "仓单贸易成交单ID(321+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "wrtradetype": { "description": "仓单贸易类型 - 1:挂牌 2:摘牌 3:提货卖(文化中国) 4:提货买(文化中国)", "type": "integer" }, "wrtypename": { "description": "商品", "type": "string" } } }, "models.WrTradeOrderDetail": { "type": "object", "properties": { "buyorsell": { "description": "买卖方向 0-买 1-卖", "type": "integer" }, "goodsid": { "description": "商品id", "type": "integer" }, "orderid": { "description": "委托单号", "type": "string" }, "orderprice": { "description": "期初均价", "type": "number" }, "orderqty": { "description": "委托数量", "type": "integer" }, "userid": { "description": "用户id", "type": "integer" }, "username": { "description": "用户名称(已脱敏)", "type": "string" } } }, "models.WrTypeItem": { "type": "object", "properties": { "name": { "description": "名称", "type": "string" }, "value": { "description": "值", "type": "string" } } }, "models.WrUserFriend": { "type": "object", "properties": { "friendname": { "description": "朋友名称(已脱敏)", "type": "string" }, "frienduserid": { "description": "朋友id", "type": "integer" }, "isfriend": { "description": "是否好友 0-不是 1-是", "type": "integer" }, "userid": { "description": "用户id", "type": "integer" } } }, "models.WrUserReceiptInfo": { "type": "object", "properties": { "address": { "description": "地址[发票类型:企业]", "type": "string" }, "autoid": { "description": "AutoID", "type": "integer" }, "contactinfo": { "description": "联系方式", "type": "string" }, "email": { "description": "收件邮箱", "type": "string" }, "idnum": { "description": "身份证号码[发票类型:个人]", "type": "string" }, "isdefault": { "description": "是否默认地址 - 0:否 1:是", "type": "integer" }, "receiptaccount": { "description": "发票帐号[发票类型:企业]", "type": "string" }, "receiptbank": { "description": "发票开户行[发票类型:企业]", "type": "string" }, "receipttype": { "description": "发票类型 - 1:个人 2:企业", "type": "integer" }, "taxpayerid": { "description": "纳税人识别号", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" }, "username": { "description": "户名(个人姓名或企业名称)", "type": "string" } } }, "models.Wrpresaleapply": { "type": "object", "required": [ "marketid", "selluserid" ], "properties": { "applyid": { "description": "申请人", "type": "integer" }, "applyremark": { "description": "备注", "type": "string" }, "applysrc": { "description": "申请来源 - 1:管理端 2:终端", "type": "integer" }, "applystatus": { "description": "申请状态(inoutapplystatus) - 1:待审核 2:审核通过 3:审核拒绝 4:处理失败 5:已撤回", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "auditid": { "description": "审核人", "type": "integer" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "audittime": { "description": "审核时间", "type": "string" }, "audittradedate": { "description": "审核交易日(yyyyMMdd)", "type": "string" }, "bannerpicurl": { "description": "Banner图(逗号分隔)", "type": "string" }, "baseqty": { "description": "中签基数", "type": "number" }, "buymarginalgorithm": { "description": "买方保证金方式 - 1:比率 2:固定", "type": "integer" }, "buymarginvalue": { "description": "买方保证金设置值", "type": "number" }, "clientticket": { "description": "客户端流水号", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "enddate": { "description": "预售结束日期", "type": "string" }, "handlestatus": { "description": "处理状态", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "maxbuyqty": { "description": "单人最大申购量", "type": "number" }, "maxluckyqty": { "description": "单人最大中签量 - 作废", "type": "number" }, "minbuyqty": { "description": "单人最小申购量", "type": "number" }, "minsuccessqty": { "description": "最低成团量", "type": "number" }, "performancetemplateid": { "description": "履约计划模板ID(方式为1时填-1, 为2时选择模板)", "type": "integer" }, "pictureurls": { "description": "详情图片(逗号分隔)", "type": "string" }, "presaleapplyid": { "description": "预售申请ID(184+Unix秒时间戳(10位)+xxxxxx)", "type": "string" }, "presaleqty": { "description": "预售总量", "type": "number" }, "qtydesc": { "description": "数量描述 [2:毛坯钻石]", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "sellaccountid": { "description": "发行方资金账户ID", "type": "integer" }, "selluserid": { "description": "发行方用户ID", "type": "integer" }, "sizestr": { "description": "尺寸 [1:成品裸钻 \\ 2:毛坯钻石]", "type": "string" }, "startdate": { "description": "预售开始日期", "type": "string" }, "takestartdate": { "description": "提货开始日期", "type": "string" }, "thumurls": { "description": "缩略图片(1:1)(逗号分隔)", "type": "string" }, "unitid": { "description": "单位ID", "type": "integer" }, "unitprice": { "description": "商品单价", "type": "number" }, "warehouseid": { "description": "仓库ID", "type": "integer" }, "weightdesc": { "description": "重量描述 [2:毛坯钻石]", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID - 根据现货商品\\仓库生成", "type": "integer" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" }, "yieldrate": { "description": "成品率 [2:毛坯钻石]", "type": "string" }, "ysproductionmode": { "description": "生产方式 - 枚举”YSProductionMode“ [2:毛坯钻石] 1:HPHT 2:CVD", "type": "integer" }, "yszscategory": { "description": "钻石分类 - 枚举”YSZSCategory“ 1:成品裸钻 2:毛坯钻石", "type": "integer" }, "zsclaritytypestr": { "description": "净度 [1:成品裸钻 \\ 2:毛坯钻石]", "type": "string" }, "zscolortypestr": { "description": "颜色 [1:成品裸钻 \\ 2:毛坯钻石]", "type": "string" }, "zscuttypestr": { "description": "切工 [1:成品裸钻]", "type": "string" }, "zsfluorescencetypestr": { "description": "荧光 [1:成品裸钻]", "type": "string" }, "zspolishtypestr": { "description": "抛光 [1:成品裸钻]", "type": "string" }, "zsshapetypestr": { "description": "形状 [1:成品裸钻]", "type": "string" }, "zssymmetrytypestr": { "description": "对称 [1:成品裸钻]", "type": "string" } } }, "models.Wrtradetradequote": { "type": "object", "properties": { "buyaccountid": { "description": "买方账号ID", "type": "integer" }, "buychargevalue": { "description": "买方手续费", "type": "number" }, "buyuserid": { "description": "买方用户ID", "type": "integer" }, "deliverygoodsid": { "description": "现货品种ID", "type": "integer" }, "exchangerate": { "description": "汇率", "type": "number" }, "marketid": { "description": "市场ID", "type": "integer" }, "oritradeamount": { "description": "成交金额[商品币种]", "type": "number" }, "performanceplanid": { "description": "履约计划ID/合同ID", "type": "integer" }, "sellaccountid": { "description": "卖方账号ID", "type": "integer" }, "sellchargevalue": { "description": "卖方手续费", "type": "number" }, "selluserid": { "description": "卖方用户ID", "type": "integer" }, "tradeamount": { "description": "成交金额", "type": "number" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "tradeprice": { "description": "成交价格", "type": "number" }, "tradeqty": { "description": "成交数量", "type": "integer" }, "tradetime": { "description": "成交时间", "type": "string" }, "wrfactortypeid": { "description": "仓单要素类型ID", "type": "integer" }, "wrstandardid": { "description": "现货商品ID", "type": "integer" }, "wrtradedetailid": { "description": "仓单贸易成交单ID(321+Unix秒时间戳(10位)+xxxxxx)", "type": "integer" } } }, "models.XHBRAND": { "type": "object", "properties": { "brandid": { "description": "品牌id", "type": "integer" }, "brandname": { "description": "品牌名称", "type": "string" }, "isvalid": { "description": "是否有效 0-无效 1-有效", "type": "integer" } } }, "models.XHDeliveryGoods": { "type": "object", "properties": { "areauserid": { "description": "所属机构", "type": "integer" }, "bdlst": { "description": "品牌列表", "type": "array", "items": { "$ref": "#/definitions/models.XHBRAND" } }, "deliverygoodscode": { "description": "现货品种代码", "type": "string" }, "deliverygoodsid": { "description": "现货品种ID(SEQ_DELIVERYGOODS)", "type": "integer" }, "deliverygoodsname": { "description": "现货品种名称", "type": "string" }, "dgstatus": { "description": "品种状态 - 作废 - 0:未激活 1:正常", "type": "integer" }, "filterSubEmpty": { "description": "过滤下级为空的", "type": "integer" }, "isvalid": { "description": "是否有效 - 0:无效 1:有效", "type": "integer" }, "remark": { "description": "备注", "type": "string" }, "unitid": { "description": "单位id(目前看,数据库中是空值)", "type": "integer" }, "wdlst": { "description": "品类(现货商品)列表", "type": "array", "items": { "$ref": "#/definitions/models.XHWrstandard" } } } }, "models.XHMiddleGoods": { "type": "object", "properties": { "GPLST": { "description": "期货品种列表", "type": "array", "items": { "$ref": "#/definitions/models.TBGoodsGroup" } }, "convertratio": { "description": "拆算系数", "type": "number" }, "costratio": { "description": "成本权重", "type": "number" }, "deliverygoodsid": { "description": "现货商品id", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "middlegoodscode": { "description": "套保品种代码", "type": "string" }, "middlegoodsid": { "description": "套保品种id", "type": "integer" }, "middlegoodsname": { "description": "套保品种名称", "type": "string" }, "unitid": { "description": "单位id", "type": "integer" } } }, "models.XHWrstandard": { "type": "object", "properties": { "bannerpicurl": { "description": "banner图", "type": "string" }, "deliverygoodsid": { "description": "品种ID", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "mglst": { "description": "套保品列表", "type": "array", "items": { "$ref": "#/definitions/models.XHMiddleGoods" } }, "pictureurls": { "description": "详情图片(逗号分隔)", "type": "string" }, "thumurls": { "description": "缩略图片(1:1)(逗号分隔)", "type": "string" }, "unitid": { "description": "单位id", "type": "integer" }, "vatrate": { "description": "增值税率", "type": "number" }, "wrstandardcode": { "description": "现货商品代码", "type": "string" }, "wrstandardid": { "description": "现货商品ID(SEQ_WRSTANDARD)", "type": "integer" }, "wrstandardname": { "description": "现货商品名称", "type": "string" } } }, "models.XhcpSellBackApplyEx": { "type": "object", "required": [ "userid" ], "properties": { "applyremark": { "description": "申请备注", "type": "string" }, "expirytype": { "description": "寄售有效期 - 1:3天 2:7天 3:15天 4:长期", "type": "integer" }, "goodsspec": { "description": "商品规格 - 1:整件 2;整提 3:单罐 4:单盒", "type": "integer" }, "holeflag": { "description": "是否破洞[原封] - 1:无破洞 2:破洞", "type": "integer" }, "isunopened": { "description": "是否原封 - 1:否 2:是", "type": "integer" }, "mpflag": { "description": "磨皮类型[原封] - 1:无磨皮 2:小磨皮 3:磨皮", "type": "integer" }, "openflag": { "description": "是否非原封 - 1:无 2:皮张大、片张完整,无杂质、虫蛀、霉变、病变、烧皮。 3:片张较大、皮张基本完整,少量断片,少量病变、轻微虫蛀和烧皮。 4:皮张小、片张不完整,断片、碎片较多,有一定量杂质、病斑、虫蛀和烧皮。", "type": "integer" }, "phonenum": { "description": "联系电话", "type": "string" }, "userid": { "description": "所属用户ID", "type": "integer" }, "zpflag": { "description": "皱皮类型[原封] - 1:无皱皮 2:小皱皮 3:皱皮", "type": "integer" } } }, "models.Xhcpsellbackapply": { "type": "object", "required": [ "userid" ], "properties": { "applyid": { "description": "申请人", "type": "integer" }, "applyremark": { "description": "申请备注", "type": "string" }, "applysrc": { "description": "申请来源 - 1:管理端 2:终端", "type": "integer" }, "applystatus": { "description": "申请状态 - 1:待确认 2:已处理", "type": "integer" }, "applytime": { "description": "申请时间", "type": "string" }, "auditremark": { "description": "审核备注", "type": "string" }, "auditsrc": { "description": "审核来源 - 1:管理端 2:终端", "type": "integer" }, "expirytype": { "description": "寄售有效期 - 1:3天 2:7天 3:15天 4:长期", "type": "integer" }, "goodsspec": { "description": "商品规格 - 1:整件 2;整提 3:单罐 4:单盒", "type": "integer" }, "holeflag": { "description": "是否破洞[原封] - 1:无破洞 2:破洞", "type": "integer" }, "isunopened": { "description": "是否原封 - 1:否 2:是", "type": "integer" }, "mpflag": { "description": "磨皮类型[原封] - 1:无磨皮 2:小磨皮 3:磨皮", "type": "integer" }, "openflag": { "description": "是否非原封 - 1:无 2:皮张大、片张完整,无杂质、虫蛀、霉变、病变、烧皮。 3:片张较大、皮张基本完整,少量断片,少量病变、轻微虫蛀和烧皮。 4:皮张小、片张不完整,断片、碎片较多,有一定量杂质、病斑、虫蛀和烧皮。", "type": "integer" }, "phonenum": { "description": "联系电话", "type": "string" }, "sellbackapplyid": { "description": "回收申请ID - SEQ_XHCP_SELLBACKAPPLY", "type": "string" }, "userid": { "description": "所属用户ID", "type": "integer" }, "zpflag": { "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" }, "advanceratio": { "description": "首付比率", "type": "number" }, "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": "number" }, "creditamount": { "description": "授信金额", "type": "number" }, "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "gcaccountid": { "description": "账户ID[合约币种]", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunitid": { "description": "商品单位id", "type": "integer" }, "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": "number" }, "optiontype": { "description": "期权类型 - 1:认购(看涨) 2:认沽(看跌)", "type": "integer" }, "orderid": { "description": "委托单号", "type": "string" }, "payamount": { "description": "支付金额(付款金额)", "type": "number" }, "performanceplanid": { "description": "履约计划ID[期权]", "type": "integer" }, "performancestatus": { "description": "履约状态[期权] - 0:无履约 1:未履约 2:履约中 3:履约完成", "type": "integer" }, "preexerciseprice": { "description": "预申报价格", "type": "number" }, "premium": { "description": "权利金 - [持仓单的权利金]", "type": "number" }, "qtydecimalplace": { "description": "商品报价小数位", "type": "integer" }, "recvamount": { "description": "到账金额 = 成交金额 - 手续费", "type": "number" }, "relatedouttradeid": { "description": "关联外部成交单ID", "type": "integer" }, "status": { "description": "处理状态 - 1:待处理 2:已处理 3:处理失败", "type": "integer" }, "totalamount": { "description": "订单总额 = 成交金额 + 手续费", "type": "number" }, "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": "number" }, "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": "number" }, "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": "number" }, "closetradeqty": { "description": "平仓成交数量(先建后平操作,需要记录)", "type": "number" }, "closeunfreezecharge": { "description": "平仓解冻手续费(先建后平操作,需要记录)", "type": "number" }, "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "delistingtype": { "description": "摘牌类型 - 1:价格最优 2:点选成交", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "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" }, "goodunitid": { "description": "商品单位id", "type": "integer" }, "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": "number" }, "opentradeqty": { "description": "开仓成交数量(先建后平操作,需要记录)", "type": "number" }, "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": "number" }, "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" }, "qtydecimalplace": { "description": "成交量小数位", "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": "number" }, "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" }, "advanceratio": { "description": "首付比率", "type": "number" }, "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": "number" }, "creditamount": { "description": "授信金额", "type": "number" }, "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "enumdicname": { "description": "单位名称", "type": "string" }, "gcaccountid": { "description": "账户ID[合约币种]", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunitid": { "description": "商品单位id", "type": "integer" }, "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": "number" }, "optiontype": { "description": "期权类型 - 1:认购(看涨) 2:认沽(看跌)", "type": "integer" }, "orderid": { "description": "委托单号", "type": "string" }, "payamount": { "description": "支付金额(付款金额)", "type": "number" }, "performanceplanid": { "description": "履约计划ID[期权]", "type": "integer" }, "performancestatus": { "description": "履约状态[期权] - 0:无履约 1:未履约 2:履约中 3:履约完成", "type": "integer" }, "preexerciseprice": { "description": "预申报价格", "type": "number" }, "premium": { "description": "权利金 - [持仓单的权利金]", "type": "number" }, "qtydecimalplace": { "description": "商品报价小数位", "type": "integer" }, "recvamount": { "description": "到账金额 = 成交金额 - 手续费", "type": "number" }, "relatedouttradeid": { "description": "关联外部成交单ID", "type": "integer" }, "status": { "description": "处理状态 - 1:待处理 2:已处理 3:处理失败", "type": "integer" }, "totalamount": { "description": "订单总额 = 成交金额 + 手续费", "type": "number" }, "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": "number" }, "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": "number" }, "clienttype": { "description": "客户端类型 - 0:保留为未填终端类型 1:PC管理端 2:PC交易端 3:手机客户端_安卓 4:网页客户端 5:微信客户端 6:手机客户端_苹果 7:网上开户客户端 8:无效终端编号 9:报价终端(中江)", "type": "integer" }, "closefreezecharge": { "description": "平仓冻结手续费(先建后平操作,需要记录)", "type": "number" }, "closeqty": { "description": "平仓数量(先建后平操作 需要记录)", "type": "number" }, "closetradeqty": { "description": "平仓成交数量(先建后平操作,需要记录)", "type": "number" }, "closeunfreezecharge": { "description": "平仓解冻手续费(先建后平操作,需要记录)", "type": "number" }, "decimalplace": { "description": "商品报价小数位", "type": "integer" }, "delistingtype": { "description": "摘牌类型 - 1:价格最优 2:点选成交", "type": "integer" }, "enableqty": { "description": "可用数量 = 委托数量 - 成交数量 - 撤单数量", "type": "number" }, "enumdicname": { "description": "单位名称", "type": "string" }, "freezecharge": { "description": "冻结手续费", "type": "number" }, "freezemargin": { "description": "冻结保证金(冻结交易金额)", "type": "number" }, "goodscode": { "description": "商品代码", "type": "string" }, "goodsid": { "description": "商品ID", "type": "integer" }, "goodsname": { "description": "商品名称", "type": "string" }, "goodunitid": { "description": "商品单位id", "type": "integer" }, "listingselecttype": { "description": "挂牌点选类型 - 1:挂牌 2:摘牌 3:先摘后挂", "type": "integer" }, "marketid": { "description": "市场ID", "type": "integer" }, "marketname": { "description": "市场名称", "type": "string" }, "openfreezecharge": { "description": "开仓冻结手续费(先建后平操作,需要记录)", "type": "number" }, "openqty": { "description": "开仓数量(先建后平操作,需要记录)", "type": "number" }, "opentradeqty": { "description": "开仓成交数量(先建后平操作,需要记录)", "type": "number" }, "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": "number" }, "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" }, "qtydecimalplace": { "description": "商品报价小数位", "type": "integer" }, "relatedid": { "description": "关联单号(交割单)", "type": "string" }, "tradedate": { "description": "交易日(yyyyMMdd)", "type": "string" }, "trademode": { "description": "交易模式", "type": "integer" }, "tradeqty": { "description": "成交数量", "type": "number" }, "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": "number" }, "curholderamount": { "description": "当前持仓总金额[商品币种]", "type": "number" }, "curpositionqty": { "description": "当前持仓总数量", "type": "number" }, "currencyid": { "description": "报价货币ID", "type": "integer" }, "curtdposition": { "description": "期末今日头寸", "type": "number" }, "decimalplace": { "description": "报价小数位", "type": "integer" }, "enableqty": { "description": "可用量", "type": "number" }, "fretdposition": { "description": "冻结今日头寸", "type": "number" }, "frozenqty": { "description": "持仓冻结数量", "type": "number" }, "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" }, "lastprice": { "description": "最新价", "type": "number" }, "marketamount": { "description": "市值", "type": "number" }, "marketid": { "description": "所属市场ID", "type": "integer" }, "matchname": { "description": "ProviderUserID 企业名称", "type": "string" }, "mindeliverylot": { "description": "最小交收手数(50模式)", "type": "integer" }, "openreqqty": { "description": "开仓申请数量(用于比较最大持仓数量)", "type": "number" }, "opentotalqty": { "description": "开仓总数量", "type": "number" }, "otherfrozenqty": { "description": "持仓其他冻结数量(交割冻结)", "type": "number" }, "pkid": { "description": "自定义主键", "type": "string" }, "positionpl": { "description": "持仓盈亏 买方向 = (最新价 - 持仓均价) * 买期末头寸 * 合约单位;卖方向 = (持仓均价 - 最新价) * 卖期末头寸 * 合约单位", "type": "number" }, "positionplrate": { "description": "持仓盈亏比例【实时行情更新】 = 持仓盈亏 / 开仓成本", "type": "number" }, "positionqty": { "description": "期初持仓数量", "type": "number" }, "qtydecimalplace": { "description": "成交量小数位", "type": "integer" }, "refgoodscode": { "description": "参考商品代码", "type": "string" }, "refgoodsid": { "description": "参考商品ID", "type": "integer" }, "tnqty": { "description": "T+N冻结总量", "type": "number" }, "tnusedqty": { "description": "T+N使用量(可以使用T+N的冻结数量)", "type": "number" }, "trademode": { "description": "交易模式", "type": "integer" }, "tradeproperty": { "description": "交易属性", "type": "integer" }, "usedmargin": { "description": "占用保证金[商品币种]", "type": "number" } } }, "pb.GoodsMarginCfgStruct": { "type": "object", "properties": { "CustomerTypeID": { "description": "投资者客户类型", "type": "integer" }, "GoodsID": { "description": "商品ID", "type": "integer" }, "IsDefault": { "description": "是否默认标志位", "type": "integer" }, "LockMarginValue": { "description": "锁仓保证金", "type": "number" }, "MarginAlgorithm": { "description": "保证金计算方式", "type": "integer" }, "MarketMarginValue": { "description": "即市保证金值", "type": "number" }, "RealMarginAlgorithm": { "description": "实付保证金计算方式", "type": "integer" }, "RealMarginValue": { "description": "实付比例", "type": "number" }, "ReckonMarginValue": { "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.HistoryTikData": { "type": "object", "properties": { "AV": { "description": "卖量", "type": "integer" }, "Ask": { "description": "卖价", "type": "number" }, "BV": { "description": "买量", "type": "integer" }, "Bid": { "description": "买价", "type": "number" }, "HI": { "description": "单笔持仓", "type": "integer" }, "HV": { "description": "持仓量", "type": "integer" }, "PE": { "description": "现价", "type": "number" }, "TDR": { "description": "交易方向,0:买 1:卖", "type": "integer" }, "TK": { "description": "交易类型", "type": "integer" }, "TS": { "description": "行情时间文本", "type": "string" }, "TT": { "description": "现金额", "type": "number" }, "Vol": { "description": "现量", "type": "integer" } } }, "quote.QueryQuoteDayRsp": { "type": "object", "properties": { "ask": { "description": "卖1", "type": "number" }, "ask10": { "description": "卖10", "type": "number" }, "ask2": { "description": "卖2", "type": "number" }, "ask3": { "description": "卖3", "type": "number" }, "ask4": { "description": "卖4", "type": "number" }, "ask5": { "description": "卖5", "type": "number" }, "ask6": { "description": "卖6", "type": "number" }, "ask7": { "description": "卖7", "type": "number" }, "ask8": { "description": "卖8", "type": "number" }, "ask9": { "description": "卖9", "type": "number" }, "askorderid": { "description": "卖单号1", "type": "integer" }, "askorderid2": { "description": "卖单号2", "type": "integer" }, "askorderid3": { "description": "卖单号3", "type": "integer" }, "askorderid4": { "description": "卖单号4", "type": "integer" }, "askorderid5": { "description": "卖单号5", "type": "integer" }, "askordervolume": { "description": "卖单量1", "type": "integer" }, "askordervolume10": { "description": "卖单量10", "type": "integer" }, "askordervolume2": { "description": "卖单量2", "type": "integer" }, "askordervolume3": { "description": "卖单量3", "type": "integer" }, "askordervolume4": { "description": "卖单量4", "type": "integer" }, "askordervolume5": { "description": "卖单量5", "type": "integer" }, "askordervolume6": { "description": "卖单量6", "type": "integer" }, "askordervolume7": { "description": "卖单量7", "type": "integer" }, "askordervolume8": { "description": "卖单量8", "type": "integer" }, "askordervolume9": { "description": "卖单量9", "type": "integer" }, "askqueueinfo": { "description": "大利市卖港股用", "type": "string" }, "askvolume": { "description": "卖量1", "type": "integer" }, "askvolume10": { "description": "卖量10", "type": "integer" }, "askvolume2": { "description": "卖量2", "type": "integer" }, "askvolume3": { "description": "卖量3", "type": "integer" }, "askvolume4": { "description": "卖量4", "type": "integer" }, "askvolume5": { "description": "卖量5", "type": "integer" }, "askvolume6": { "description": "卖量6", "type": "integer" }, "askvolume7": { "description": "卖量7", "type": "integer" }, "askvolume8": { "description": "卖量8", "type": "integer" }, "askvolume9": { "description": "卖量9", "type": "integer" }, "averageprice": { "description": "均价", "type": "number" }, "bid": { "description": "买1", "type": "number" }, "bid10": { "description": "买10", "type": "number" }, "bid2": { "description": "买2", "type": "number" }, "bid3": { "description": "买3", "type": "number" }, "bid4": { "description": "买4", "type": "number" }, "bid5": { "description": "买5", "type": "number" }, "bid6": { "description": "买6", "type": "number" }, "bid7": { "description": "买7", "type": "number" }, "bid8": { "description": "买8", "type": "number" }, "bid9": { "description": "买9", "type": "number" }, "bidorderid": { "description": "买单号1", "type": "integer" }, "bidorderid2": { "description": "买单号2", "type": "integer" }, "bidorderid3": { "description": "买单号3", "type": "integer" }, "bidorderid4": { "description": "买单号4", "type": "integer" }, "bidorderid5": { "description": "买单号5", "type": "integer" }, "bidordervolume": { "description": "买单量1", "type": "integer" }, "bidordervolume10": { "description": "买单量10", "type": "integer" }, "bidordervolume2": { "description": "买单量2", "type": "integer" }, "bidordervolume3": { "description": "买单量3", "type": "integer" }, "bidordervolume4": { "description": "买单量4", "type": "integer" }, "bidordervolume5": { "description": "买单量5", "type": "integer" }, "bidordervolume6": { "description": "买单量6", "type": "integer" }, "bidordervolume7": { "description": "买单量7", "type": "integer" }, "bidordervolume8": { "description": "买单量8", "type": "integer" }, "bidordervolume9": { "description": "买单量9", "type": "integer" }, "bidqueueinfo": { "description": "大利市买港股用", "type": "string" }, "bidvolume": { "description": "买量1", "type": "integer" }, "bidvolume10": { "description": "买量10", "type": "integer" }, "bidvolume2": { "description": "买量2", "type": "integer" }, "bidvolume3": { "description": "买量3", "type": "integer" }, "bidvolume4": { "description": "买量4", "type": "integer" }, "bidvolume5": { "description": "买量5", "type": "integer" }, "bidvolume6": { "description": "买量6", "type": "integer" }, "bidvolume7": { "description": "买量7", "type": "integer" }, "bidvolume8": { "description": "买量8", "type": "integer" }, "bidvolume9": { "description": "买量9", "type": "integer" }, "calloptionpremiums": { "description": "认购期权1", "type": "integer" }, "calloptionpremiums2": { "description": "认购期权2", "type": "integer" }, "calloptionpremiums3": { "description": "认购期权3", "type": "integer" }, "calloptionpremiums4": { "description": "认购期权4", "type": "integer" }, "calloptionpremiums5": { "description": "认购期权5", "type": "integer" }, "cleartime": { "description": "清盘时间", "type": "integer" }, "exchangecode": { "description": "交易所代码", "type": "integer" }, "exchangedate": { "description": "交易日", "type": "integer" }, "goodscode": { "description": "商品代码", "type": "string" }, "grepmarketprice": { "description": "暗盘价 港股专用", "type": "number" }, "highest": { "description": "最高价", "type": "number" }, "holdincrement": { "description": "单笔持仓", "type": "integer" }, "holdvolume": { "description": "持仓", "type": "integer" }, "iep": { "description": "平衡价 港股专用", "type": "number" }, "iev": { "description": "平衡量 港股专用", "type": "number" }, "inventory": { "description": "库存", "type": "integer" }, "iscleared": { "description": "是否清盘标志", "type": "integer" }, "issettled": { "description": "是否结算标志", "type": "integer" }, "last": { "description": "最新价", "type": "number" }, "lastlot": { "description": "最新成交手数", "type": "integer" }, "lasttime": { "description": "行情时间(只有现价变化行情时间才变化)", "type": "string" }, "lastturnover": { "description": "最新成交金额", "type": "number" }, "lastvolume": { "description": "最新成交量", "type": "integer" }, "limitdown": { "description": "跌停价", "type": "number" }, "limitup": { "description": "涨停价", "type": "number" }, "lowest": { "description": "最低价", "type": "number" }, "nontotalholdervolume": { "description": "非交易持仓量", "type": "integer" }, "nontotallot": { "description": "非交易总手数", "type": "integer" }, "nontotalturnover": { "description": "非交易总金额", "type": "integer" }, "nontotalvolume": { "description": "非交易总量", "type": "integer" }, "opened": { "description": "开盘价", "type": "number" }, "opentime": { "description": "开盘时间", "type": "string" }, "orderid": { "description": "序号", "type": "integer" }, "preclose": { "description": "昨收", "type": "number" }, "preholdvolume": { "description": "昨持仓", "type": "integer" }, "presettle": { "description": "昨结价", "type": "number" }, "publictradetype": { "description": "公共交易标志类型 港股专用", "type": "string" }, "putoptionpremiums": { "description": "认沽期权1", "type": "integer" }, "putoptionpremiums2": { "description": "认沽期权2", "type": "integer" }, "putoptionpremiums3": { "description": "认沽期权3", "type": "integer" }, "putoptionpremiums4": { "description": "认沽期权4", "type": "integer" }, "putoptionpremiums5": { "description": "认沽期权5", "type": "integer" }, "settle": { "description": "结算价", "type": "number" }, "strikeprice": { "description": "发行价", "type": "number" }, "totalaskvolume": { "description": "内盘", "type": "integer" }, "totalbidvolume": { "description": "外盘", "type": "integer" }, "totallot": { "description": "总手数", "type": "integer" }, "totalturnover": { "description": "总金额", "type": "number" }, "totalvolume": { "description": "总量", "type": "integer" }, "utclasttime": { "description": "utc的行情时间", "type": "string" } } }, "quote.QueryTSDataRsp": { "type": "object", "properties": { "Count": { "description": "交易日应有数据个数", "type": "integer" }, "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" }, "runSteps": { "description": "交易日开休市计划", "type": "array", "items": { "$ref": "#/definitions/quote.TSDataRunStep" } }, "startTime": { "description": "开始时间", "type": "string" }, "tradeDate": { "description": "交易日", "type": "string" } } }, "quote.TSDataRunStep": { "type": "object", "properties": { "end": { "description": "真实结束时间", "type": "string" }, "endflag": { "description": "结束日标识 - (-1:上日 0:当日 1:次日 )", "type": "integer" }, "endtime": { "description": "结束时间(HH:mm)", "type": "string" }, "endweekday": { "description": "结束周几", "type": "integer" }, "groupid": { "description": "分组ID", "type": "integer" }, "runstep": { "description": "运行阶段 - 2:连续交易", "type": "integer" }, "sectionid": { "description": "从 1 开始 往下编 [0为系统清盘、结算时间] SectionId = 0时,开始时间=清盘时间 开始周几= 清盘周几, 结束时间=结算时间 结束周几=结算周几", "type": "integer" }, "start": { "description": "真实开始时间", "type": "string" }, "startflag": { "description": "开始日标识 - (-1:上日 0:当日 1:次日 )", "type": "integer" }, "starttime": { "description": "起始时间(HH:mm)", "type": "string" }, "startweekday": { "description": "起始周几", "type": "integer" }, "tradeweekday": { "description": "交易日归属 - 0:星期天、1:星期一、2:星期二、3:星期三、4:星期四、5:星期五、6:星期六", "type": "integer" } } }, "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": { "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" }, "operatetypename": { "description": "资金操作类型名称(显示)", "type": "string" }, "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": { "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" }, "operatetypename": { "description": "资金操作类型名称(显示)", "type": "string" }, "relationorderid": { "description": "关联单号", "type": "string" }, "remark": { "description": "备注", "type": "string" }, "trademode": { "description": "交易模式", "type": "integer" } } }, "tencent.CreateFlowByTemplateDirectlyReq": { "type": "object", "required": [ "userESignRecordID", "userType" ], "properties": { "organizationInfo": { "description": "签署企业信息,用户类型为企业时必填", "$ref": "#/definitions/tencent.OrganizationInfo" }, "personInfo": { "description": "签署人信息,用户类型为个人时必填", "$ref": "#/definitions/tencent.PersonInfo" }, "userESignRecordID": { "description": "用户电子签记录表ID 只有当前状态是1和4的电子签记录才能发起合同签署", "type": "integer" }, "userType": { "description": "用户类型 1-个人 2-企业", "type": "integer" } } }, "tencent.CreateFlowByTemplateDirectlyRsp": { "type": "object", "properties": { "flowId": { "description": "流程编号", "type": "string" }, "signUrl": { "description": "合同签署小程序URL", "type": "string" } } }, "tencent.InitTencentESSReq": { "type": "object", "required": [ "memberUserId", "userId" ], "properties": { "memberUserId": { "description": "所属会员ID", "type": "integer" }, "userId": { "description": "用户ID", "type": "integer" } } }, "tencent.OrganizationInfo": { "type": "object", "properties": { "name": { "description": "企业签署方工商营业执照上的企业名称", "type": "string" } } }, "tencent.PersonInfo": { "type": "object", "properties": { "idCardNumber": { "description": "身份证号码,目前只支持身份证", "type": "string" }, "mobile": { "description": "手机号码", "type": "string" }, "name": { "description": "姓名", "type": "string" } } }, "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" } } }, "user.LoginQueryRsp": { "type": "object", "properties": { "areaRoles": { "description": "所属角色信息", "type": "array", "items": { "$ref": "#/definitions/models.Arearole" } }, "exchangeRateConfigs": { "description": "汇率信息", "type": "array", "items": { "$ref": "#/definitions/models.Exchangerateconfig" } }, "externalExchanges": { "description": "外部交易所", "type": "array", "items": { "$ref": "#/definitions/models.Externalexchange" } }, "goodsgroups": { "description": "商品组", "type": "array", "items": { "$ref": "#/definitions/models.Goodsgroup" } }, "loginAccount": { "description": "登录账号", "$ref": "#/definitions/models.Loginaccount" }, "markets": { "description": "市场", "type": "array", "items": { "$ref": "#/definitions/models.Market" } }, "systemParams": { "description": "系统参数", "type": "array", "items": { "$ref": "#/definitions/models.Systemparam" } }, "userAccount": { "description": "用户账号", "$ref": "#/definitions/models.Useraccount" }, "userInfo": { "description": "用户信息", "$ref": "#/definitions/models.Userinfo" }, "username": { "description": "用户姓名", "type": "string" } } }, "user.UpdateUserHeadUrlReq": { "type": "object", "required": [ "headurl", "userID" ], "properties": { "headurl": { "type": "string" }, "userID": { "type": "integer" } } }, "user.UpdateUserInfoWechatAndEmailReq": { "type": "object", "required": [ "userID" ], "properties": { "email": { "description": "邮箱地址,如不必修改则不传,传空为清除邮箱地址", "type": "string" }, "userID": { "description": "用户ID", "type": "integer" }, "wechat": { "description": "微信号,如不必修改则不传,传空为清除微信号", "type": "string" } } }, "zhongrong.GetUserInfoRsp": { "type": "object", "properties": { "customername": { "description": "客户名称", "type": "string" }, "userid": { "description": "用户ID", "type": "integer" } } } }, "securityDefinitions": { "ApiKeyAuth": { "type": "apiKey", "name": "Authorization", "in": "header" }, "Group": { "type": "apiKey", "name": "Group", "in": "header" }, "LoginID": { "type": "apiKey", "name": "LoginID", "in": "header" } } }