| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- {
- "swagger": "2.0",
- "info": {
- "description": "新的查询服务,替代原通用查询服务。",
- "title": "MTP2.0 查询服务 API",
- "termsOfService": "http://muchinfo.cn",
- "contact": {},
- "license": {},
- "version": "1.0"
- },
- "basePath": "/api",
- "paths": {
- "/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"
- }
- }
- }
- }
- },
- "/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"
- }
- }
- }
- }
- }
- },
- "definitions": {
- "app.Response": {
- "type": "object",
- "properties": {
- "code": {
- "type": "integer"
- },
- "data": {
- "type": "object"
- },
- "msg": {
- "type": "string"
- }
- }
- },
- "cptrade.Cptradepresaleapply": {
- "type": "object",
- "required": [
- "applyid"
- ],
- "properties": {
- "accountid": {
- "description": "申请人账户ID",
- "type": "integer"
- },
- "applyid": {
- "description": "申请ID(181+Unix秒时间戳(10位)+xxxxxx)",
- "type": "integer"
- },
- "applystatus": {
- "description": "申请状态 - 1:已提交 2:初审通过 3:初审拒绝 4:初审失败 5复审通过 6:复审拒绝 7:复审失败 8:已撤销",
- "type": "integer"
- },
- "applytime": {
- "description": "申请时间",
- "type": "string"
- },
- "attachmenturl": {
- "description": "附件地址",
- "type": "string"
- },
- "endtime": {
- "description": "预售结束时间",
- "type": "string"
- },
- "firstremark": {
- "description": "初审备注",
- "type": "string"
- },
- "goodscode": {
- "description": "商品代码",
- "type": "string"
- },
- "goodsname": {
- "description": "商品名称",
- "type": "string"
- },
- "handlestatus": {
- "description": "处理状态",
- "type": "integer"
- },
- "marketid": {
- "description": "预售市场ID",
- "type": "integer"
- },
- "presaleqty": {
- "description": "预售数量",
- "type": "integer"
- },
- "relatedgoodsid": {
- "description": "关联交易合约ID",
- "type": "integer"
- },
- "secondremark": {
- "description": "复审备注",
- "type": "string"
- },
- "starttime": {
- "description": "预售开始时间",
- "type": "string"
- },
- "tradedate": {
- "description": "交易日(yyyyMMdd)",
- "type": "string"
- },
- "userid": {
- "description": "申请人ID",
- "type": "integer"
- }
- }
- }
- },
- "securityDefinitions": {
- "ApiKeyAuth": {
- "type": "apiKey",
- "name": "token",
- "in": "header"
- }
- }
- }
|