| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759 |
- // GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
- // This file was generated by swaggo/swag
- package docs
- import (
- "bytes"
- "encoding/json"
- "strings"
- "github.com/alecthomas/template"
- "github.com/swaggo/swag"
- )
- var doc = `{
- "schemes": {{ marshal .Schemes }},
- "swagger": "2.0",
- "info": {
- "description": "{{.Description}}",
- "title": "{{.Title}}",
- "termsOfService": "http://muchinfo.cn",
- "contact": {},
- "license": {},
- "version": "{{.Version}}"
- },
- "host": "{{.Host}}",
- "basePath": "{{.BasePath}}",
- "paths": {
- "/CPTrade/QueryCPTradeMyBidInfos": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "产能预售"
- ],
- "summary": "查询产能预售我的出价信息",
- "parameters": [
- {
- "type": "integer",
- "description": "资金账户",
- "name": "accountid",
- "in": "query",
- "required": true
- },
- {
- "type": "integer",
- "description": "预售市场ID",
- "name": "marketid",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "预售商品ID",
- "name": "goodsid",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/cptrade.QueryCPTradeMyBidRsp"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/CPTrade/QueryCPTradeOrderDetail": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "产能预售"
- ],
- "summary": "查询产能预售委托单信息",
- "parameters": [
- {
- "type": "integer",
- "description": "预售商品ID",
- "name": "goodsid",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "预售市场ID",
- "name": "marketid",
- "in": "query"
- },
- {
- "type": "string",
- "description": "预售商品ID列表 - 格式:1,2,3",
- "name": "goodsids",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/cptrade.QueryCPTradeOrderDetailRsq"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/CPTrade/QueryMyCPTradeGoods": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "产能预售"
- ],
- "summary": "查询我的预售信息",
- "parameters": [
- {
- "type": "integer",
- "description": "资金账户",
- "name": "accountid",
- "in": "query",
- "required": true
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/cptrade.QueryMyCPTradeGoodsRsp"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/CPTrade/QueryPositionCancel": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "产能预售"
- ],
- "summary": "查询远期订单注销申请信息",
- "parameters": [
- {
- "type": "integer",
- "description": "账户ID",
- "name": "userid",
- "in": "query",
- "required": true
- },
- {
- "type": "integer",
- "description": "注销ID",
- "name": "cancelid",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "资金账户ID",
- "name": "accountid",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/cptrade.Cptradepositioncancel"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/CPTrade/QueryPreasleApply": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "产能预售"
- ],
- "summary": "查询产能预售申请信息",
- "parameters": [
- {
- "type": "integer",
- "description": "账户ID",
- "name": "userid",
- "in": "query",
- "required": true
- },
- {
- "type": "integer",
- "description": "申请ID",
- "name": "applyid",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "资金账户ID",
- "name": "accountid",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/cptrade.Cptradepresaleapply"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/CPTrade/QueryPresaleGoodsEx": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "产能预售"
- ],
- "summary": "查询产能预售商品扩展信息",
- "parameters": [
- {
- "type": "integer",
- "description": "预售商品ID",
- "name": "goodsid",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "预售市场ID",
- "name": "marketid",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "预售模式 - 1:一口价 2:大宗式竞拍",
- "name": "presalemode",
- "in": "query"
- },
- {
- "type": "string",
- "description": "预售商品ID列表 - 格式:1,2,3",
- "name": "goodsids",
- "in": "query"
- },
- {
- "type": "string",
- "description": "预售商品代码",
- "name": "goodscode",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/cptrade.QueryPresaleGoodsExRsp"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/CPTrade/QueryUserGoodsData": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "产能预售"
- ],
- "summary": "查询远期订单信息",
- "parameters": [
- {
- "type": "integer",
- "description": "资金账户ID",
- "name": "accountid",
- "in": "query",
- "required": true
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/cptrade.Cptradeusergoodsdata"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/Common/QueryTableDefine": {
- "get": {
- "produces": [
- "application/json"
- ],
- "tags": [
- "通用服务"
- ],
- "summary": "查询交易端列表头信息",
- "parameters": [
- {
- "type": "string",
- "description": "表key",
- "name": "TableKey",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/models.Tablecolumnconfig"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/Common/QueryTraderMenu": {
- "get": {
- "produces": [
- "application/json"
- ],
- "tags": [
- "通用服务"
- ],
- "summary": "查询交易端菜单",
- "parameters": [
- {
- "type": "integer",
- "description": "登录账号",
- "name": "loginid",
- "in": "query",
- "required": true
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/common.QueryTraderMenuRsp"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/Delivery/QueryDeliveryRelation": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "交割服务"
- ],
- "summary": "查询商品交割关系表",
- "parameters": [
- {
- "type": "integer",
- "description": "商品ID",
- "name": "goodsid",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "品种ID",
- "name": "deliverygoodsid",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "市场ID",
- "name": "marketid",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/delivery.QueryDeliveryRelationRsp"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/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"
- }
- }
- }
- }
- },
- "/Order/QueryTradeDetail": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "通用单据"
- ],
- "summary": "成交单查询(合约市场)",
- "parameters": [
- {
- "type": "string",
- "description": "资金账户 - 格式:1,2,3",
- "name": "accountID",
- "in": "query",
- "required": true
- },
- {
- "type": "integer",
- "description": "成交单号",
- "name": "tradeID",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "委托单号",
- "name": "orderID",
- "in": "query"
- },
- {
- "type": "string",
- "description": "交易模式 - 格式:1,2,3",
- "name": "tradeMode",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "委托单据类型",
- "name": "buildType",
- "in": "query"
- },
- {
- "type": "string",
- "description": "成交类别 - 格式:1,2,3",
- "name": "tradeType",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/order.QueryTradeDetailRsp"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/Order/QueryTradeOrderDetail": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "通用单据"
- ],
- "summary": "委托单查询请求(合约市场)",
- "parameters": [
- {
- "type": "string",
- "description": "资金账户 - 格式:1,2,3",
- "name": "accountID",
- "in": "query",
- "required": true
- },
- {
- "type": "string",
- "description": "交易模式 - 格式:1,2,3",
- "name": "tradeMode",
- "in": "query"
- },
- {
- "type": "string",
- "description": "委托状态 - 格式:1,2,3",
- "name": "orderStatus",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "委托单号",
- "name": "orderID",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/order.QueryTradeOrderDetailRsp"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/Order/QueryTradePosition": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "通用单据"
- ],
- "summary": "持仓汇总查询(合约市场)",
- "parameters": [
- {
- "type": "string",
- "description": "资金账户 - 格式:1,2,3",
- "name": "accountID",
- "in": "query",
- "required": true
- },
- {
- "type": "string",
- "description": "交易模式 - 格式:1,2,3",
- "name": "tradeMode",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/order.QueryTradePositionRsp"
- }
- },
- "500": {
- "description": "Internal Server Error",
- "schema": {
- "$ref": "#/definitions/app.Response"
- }
- }
- }
- }
- },
- "/SZDZ/QueryConvertConfig": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "定制【尚志大宗】"
- ],
- "summary": "查询交易系统转换设置",
- "parameters": [
- {
- "type": "integer",
- "description": "转换类型 - 1:金点赞转交易 2:金点拍转交易",
- "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"
- }
- ],
- "responses": {
- "200": {
- "description": "OK",
- "schema": {
- "$ref": "#/definitions/szdz.QueryRecieptOrderRsp"
- }
- },
- "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"
- }
- }
- }
- }
- },
- "/User/GetLoginID": {
- "get": {
- "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/QueryUserInfo": {
- "get": {
- "security": [
- {
- "ApiKeyAuth": []
- }
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "用户信息"
- ],
- "summary": "获取用户信息",
- "parameters": [
- {
- "type": "string",
- "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/QueryUserReferNum": {
- "get": {
- "produces": [
- "application/json"
- ],
- "tags": [
- "用户信息"
- ],
- "summary": "获取用户邀请码",
- "parameters": [
- {
- "type": "string",
- "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"
- }
- }
- }
- }
- },
- "/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"
- },
- "page": {
- "description": "页码",
- "type": "integer"
- },
- "pagesize": {
- "description": "每页条数",
- "type": "integer"
- },
- "total": {
- "description": "总条数",
- "type": "integer"
- }
- }
- },
- "common.OperationPrimaryMenu": {
- "type": "object",
- "properties": {
- "Children": {
- "description": "二级功能菜单",
- "type": "array",
- "items": {
- "$ref": "#/definitions/common.OperationSecondaryMenu"
- }
- },
- "Key": {
- "description": "菜单KEY",
- "type": "string"
- },
- "Label": {
- "description": "菜单标题",
- "type": "string"
- }
- }
- },
- "common.OperationSecondaryMenu": {
- "type": "object",
- "properties": {
- "Key": {
- "description": "菜单KEY",
- "type": "string"
- },
- "Label": {
- "description": "菜单标题",
- "type": "string"
- },
- "TabList": {
- "description": "三级功能菜单",
- "type": "array",
- "items": {
- "$ref": "#/definitions/common.OperationTabMenu"
- }
- }
- }
- },
- "common.OperationTabMenu": {
- "type": "object",
- "properties": {
- "Key": {
- "description": "菜单KEY",
- "type": "string"
- },
- "Label": {
- "description": "菜单标题",
- "type": "string"
- }
- }
- },
- "common.QueryTraderMenuRsp": {
- "type": "object",
- "properties": {
- "OperationMenu": {
- "description": "功能菜单",
- "type": "array",
- "items": {
- "$ref": "#/definitions/common.OperationPrimaryMenu"
- }
- },
- "QuoteMenu": {
- "description": "报价牌分类菜单",
- "type": "array",
- "items": {
- "$ref": "#/definitions/common.QuotePrimaryMenu"
- }
- }
- }
- },
- "common.QuotePrimaryMenu": {
- "type": "object",
- "properties": {
- "Index": {
- "description": "序号",
- "type": "integer"
- },
- "Key": {
- "description": "键名",
- "type": "string"
- },
- "Name": {
- "description": "菜单名称",
- "type": "string"
- },
- "SubMenus": {
- "description": "子菜单",
- "type": "array",
- "items": {
- "$ref": "#/definitions/common.QuoteSecondaryMenu"
- }
- },
- "SubTitleType": {
- "description": "子菜单标题模式:0-市场名称;1-外部交易所名称",
- "type": "integer"
- },
- "TradeModes": {
- "description": "包含市场交易类型",
- "type": "string"
- }
- }
- },
- "common.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"
- }
- }
- },
- "cptrade.Cptradepositioncancel": {
- "type": "object",
- "required": [
- "cancelid"
- ],
- "properties": {
- "accountid": {
- "description": "申请人账户ID",
- "type": "integer"
- },
- "applystatus": {
- "description": "申请状态 - 1:已提交 2:初审通过 3:初审拒绝 4:初审失败 5复审通过 6:复审拒绝 7:复审失败 8:已撤销",
- "type": "integer"
- },
- "applytime": {
- "description": "申请时间",
- "type": "string"
- },
- "cancelid": {
- "description": "注销ID(SEQ_CPTRADE_POSITIONCANCEL)",
- "type": "integer"
- },
- "cancelqty": {
- "description": "注销数量",
- "type": "integer"
- },
- "createtime": {
- "description": "创建时间",
- "type": "string"
- },
- "creatorid": {
- "description": "创建人ID",
- "type": "integer"
- },
- "creatorname": {
- "description": "创建人",
- "type": "string"
- },
- "goodscode": {
- "description": "订单商品代码",
- "type": "string"
- },
- "goodsid": {
- "description": "商品ID",
- "type": "integer"
- },
- "goodsname": {
- "description": "订单商品名称",
- "type": "string"
- },
- "goodunit": {
- "description": "报价单位",
- "type": "string"
- },
- "handlestatus": {
- "description": "处理状态",
- "type": "integer"
- },
- "marketid": {
- "description": "市场ID",
- "type": "integer"
- },
- "marketname": {
- "description": "市场名称",
- "type": "string"
- },
- "tradedate": {
- "description": "交易日(yyyyMMdd)",
- "type": "string"
- },
- "userid": {
- "description": "申请人ID",
- "type": "integer"
- }
- }
- },
- "cptrade.Cptradepresaleapply": {
- "type": "object",
- "required": [
- "applyid"
- ],
- "properties": {
- "accountid": {
- "description": "申请人账户ID",
- "type": "integer"
- },
- "applyid": {
- "description": "申请ID(181+Unix秒时间戳(10位)+xxxxxx)",
- "type": "integer"
- },
- "applyremark": {
- "description": "申请备注",
- "type": "string"
- },
- "applystatus": {
- "description": "申请状态 - 1:已提交 2:初审通过 3:初审拒绝 4:初审失败 5复审通过 6:复审拒绝 7:复审失败 8:已撤销",
- "type": "integer"
- },
- "applytime": {
- "description": "申请时间",
- "type": "string"
- },
- "attachmenturl": {
- "description": "附件地址",
- "type": "string"
- },
- "endtime": {
- "description": "预售结束时间",
- "type": "string"
- },
- "goodscode": {
- "description": "商品代码",
- "type": "string"
- },
- "goodsid": {
- "description": "商品ID",
- "type": "integer"
- },
- "goodsname": {
- "description": "商品名称",
- "type": "string"
- },
- "goodunit": {
- "description": "报价单位",
- "type": "string"
- },
- "handlestatus": {
- "description": "处理状态",
- "type": "integer"
- },
- "marketid": {
- "description": "预售市场ID",
- "type": "integer"
- },
- "marketname": {
- "description": "预售市场名称",
- "type": "string"
- },
- "presaleqty": {
- "description": "预售数量",
- "type": "integer"
- },
- "relatedgoodscode": {
- "description": "关联交易合约代码",
- "type": "string"
- },
- "relatedgoodsid": {
- "description": "关联交易合约ID",
- "type": "integer"
- },
- "relatedgoodsname": {
- "description": "关联交易合约名称",
- "type": "string"
- },
- "starttime": {
- "description": "预售开始时间",
- "type": "string"
- },
- "tradedate": {
- "description": "交易日(yyyyMMdd)",
- "type": "string"
- },
- "trademode": {
- "description": "交易模式 - 16:挂牌点选 21:大宗竞拍",
- "type": "integer"
- },
- "userid": {
- "description": "申请人ID",
- "type": "integer"
- }
- }
- },
- "cptrade.Cptradeusergoodsdata": {
- "type": "object",
- "required": [
- "accountid",
- "goodsid"
- ],
- "properties": {
- "EnabledQty": {
- "description": "可用量",
- "type": "integer"
- },
- "GoodsCode": {
- "description": "订单商品代码",
- "type": "string"
- },
- "GoodsName": {
- "description": "订单商品名称",
- "type": "string"
- },
- "WRStandardCode": {
- "description": "仓单标准代码",
- "type": "string"
- },
- "WRStandardName": {
- "description": "仓单标准名称",
- "type": "string"
- },
- "accountid": {
- "description": "账户ID",
- "type": "integer"
- },
- "cancelqty": {
- "description": "注销量",
- "type": "integer"
- },
- "curpresaleqty": {
- "description": "当前预售量",
- "type": "integer"
- },
- "deliveryqty": {
- "description": "交割量",
- "type": "integer"
- },
- "freezeamount": {
- "description": "冻结金额",
- "type": "number"
- },
- "goodsid": {
- "description": "商品ID",
- "type": "integer"
- },
- "goodunit": {
- "description": "报价单位",
- "type": "string"
- },
- "hasspotfreeze": {
- "description": "是否有现货冻结 - 0:否 1:有",
- "type": "integer"
- },
- "inqty": {
- "description": "转入量(总数量)",
- "type": "integer"
- },
- "marketid": {
- "description": "市场ID",
- "type": "integer"
- },
- "presaledamount": {
- "description": "已预售总金额",
- "type": "integer"
- },
- "presaledqty": {
- "description": "已预售量",
- "type": "integer"
- },
- "userid": {
- "description": "用户ID",
- "type": "integer"
- },
- "wrstandardid": {
- "description": "仓单标准ID",
- "type": "integer"
- }
- }
- },
- "cptrade.QueryCPTradeMyBidRsp": {
- "type": "object",
- "required": [
- "accountid",
- "goodsid",
- "marketid",
- "orderid",
- "orderqty",
- "ordertime",
- "tradeprice",
- "tradeqty"
- ],
- "properties": {
- "accountid": {
- "description": "账户ID[报价币种]",
- "type": "integer"
- },
- "goodsid": {
- "description": "商品ID",
- "type": "integer"
- },
- "goodunit": {
- "description": "报价单位",
- "type": "string"
- },
- "marketid": {
- "description": "市场ID",
- "type": "integer"
- },
- "orderid": {
- "description": "委托单号(100+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)",
- "type": "integer"
- },
- "orderprice": {
- "description": "委托价格",
- "type": "number"
- },
- "orderqty": {
- "description": "委托数量",
- "type": "integer"
- },
- "ordertime": {
- "description": "委托时间",
- "type": "string"
- },
- "ordertotalprice": {
- "description": "货款金额(委托总价格=委托价格*委托数量*合约单位)",
- "type": "number"
- },
- "ordertotalweight": {
- "description": "竞拍总重量(委托总重量=委托数量*合约单位)",
- "type": "integer"
- },
- "totaltotalprice": {
- "description": "成交货款金额(成交总价格=成交价格*成交数量*合约单位)",
- "type": "number"
- },
- "tradeprice": {
- "description": "成交价格",
- "type": "number"
- },
- "tradeqty": {
- "description": "成交数量",
- "type": "integer"
- }
- }
- },
- "cptrade.QueryCPTradeOrderDetailRsq": {
- "type": "object",
- "required": [
- "accountid",
- "buildtype",
- "buyorsell",
- "goodsid",
- "marketid",
- "memberuserid",
- "operatetype",
- "orderqty",
- "ordertime",
- "pricemode",
- "strorderid",
- "tradedate",
- "validtype"
- ],
- "properties": {
- "accountid": {
- "description": "账户ID[报价币种]",
- "type": "integer"
- },
- "buildtype": {
- "description": "委托单据类型 - 1:建仓 2:平仓 3:先平后建",
- "type": "integer"
- },
- "buyorsell": {
- "description": "买卖 - 0:买 1:卖",
- "type": "integer"
- },
- "cancelorderid": {
- "description": "撤单单号(撤单时填写)",
- "type": "integer"
- },
- "cancelqty": {
- "description": "撤单数量",
- "type": "integer"
- },
- "clientordertime": {
- "description": "客户端委托时间",
- "type": "string"
- },
- "clientticket": {
- "description": "客户端流水号",
- "type": "string"
- },
- "clienttype": {
- "description": "客户端类型 - 0:保留为未填终端类型 1:PC管理端 2:PC交易端 3:手机客户端_安卓 4:网页客户端 5:微信客户端 6:手机客户端_苹果 7:网上开户客户端 8:无效终端编号 9:报价终端(中江)",
- "type": "integer"
- },
- "closeexchagechargevalue": {
- "description": "平仓交易所手续费设置值",
- "type": "number"
- },
- "closefeealgorithm": {
- "description": "平仓手续费收取方式 1:比率 2:固定",
- "type": "integer"
- },
- "closefreezecharge": {
- "description": "平仓冻结手续费(先建后平操作,需要记录)",
- "type": "number"
- },
- "closememberchargevalue": {
- "description": "平仓会员手续费设置值",
- "type": "number"
- },
- "closeqty": {
- "description": "平仓数量(先建后平操作 需要记录)",
- "type": "integer"
- },
- "closetradeqty": {
- "description": "平仓成交数量(先建后平操作,需要记录)",
- "type": "integer"
- },
- "closeunfreezecharge": {
- "description": "平仓解冻手续费(先建后平操作,需要记录)",
- "type": "number"
- },
- "delistingtype": {
- "description": "摘牌类型 - 1:价格最优 2:点选成交",
- "type": "integer"
- },
- "freezecharge": {
- "description": "冻结手续费",
- "type": "number"
- },
- "freezemargin": {
- "description": "冻结保证金(冻结交易金额)",
- "type": "number"
- },
- "gcaccountid": {
- "description": "账户ID[合约币种]",
- "type": "integer"
- },
- "goodsid": {
- "description": "商品ID",
- "type": "integer"
- },
- "isconfirmexercise": {
- "description": "是否确认行权- 0:否 1:是",
- "type": "integer"
- },
- "ispreexercise": {
- "description": "是否预申报- 0:否 1:是",
- "type": "integer"
- },
- "listingselecttype": {
- "description": "挂牌点选类型 - 1:挂牌 2:摘牌 3:先摘后挂",
- "type": "integer"
- },
- "marginalgorithm": {
- "description": "保证金收取方式 1:比率 2:固定",
- "type": "integer"
- },
- "marginvalue": {
- "description": "即市保证金设置值",
- "type": "number"
- },
- "marketid": {
- "description": "市场ID",
- "type": "integer"
- },
- "marketmaxsub": {
- "description": "市价最大偏移范围",
- "type": "number"
- },
- "memberuserid": {
- "description": "所属会员UserID",
- "type": "integer"
- },
- "openexchagechargevalue": {
- "description": "建仓交易所手续费设置值",
- "type": "number"
- },
- "openfeealgorithm": {
- "description": "建仓手续费收取方式 1:比率 2:固定",
- "type": "integer"
- },
- "openfreezecharge": {
- "description": "开仓冻结手续费(先建后平操作,需要记录)",
- "type": "number"
- },
- "openmemberchargevalue": {
- "description": "建仓会员手续费设置值",
- "type": "number"
- },
- "openqty": {
- "description": "开仓数量(先建后平操作,需要记录)",
- "type": "integer"
- },
- "opentradeqty": {
- "description": "开仓成交数量(先建后平操作,需要记录)",
- "type": "integer"
- },
- "openunfreezecharge": {
- "description": "开仓解冻手续费(先建后平操作,需要记录)",
- "type": "number"
- },
- "operatetype": {
- "description": "操作类型 - 1:正常下单 2:斩仓 3:转单 4:结算撤单 5:系统卖出(适用于先平后建的卖出) 6:行情源报价 7:(结算)到期强平 8:(结算)协议转让 9:系统对冲单 10:(结算)到期无效 11:交割协议转让 12:交割协议平仓 13:交割成交(所有权) 14:管理端强行平仓 15:管理端协议转让",
- "type": "integer"
- },
- "operatorid": {
- "description": "登录账号(LoginID)",
- "type": "integer"
- },
- "optiontype": {
- "description": "期权类型 - 1:认购(看涨) 2:认沽(看跌)",
- "type": "integer"
- },
- "orderprice": {
- "description": "委托价格",
- "type": "number"
- },
- "orderqty": {
- "description": "委托数量",
- "type": "integer"
- },
- "ordersrc": {
- "description": "委托来源 - 1:客户端 2:管理端 3:风控服务 4:交割服务 5:交易服务 6:交易日结 7:商品强平 8:管理端商品退市强平 9:交易接口 10:交割服务商被动(受托竞价) 11:预埋触发",
- "type": "integer"
- },
- "orderstatus": {
- "description": "委托状态 - 1: 委托请求 2:待冻结 3:委托成功 4: 委托失败 5:配对成功 6: 已撤销 7:部分成交 8:已成交 9:部成部撤 10:成交失败 11:已拒绝 12:经过摘牌(先摘后挂专用-先摘后挂已摘过) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用)",
- "type": "integer"
- },
- "ordertime": {
- "description": "委托时间",
- "type": "string"
- },
- "preexerciseprice": {
- "description": "预申报价格",
- "type": "number"
- },
- "premium": {
- "description": "权利金",
- "type": "number"
- },
- "preorderid": {
- "description": "关联预埋单号(止盈止损单时填写)",
- "type": "integer"
- },
- "pricemode": {
- "description": "取价方式 - 1:市价 2: 限价",
- "type": "integer"
- },
- "quoteid": {
- "description": "报价单ID",
- "type": "integer"
- },
- "relatedid": {
- "description": "关联单号(交割单)",
- "type": "integer"
- },
- "retcode": {
- "description": "错误代码",
- "type": "integer"
- },
- "sessionid": {
- "description": "会话ID",
- "type": "integer"
- },
- "strorderid": {
- "description": "委托单号",
- "type": "string"
- },
- "tradedate": {
- "description": "交易日(yyyyMMdd)",
- "type": "string"
- },
- "tradeproperty": {
- "description": "交易属性",
- "type": "integer"
- },
- "tradeqty": {
- "description": "成交数量",
- "type": "integer"
- },
- "unfreezecharge": {
- "description": "解冻手续费",
- "type": "number"
- },
- "unfreezemargin": {
- "description": "解冻保证金",
- "type": "number"
- },
- "updatetime": {
- "description": "更新时间",
- "type": "string"
- },
- "uuid": {
- "description": "发起端唯一id",
- "type": "string"
- },
- "validtime": {
- "description": "有效期限",
- "type": "string"
- },
- "validtype": {
- "description": "有效类型 - 1当日有效 2本周有效 3指定日期有效 4一直有效 5指定时间有效",
- "type": "integer"
- },
- "volumetype": {
- "description": "当时间有效类型为 “立即执行否则取消 IOC” 时,需要此项 - 0:任意量 1:最小量(暂时不支持) 2:全部量",
- "type": "integer"
- }
- }
- },
- "cptrade.QueryMyCPTradeGoodsRsp": {
- "type": "object",
- "required": [
- "goodscode",
- "goodsid",
- "goodsname",
- "marketid",
- "relatedgoodscode",
- "relatedgoodsname"
- ],
- "properties": {
- "accountid": {
- "description": "卖方账户ID",
- "type": "integer"
- },
- "agreeunit": {
- "description": "合约单位",
- "type": "number"
- },
- "applyid": {
- "description": "关联申请ID",
- "type": "integer"
- },
- "attachmenturl": {
- "description": "附件地址",
- "type": "string"
- },
- "createtime": {
- "description": "创建时间",
- "type": "string"
- },
- "currencyid": {
- "description": "报价货币ID",
- "type": "integer"
- },
- "decimalplace": {
- "description": "报价小数位",
- "type": "integer"
- },
- "endtime": {
- "description": "预售结束时间",
- "type": "string"
- },
- "floorprice": {
- "description": "底价[大宗式竞拍]",
- "type": "number"
- },
- "goodscode": {
- "description": "商品代码(预售)",
- "type": "string"
- },
- "goodsdetail": {
- "description": "详情[大宗]",
- "type": "string"
- },
- "goodsid": {
- "description": "商品ID(自增ID SEQ_GOODS)",
- "type": "integer"
- },
- "goodsname": {
- "description": "商品名称(预售)",
- "type": "string"
- },
- "goodunit": {
- "description": "报价单位",
- "type": "string"
- },
- "goodunitid": {
- "description": "报价单位ID",
- "type": "integer"
- },
- "marketid": {
- "description": "所属市场ID",
- "type": "integer"
- },
- "marketname": {
- "description": "预售市场名称",
- "type": "string"
- },
- "presaledamount": {
- "description": "已预售总金额(预售结束时更新)",
- "type": "number"
- },
- "presaledqty": {
- "description": "已预售量(预售结束时更新)",
- "type": "integer"
- },
- "presalemode": {
- "description": "预售模式 - 1:一口价 2:大宗式竞拍",
- "type": "integer"
- },
- "presaleqty": {
- "description": "预售数量",
- "type": "integer"
- },
- "refprice": {
- "description": "参考价格[一口价]",
- "type": "number"
- },
- "relatedgoodscode": {
- "description": "商品代码(订单)",
- "type": "string"
- },
- "relatedgoodsid": {
- "description": "关联交易合约ID",
- "type": "integer"
- },
- "relatedgoodsname": {
- "description": "商品名称(订单)",
- "type": "string"
- },
- "relatedmarketid": {
- "description": "关联交易合约市场ID",
- "type": "integer"
- },
- "sellstatus": {
- "description": "卖方处理状态 - 1:卖方头寸未处理 2:卖方头寸已处理",
- "type": "integer"
- },
- "startprice": {
- "description": "起拍价[大宗式竞拍]",
- "type": "number"
- },
- "starttime": {
- "description": "预售开始时间",
- "type": "string"
- },
- "tradedate": {
- "description": "交易日(yyyyMMdd)",
- "type": "string"
- },
- "tradeprice": {
- "description": "成交价[大宗]",
- "type": "number"
- },
- "userid": {
- "description": "卖方用户ID",
- "type": "integer"
- }
- }
- },
- "cptrade.QueryPresaleGoodsExRsp": {
- "type": "object",
- "required": [
- "goodsid"
- ],
- "properties": {
- "attachmenturl": {
- "description": "附件地址",
- "type": "string"
- },
- "createtime": {
- "description": "创建时间",
- "type": "string"
- },
- "endtime": {
- "description": "预售结束时间",
- "type": "string"
- },
- "floorprice": {
- "description": "底价[大宗式竞拍]",
- "type": "number"
- },
- "goodsdetail": {
- "description": "详情[大宗]",
- "type": "string"
- },
- "goodsid": {
- "description": "商品ID(预售)",
- "type": "integer"
- },
- "goodunit": {
- "description": "报价单位",
- "type": "string"
- },
- "marketid": {
- "description": "预售市场ID - 根据预售模式选择市场",
- "type": "integer"
- },
- "presaledamount": {
- "description": "已预售总金额(预售结束时更新)",
- "type": "number"
- },
- "presaledqty": {
- "description": "已预售量(预售结束时更新)",
- "type": "integer"
- },
- "presalemode": {
- "description": "预售模式 - 1:一口价 2:大宗式竞拍",
- "type": "integer"
- },
- "presaleqty": {
- "description": "预售数量",
- "type": "integer"
- },
- "refprice": {
- "description": "参考价格[一口价]",
- "type": "number"
- },
- "relatedgoodsid": {
- "description": "关联交易合约ID",
- "type": "integer"
- },
- "relatedmarketid": {
- "description": "关联交易合约市场ID",
- "type": "integer"
- },
- "sellstatus": {
- "description": "卖方处理状态 - 1:卖方头寸未处理 2:卖方头寸已处理",
- "type": "integer"
- },
- "startprice": {
- "description": "起拍价[大宗式竞拍]",
- "type": "number"
- },
- "starttime": {
- "description": "预售开始时间",
- "type": "string"
- },
- "tradedate": {
- "description": "交易日(yyyyMMdd)",
- "type": "string"
- },
- "tradeprice": {
- "description": "成交价[大宗]",
- "type": "number"
- }
- }
- },
- "delivery.QueryDeliveryRelationRsp": {
- "type": "object",
- "required": [
- "begindate",
- "enddate",
- "goodsid",
- "mindeliveryqty",
- "xdeliveryratio"
- ],
- "properties": {
- "begindate": {
- "description": "起始日期(yyyyMMdd)",
- "type": "string"
- },
- "buytemplateid": {
- "description": "买履约计划模板ID",
- "type": "integer"
- },
- "deliverygoodscode": {
- "description": "品种代码",
- "type": "string"
- },
- "deliverygoodsid": {
- "description": "交割商品",
- "type": "integer"
- },
- "deliverygoodsname": {
- "description": "品种名称",
- "type": "string"
- },
- "deliverymode": {
- "description": "交割方式 - 1:点选式 2:申报式",
- "type": "integer"
- },
- "deliverypricerule": {
- "description": "交割价规则- 1:行情价 2:建仓价",
- "type": "integer"
- },
- "deliverytype": {
- "description": "交割模式 - 1:X交割 2:X+P交割 3:X+C交割 4:X+P+C交割",
- "type": "integer"
- },
- "enddate": {
- "description": "结束日期(yyyyMMdd)",
- "type": "string"
- },
- "goodscode": {
- "description": "商品代码",
- "type": "string"
- },
- "goodsid": {
- "description": "交易合约ID",
- "type": "integer"
- },
- "goodsname": {
- "description": "商品名称",
- "type": "string"
- },
- "marketid": {
- "description": "市场ID",
- "type": "integer"
- },
- "mindeliveryqty": {
- "description": "最小交割系数(K)",
- "type": "integer"
- },
- "p2deliveryprice": {
- "description": "P2合约价格(商品价时填写0,固定值时填写固定值)",
- "type": "number"
- },
- "p2deliveryratio": {
- "description": "P2合约系数(p)",
- "type": "integer"
- },
- "p2goodsid": {
- "description": "P2合约ID",
- "type": "integer"
- },
- "p2pricemode": {
- "description": "P2合约价格方式 - 1:商品价 2:固定值",
- "type": "integer"
- },
- "pdeliveryprice": {
- "description": "P合约价格(商品价时填写0,固定值时填写固定值)",
- "type": "number"
- },
- "pdeliveryratio": {
- "description": "P合约系数(n)",
- "type": "integer"
- },
- "pgoodsid": {
- "description": "P合约ID",
- "type": "integer"
- },
- "ppricemode": {
- "description": "P合约价格方式 - 1:商品价 2:固定值",
- "type": "integer"
- },
- "rratio": {
- "description": "兑换系数(R)",
- "type": "integer"
- },
- "rratio1": {
- "description": "兑换系数(交易合约)(R1)",
- "type": "integer"
- },
- "rratio2": {
- "description": "兑换系数(仓单标准)(R2)",
- "type": "integer"
- },
- "selltemplateid": {
- "description": "卖履约计划模板ID",
- "type": "integer"
- },
- "wrstandardid": {
- "description": "仓单标准ID",
- "type": "integer"
- },
- "xdeliveryratio": {
- "description": "交易合约系数(m)",
- "type": "integer"
- }
- }
- },
- "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"
- }
- }
- },
- "models.Szdz3convertconfig": {
- "type": "object",
- "required": [
- "converttype",
- "innergoodsid",
- "outergoodscode"
- ],
- "properties": {
- "converttype": {
- "description": "转换类型 - 1:金点赞转交易 2:金点拍转交易",
- "type": "integer"
- },
- "createtime": {
- "description": "创建时间",
- "type": "string"
- },
- "creatorid": {
- "description": "创建人",
- "type": "integer"
- },
- "daymaxvalue": {
- "description": "当日最大转入限制",
- "type": "number"
- },
- "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.Tablecolumnconfig": {
- "type": "object",
- "required": [
- "autoid"
- ],
- "properties": {
- "aligntype": {
- "description": "对齐方式 - 1:居中对齐 2:左对齐 3:右对齐",
- "type": "integer"
- },
- "autoid": {
- "description": "AutoID",
- "type": "integer"
- },
- "columnfield": {
- "description": "列字段",
- "type": "string"
- },
- "columntitle": {
- "description": "列Title",
- "type": "string"
- },
- "columnwidth": {
- "description": "列宽",
- "type": "string"
- },
- "formatterstring": {
- "description": "格式化字符",
- "type": "string"
- },
- "formattertype": {
- "description": "格式化类型",
- "type": "string"
- },
- "groupname": {
- "description": "表头分组名称",
- "type": "string"
- },
- "isshow": {
- "description": "是否显示 - 0:不显示 1:显示",
- "type": "integer"
- },
- "needsummary": {
- "description": "是否需要汇总 - 0:不需要 1:需要",
- "type": "integer"
- },
- "orderindex": {
- "description": "顺序",
- "type": "integer"
- },
- "remark": {
- "description": "备注",
- "type": "string"
- },
- "summarytype": {
- "description": "汇总类型 - 1:加总 2:最后一个",
- "type": "integer"
- },
- "tablekey": {
- "description": "列表Key",
- "type": "string"
- }
- }
- },
- "order.QueryTradeDetailRsp": {
- "type": "object",
- "required": [
- "accountid",
- "buyorsell",
- "goodsid",
- "marketid",
- "memberuserid",
- "orderid",
- "tradeamount",
- "tradedate",
- "tradeid",
- "tradeprice",
- "tradeqty",
- "tradetime"
- ],
- "properties": {
- "accountid": {
- "description": "账户ID[报价币种]",
- "type": "integer"
- },
- "buildtype": {
- "description": "委托单据类型 1:建仓 2:平仓 3:先平后建",
- "type": "integer"
- },
- "buyorsell": {
- "description": "方向 - 0:买 1:卖",
- "type": "integer"
- },
- "charge": {
- "description": "手续费",
- "type": "number"
- },
- "closecharge": {
- "description": "平仓手续费(支付总手续费=(交易所比率+会员比率)*成交金额)",
- "type": "number"
- },
- "closeexchagechargevalue": {
- "description": "平仓交易所手续费设置值",
- "type": "number"
- },
- "closefeealgorithm": {
- "description": "平仓手续费收取方式 1:比率 2:固定",
- "type": "integer"
- },
- "closememberchargevalue": {
- "description": "平仓会员手续费设置值",
- "type": "number"
- },
- "closepl": {
- "description": "平仓盈亏",
- "type": "number"
- },
- "closepl2": {
- "description": "平仓盈亏[逐笔]",
- "type": "number"
- },
- "closeqty": {
- "description": "平仓数量(先建后平操作 需要记录)",
- "type": "integer"
- },
- "creditamount": {
- "description": "授信金额",
- "type": "number"
- },
- "gcaccountid": {
- "description": "账户ID[合约币种]",
- "type": "integer"
- },
- "goodscode": {
- "description": "商品代码",
- "type": "string"
- },
- "goodsid": {
- "description": "商品ID",
- "type": "integer"
- },
- "goodsname": {
- "description": "商品名称",
- "type": "string"
- },
- "intclosepl": {
- "description": "整型盈亏(用于交易结算试算平衡-收益权)",
- "type": "integer"
- },
- "isconfirmexercise": {
- "description": "是否确认行权- 0:否 1:是",
- "type": "integer"
- },
- "ismain": {
- "description": "是否主单 - 0:不是 1:是",
- "type": "integer"
- },
- "ispreexercise": {
- "description": "是否预申报- 0:否 1:是",
- "type": "integer"
- },
- "isreckoned": {
- "description": "是否结算 - 0:未结算 1:已结算",
- "type": "integer"
- },
- "listingselecttype": {
- "description": "关联委托单挂牌点选类型 - 1:挂牌 2:摘牌 3:先摘后挂",
- "type": "integer"
- },
- "marketid": {
- "description": "市场ID",
- "type": "integer"
- },
- "marketname": {
- "description": "市场名称",
- "type": "string"
- },
- "matchaccountid": {
- "description": "对手账号id",
- "type": "integer"
- },
- "memberuserid": {
- "description": "会员id 个人投资者 需要填写",
- "type": "integer"
- },
- "opencharge": {
- "description": "建仓手续费(支付总手续费=(交易所比率+会员比率)*成交金额)",
- "type": "number"
- },
- "openexchagechargevalue": {
- "description": "建仓交易所手续费设置值",
- "type": "number"
- },
- "openfeealgorithm": {
- "description": "建仓手续费收取方式 1:比率 2:固定",
- "type": "integer"
- },
- "openmemberchargevalue": {
- "description": "建仓会员手续费设置值",
- "type": "number"
- },
- "openqty": {
- "description": "开仓数量(先建后平操作 需要记录)",
- "type": "integer"
- },
- "optiontype": {
- "description": "期权类型 - 1:认购(看涨) 2:认沽(看跌)",
- "type": "integer"
- },
- "orderid": {
- "description": "委托单号",
- "type": "string"
- },
- "performanceplanid": {
- "description": "履约计划ID[期权]",
- "type": "integer"
- },
- "performancestatus": {
- "description": "履约状态[期权] - 0:无履约 1:未履约 2:履约中 3:履约完成",
- "type": "integer"
- },
- "preexerciseprice": {
- "description": "预申报价格",
- "type": "number"
- },
- "premium": {
- "description": "权利金 - [持仓单的权利金]",
- "type": "number"
- },
- "relatedouttradeid": {
- "description": "关联外部成交单ID",
- "type": "integer"
- },
- "status": {
- "description": "处理状态 - 1:待处理 2:已处理 3:处理失败",
- "type": "integer"
- },
- "tradeamount": {
- "description": "成交金额[账户币种,用于所有权]",
- "type": "number"
- },
- "tradedate": {
- "description": "交易日(yyyyMMdd)",
- "type": "string"
- },
- "tradeid": {
- "description": "成交单号(101+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)",
- "type": "string"
- },
- "trademode": {
- "description": "交易模式",
- "type": "integer"
- },
- "tradeprice": {
- "description": "成交价格",
- "type": "number"
- },
- "tradeproperty": {
- "description": "交易属性",
- "type": "integer"
- },
- "tradeqty": {
- "description": "成交数量",
- "type": "integer"
- },
- "tradetime": {
- "description": "成交时间",
- "type": "string"
- },
- "tradetype": {
- "description": "成交类别 - 1:正常委托成交 2:定向做市成交(接单) 3:交割协议平仓成交 4:交割减仓成交 5:到期强平成交 6:风控斩仓成交 7:协议平仓(管理端)成交 8:仓单转持仓成交 9: 交割协议转让成交 10:受托竞价成交(接单) 11:协议转让成交 12:系统强行平仓 13:期权违约平仓",
- "type": "integer"
- }
- }
- },
- "order.QueryTradeOrderDetailRsp": {
- "type": "object",
- "required": [
- "accountid",
- "buildtype",
- "buyorsell",
- "goodsid",
- "marketid",
- "operatetype",
- "orderqty",
- "ordertime",
- "pricemode",
- "tradedate",
- "validtype"
- ],
- "properties": {
- "accountid": {
- "description": "账户ID[报价币种]",
- "type": "integer"
- },
- "buildtype": {
- "description": "委托单据类型 - 1:建仓 2:平仓 3:先平后建",
- "type": "integer"
- },
- "buyorsell": {
- "description": "买卖 - 0:买 1:卖",
- "type": "integer"
- },
- "cancelorderid": {
- "description": "撤单单号(撤单时填写)",
- "type": "string"
- },
- "cancelqty": {
- "description": "撤单数量",
- "type": "integer"
- },
- "clienttype": {
- "description": "客户端类型 - 0:保留为未填终端类型 1:PC管理端 2:PC交易端 3:手机客户端_安卓 4:网页客户端 5:微信客户端 6:手机客户端_苹果 7:网上开户客户端 8:无效终端编号 9:报价终端(中江)",
- "type": "integer"
- },
- "closefreezecharge": {
- "description": "平仓冻结手续费(先建后平操作,需要记录)",
- "type": "number"
- },
- "closeqty": {
- "description": "平仓数量(先建后平操作 需要记录)",
- "type": "integer"
- },
- "closetradeqty": {
- "description": "平仓成交数量(先建后平操作,需要记录)",
- "type": "integer"
- },
- "closeunfreezecharge": {
- "description": "平仓解冻手续费(先建后平操作,需要记录)",
- "type": "number"
- },
- "delistingtype": {
- "description": "摘牌类型 - 1:价格最优 2:点选成交",
- "type": "integer"
- },
- "enableqty": {
- "description": "可用数量 = 委托数量 - 成交数量 - 撤单数量",
- "type": "integer"
- },
- "freezecharge": {
- "description": "冻结手续费",
- "type": "number"
- },
- "freezemargin": {
- "description": "冻结保证金(冻结交易金额)",
- "type": "number"
- },
- "goodscode": {
- "description": "商品代码",
- "type": "string"
- },
- "goodsid": {
- "description": "商品ID",
- "type": "integer"
- },
- "goodsname": {
- "description": "商品名称",
- "type": "string"
- },
- "listingselecttype": {
- "description": "挂牌点选类型 - 1:挂牌 2:摘牌 3:先摘后挂",
- "type": "integer"
- },
- "marketid": {
- "description": "市场ID",
- "type": "integer"
- },
- "marketname": {
- "description": "市场名称",
- "type": "string"
- },
- "openfreezecharge": {
- "description": "开仓冻结手续费(先建后平操作,需要记录)",
- "type": "number"
- },
- "openqty": {
- "description": "开仓数量(先建后平操作,需要记录)",
- "type": "integer"
- },
- "opentradeqty": {
- "description": "开仓成交数量(先建后平操作,需要记录)",
- "type": "integer"
- },
- "openunfreezecharge": {
- "description": "开仓解冻手续费(先建后平操作,需要记录)",
- "type": "number"
- },
- "operatetype": {
- "description": "操作类型 - 1:正常下单 2:斩仓 3:转单 4:结算撤单 5:系统卖出(适用于先平后建的卖出) 6:行情源报价 7:(结算)到期强平 8:(结算)协议转让 9:系统对冲单 10:(结算)到期无效 11:交割协议转让 12:交割协议平仓 13:交割成交(所有权) 14:管理端强行平仓 15:管理端协议转让",
- "type": "integer"
- },
- "operatorid": {
- "description": "登录账号(LoginID)",
- "type": "integer"
- },
- "orderid": {
- "description": "委托单号(100+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)",
- "type": "string"
- },
- "orderprice": {
- "description": "委托价格",
- "type": "number"
- },
- "orderqty": {
- "description": "委托数量",
- "type": "integer"
- },
- "ordersrc": {
- "description": "委托来源 - 1:客户端 2:管理端 3:风控服务 4:交割服务 5:交易服务 6:交易日结 7:商品强平 8:管理端商品退市强平 9:交易接口 10:交割服务商被动(受托竞价) 11:预埋触发",
- "type": "integer"
- },
- "orderstatus": {
- "description": "委托状态 - 1: 委托请求 2:待冻结 3:委托成功 4: 委托失败 5:配对成功 6: 已撤销 7:部分成交 8:已成交 9:部成部撤 10:成交失败 11:已拒绝 12:经过摘牌(先摘后挂专用-先摘后挂已摘过) 13:冻结成功(通道交易专用) 14:通道已撤 15:通道部成部撤 16:成交失败违约(荷兰式竞拍专用)",
- "type": "integer"
- },
- "ordertime": {
- "description": "委托时间",
- "type": "string"
- },
- "preorderid": {
- "description": "关联预埋单号(止盈止损单时填写)",
- "type": "string"
- },
- "pricemode": {
- "description": "取价方式 - 1:市价 2: 限价",
- "type": "integer"
- },
- "relatedid": {
- "description": "关联单号(交割单)",
- "type": "string"
- },
- "tradedate": {
- "description": "交易日(yyyyMMdd)",
- "type": "string"
- },
- "trademode": {
- "description": "交易模式",
- "type": "integer"
- },
- "tradeqty": {
- "description": "成交数量",
- "type": "integer"
- },
- "unfreezecharge": {
- "description": "解冻手续费",
- "type": "number"
- },
- "unfreezemargin": {
- "description": "解冻保证金",
- "type": "number"
- },
- "validtime": {
- "description": "有效期限",
- "type": "string"
- },
- "validtype": {
- "description": "有效类型 - 1当日有效 2本周有效 3指定日期有效 4一直有效 5指定时间有效",
- "type": "integer"
- },
- "volumetype": {
- "description": "当时间有效类型为 “立即执行否则取消 IOC” 时,需要此项 - 0:任意量 1:最小量(暂时不支持) 2:全部量",
- "type": "integer"
- }
- }
- },
- "order.QueryTradePositionRsp": {
- "type": "object",
- "required": [
- "goodsid"
- ],
- "properties": {
- "accountid": {
- "description": "资金账户",
- "type": "integer"
- },
- "agreeunit": {
- "description": "合约单位",
- "type": "number"
- },
- "averageprice": {
- "description": "持仓均价",
- "type": "number"
- },
- "buyorsell": {
- "description": "方向 - 0:买 1:卖",
- "type": "integer"
- },
- "closetotalqty": {
- "description": "平仓总数量",
- "type": "integer"
- },
- "curholderamount": {
- "description": "当前持仓总金额[商品币种]",
- "type": "number"
- },
- "curpositionqty": {
- "description": "当前持仓总数量",
- "type": "integer"
- },
- "currencyid": {
- "description": "报价货币ID",
- "type": "integer"
- },
- "curtdposition": {
- "description": "期末今日头寸",
- "type": "integer"
- },
- "decimalplace": {
- "description": "报价小数位",
- "type": "integer"
- },
- "enableqty": {
- "description": "可用量",
- "type": "integer"
- },
- "fretdposition": {
- "description": "冻结今日头寸",
- "type": "integer"
- },
- "frozenqty": {
- "description": "持仓冻结数量",
- "type": "integer"
- },
- "goodscode": {
- "description": "商品代码",
- "type": "string"
- },
- "goodsid": {
- "description": "商品Id",
- "type": "integer"
- },
- "goodsname": {
- "description": "商品名称",
- "type": "string"
- },
- "goodunit": {
- "description": "报价单位",
- "type": "string"
- },
- "goodunitid": {
- "description": "报价单位ID",
- "type": "integer"
- },
- "holderamount": {
- "description": "期初持仓总金额[商品币种]",
- "type": "number"
- },
- "marketid": {
- "description": "所属市场ID",
- "type": "integer"
- },
- "openreqqty": {
- "description": "开仓申请数量(用于比较最大持仓数量)",
- "type": "integer"
- },
- "opentotalqty": {
- "description": "开仓总数量",
- "type": "integer"
- },
- "otherfrozenqty": {
- "description": "持仓其他冻结数量(交割冻结)",
- "type": "integer"
- },
- "positionqty": {
- "description": "期初持仓数量",
- "type": "integer"
- },
- "tnqty": {
- "description": "T+N冻结总量",
- "type": "integer"
- },
- "tnusedqty": {
- "description": "T+N使用量(可以使用T+N的冻结数量)",
- "type": "integer"
- },
- "trademode": {
- "description": "交易模式",
- "type": "integer"
- }
- }
- },
- "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": "integer"
- },
- "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",
- "properties": {
- "accountName": {
- "description": "所属账号名称(已脱敏)",
- "type": "string"
- },
- "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"
- },
- "tradedate": {
- "description": "交易日(yyyyMMdd)",
- "type": "string"
- }
- }
- }
- },
- "securityDefinitions": {
- "ApiKeyAuth": {
- "type": "apiKey",
- "name": "Authorization",
- "in": "header"
- }
- }
- }`
- type swaggerInfo struct {
- Version string
- Host string
- BasePath string
- Schemes []string
- Title string
- Description string
- }
- // SwaggerInfo holds exported Swagger Info so clients can modify it
- var SwaggerInfo = swaggerInfo{
- Version: "1.0",
- Host: "",
- BasePath: "/api",
- Schemes: []string{},
- Title: "MTP2.0 查询服务 API",
- Description: "新的查询服务,替代原通用查询服务。",
- }
- type s struct{}
- func (s *s) ReadDoc() string {
- sInfo := SwaggerInfo
- sInfo.Description = strings.Replace(sInfo.Description, "\n", "\\n", -1)
- t, err := template.New("swagger_info").Funcs(template.FuncMap{
- "marshal": func(v interface{}) string {
- a, _ := json.Marshal(v)
- return string(a)
- },
- }).Parse(doc)
- if err != nil {
- return doc
- }
- var tpl bytes.Buffer
- if err := t.Execute(&tpl, sInfo); err != nil {
- return doc
- }
- return tpl.String()
- }
- func init() {
- swag.Register(swag.Name, &s{})
- }
|