swagger.json 165 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638
  1. {
  2. "swagger": "2.0",
  3. "info": {
  4. "title": "弘则手机端管理后台接口",
  5. "description": "这是弘则手机端管理后台接口api文档,统一出、入参;出参格式:{\"code\":200,\"data\":{},\"msg\":\"操作成功\",\"errMsg\":\"开发人员查看的错误信息\"},code是业务响应码,200 代表正常返回;400 代表业务处理失败,前端同学需要做额外逻辑处理;401 代表token异常,用户需要重新静默授权,获取最新的token;403代表用户需要进行绑定操作,需要跳转到输入账号密码绑定页面。同时如果出现其他返回值(没有在约定范围内),那么及时联系后端同事;msg是用来提示前端同学,一般只在code为 400 的情况下才会展示给用户去看;data是业务返回数据,给前端做逻辑处理。",
  6. "version": "1.0.0",
  7. "termsOfService": "http://beego.me/",
  8. "contact": {
  9. "email": "astaxie@gmail.com"
  10. },
  11. "license": {
  12. "name": "Apache 2.0",
  13. "url": "http://www.apache.org/licenses/LICENSE-2.0.html"
  14. }
  15. },
  16. "basePath": "/h5adminapi",
  17. "paths": {
  18. "/admin/login": {
  19. "post": {
  20. "tags": [
  21. "admin"
  22. ],
  23. "description": "用户账号、密码登录接口",
  24. "operationId": "AdminCommon.用户账号、密码登录接口",
  25. "parameters": [
  26. {
  27. "in": "body",
  28. "name": "request",
  29. "description": "type json string",
  30. "required": true,
  31. "schema": {
  32. "$ref": "#/definitions/admin.LoginReq"
  33. }
  34. }
  35. ],
  36. "responses": {
  37. "200": {
  38. "description": "",
  39. "schema": {
  40. "$ref": "#/definitions/admin.LoginResp"
  41. }
  42. }
  43. }
  44. }
  45. },
  46. "/admin/logout": {
  47. "post": {
  48. "tags": [
  49. "admin"
  50. ],
  51. "description": "用户退出登录接口",
  52. "operationId": "AdminCommon.用户退出登录接口",
  53. "responses": {
  54. "Ret=200": {
  55. "description": "退出成功"
  56. }
  57. }
  58. }
  59. },
  60. "/approval/approve": {
  61. "post": {
  62. "tags": [
  63. "approval"
  64. ],
  65. "description": "审批接口",
  66. "operationId": "ApprovalCommon.审批",
  67. "parameters": [
  68. {
  69. "in": "body",
  70. "name": "request",
  71. "description": "type json string",
  72. "required": true,
  73. "schema": {
  74. "$ref": "#/definitions/approval.CompanyApplyApproveReq"
  75. }
  76. }
  77. ],
  78. "responses": {
  79. "Ret=200": {
  80. "description": "审批成功"
  81. }
  82. }
  83. }
  84. },
  85. "/approval/approve_old": {
  86. "post": {
  87. "tags": [
  88. "approval"
  89. ],
  90. "description": "审批接口",
  91. "operationId": "ApprovalCommon.审批",
  92. "parameters": [
  93. {
  94. "in": "body",
  95. "name": "request",
  96. "description": "type json string",
  97. "required": true,
  98. "schema": {
  99. "$ref": "#/definitions/approval.CompanyApplyApproveReq"
  100. }
  101. }
  102. ],
  103. "responses": {
  104. "Ret=200": {
  105. "description": "审批成功"
  106. }
  107. }
  108. }
  109. },
  110. "/approval/company_list": {
  111. "get": {
  112. "tags": [
  113. "approval"
  114. ],
  115. "description": "获取合同详情接口",
  116. "operationId": "ApprovalCommon.根据客户名称获取已存在合同系统中客户名称列表",
  117. "parameters": [
  118. {
  119. "in": "query",
  120. "name": "Keyword",
  121. "description": "搜索关键字:客户名称、组织社会信用码",
  122. "required": true,
  123. "type": "string"
  124. }
  125. ],
  126. "responses": {
  127. "200": {
  128. "description": "",
  129. "schema": {
  130. "type": "array",
  131. "items": {
  132. "type": "string"
  133. }
  134. }
  135. }
  136. }
  137. }
  138. },
  139. "/approval/detail": {
  140. "get": {
  141. "tags": [
  142. "approval"
  143. ],
  144. "description": "获取审批单详情接口",
  145. "operationId": "ApprovalCommon.获取审批单详情接口",
  146. "parameters": [
  147. {
  148. "in": "query",
  149. "name": "ApprovalId",
  150. "description": "审批单id",
  151. "required": true,
  152. "type": "integer",
  153. "format": "int64"
  154. }
  155. ],
  156. "responses": {
  157. "200": {
  158. "description": "",
  159. "schema": {
  160. "$ref": "#/definitions/approval.CompanyApprovalDetailResp"
  161. }
  162. }
  163. }
  164. }
  165. },
  166. "/approval/detail_old": {
  167. "get": {
  168. "tags": [
  169. "approval"
  170. ],
  171. "description": "获取审批单详情接口",
  172. "operationId": "ApprovalCommon.获取审批单详情接口",
  173. "parameters": [
  174. {
  175. "in": "query",
  176. "name": "ApprovalId",
  177. "description": "审批单id",
  178. "required": true,
  179. "type": "integer",
  180. "format": "int64"
  181. }
  182. ],
  183. "responses": {
  184. "200": {
  185. "description": "",
  186. "schema": {
  187. "$ref": "#/definitions/approval.CompanyApprovalDetailResp"
  188. }
  189. }
  190. }
  191. }
  192. },
  193. "/approval/flowDetail": {
  194. "get": {
  195. "tags": [
  196. "approval"
  197. ],
  198. "description": "获取审批流详情接口",
  199. "operationId": "ApprovalCommon.获取审批流详情接口",
  200. "parameters": [
  201. {
  202. "in": "query",
  203. "name": "FlowId",
  204. "description": "审批流程id;1:ficc客户审批;2:权益客户审批;3:ficc合同审批,4:权益合同审批,5:用印审批(合同章),6:用印审批(公章、法人章)",
  205. "required": true,
  206. "type": "integer",
  207. "format": "int64"
  208. }
  209. ],
  210. "responses": {
  211. "200": {
  212. "description": "",
  213. "schema": {
  214. "$ref": "#/definitions/approval_flow.ApprovalFlowItem"
  215. }
  216. }
  217. }
  218. }
  219. },
  220. "/approval/getApprovalPermissionList": {
  221. "get": {
  222. "tags": [
  223. "approval"
  224. ],
  225. "description": "获取审批单中的权限列表接口",
  226. "operationId": "ApprovalCommon.获取审批单中的权限列表",
  227. "parameters": [
  228. {
  229. "in": "query",
  230. "name": "ApprovalId",
  231. "description": "审批单id",
  232. "required": true,
  233. "type": "integer",
  234. "format": "int64"
  235. }
  236. ],
  237. "responses": {
  238. "200": {
  239. "description": "",
  240. "schema": {
  241. "$ref": "#/definitions/approval.CompanyPermissionResp"
  242. }
  243. }
  244. }
  245. }
  246. },
  247. "/approval/list": {
  248. "get": {
  249. "tags": [
  250. "approval"
  251. ],
  252. "description": "获取审批列表接口",
  253. "operationId": "ApprovalCommon.获取审批列表接口",
  254. "parameters": [
  255. {
  256. "in": "query",
  257. "name": "PageSize",
  258. "description": "每页数据条数",
  259. "required": true,
  260. "type": "integer",
  261. "format": "int64"
  262. },
  263. {
  264. "in": "query",
  265. "name": "CurrentIndex",
  266. "description": "当前页页码,从1开始",
  267. "required": true,
  268. "type": "integer",
  269. "format": "int64"
  270. },
  271. {
  272. "in": "query",
  273. "name": "Status",
  274. "description": "状态:'待审批','已审批','驳回','已撤回'",
  275. "required": true,
  276. "type": "string"
  277. },
  278. {
  279. "in": "query",
  280. "name": "KeyWord",
  281. "description": "搜索关键词",
  282. "required": true,
  283. "type": "string"
  284. },
  285. {
  286. "in": "query",
  287. "name": "Keyword",
  288. "description": "搜索关键词",
  289. "required": true,
  290. "type": "string"
  291. },
  292. {
  293. "in": "query",
  294. "name": "KeywordEq",
  295. "description": "搜索关键词(全等)",
  296. "required": true,
  297. "type": "string"
  298. }
  299. ],
  300. "responses": {
  301. "200": {
  302. "description": "",
  303. "schema": {
  304. "$ref": "#/definitions/approval.CompanyApprovalListResp"
  305. }
  306. }
  307. }
  308. }
  309. },
  310. "/approval/list_old": {
  311. "get": {
  312. "tags": [
  313. "approval"
  314. ],
  315. "description": "获取审批列表接口",
  316. "operationId": "ApprovalCommon.获取审批列表接口",
  317. "parameters": [
  318. {
  319. "in": "query",
  320. "name": "PageSize",
  321. "description": "每页数据条数",
  322. "required": true,
  323. "type": "integer",
  324. "format": "int64"
  325. },
  326. {
  327. "in": "query",
  328. "name": "CurrentIndex",
  329. "description": "当前页页码,从1开始",
  330. "required": true,
  331. "type": "integer",
  332. "format": "int64"
  333. },
  334. {
  335. "in": "query",
  336. "name": "Status",
  337. "description": "状态:'待审批','已审批','驳回','已撤回'",
  338. "required": true,
  339. "type": "string"
  340. },
  341. {
  342. "in": "query",
  343. "name": "KeyWord",
  344. "description": "搜索关键词",
  345. "required": true,
  346. "type": "string"
  347. },
  348. {
  349. "in": "query",
  350. "name": "Keyword",
  351. "description": "搜索关键词",
  352. "required": true,
  353. "type": "string"
  354. },
  355. {
  356. "in": "query",
  357. "name": "KeywordEq",
  358. "description": "搜索关键词(全等)",
  359. "required": true,
  360. "type": "string"
  361. }
  362. ],
  363. "responses": {
  364. "200": {
  365. "description": "",
  366. "schema": {
  367. "$ref": "#/definitions/approval.CompanyApprovalListResp"
  368. }
  369. }
  370. }
  371. }
  372. },
  373. "/company_contract/detail": {
  374. "get": {
  375. "tags": [
  376. "company_contract"
  377. ],
  378. "description": "合同详情接口",
  379. "operationId": "CompanyContractCommon.合同详情详情",
  380. "parameters": [
  381. {
  382. "in": "query",
  383. "name": "CompanyId",
  384. "description": "客户ID",
  385. "required": true,
  386. "type": "integer",
  387. "format": "int64"
  388. },
  389. {
  390. "in": "query",
  391. "name": "CompanyContractId",
  392. "description": "合同id",
  393. "required": true,
  394. "type": "integer",
  395. "format": "int64"
  396. }
  397. ],
  398. "responses": {
  399. "200": {
  400. "description": "",
  401. "schema": {
  402. "$ref": "#/definitions/company_contract.CompanyContractDetailResp"
  403. }
  404. }
  405. }
  406. }
  407. },
  408. "/contract/companyListBySeal": {
  409. "get": {
  410. "tags": [
  411. "contract"
  412. ],
  413. "description": "获取合同详情接口",
  414. "operationId": "ContractCommon.根据客户名称获取已存在合同系统中客户名称列表",
  415. "parameters": [
  416. {
  417. "in": "query",
  418. "name": "CompanyName",
  419. "description": "客户名称",
  420. "required": true,
  421. "type": "string"
  422. },
  423. {
  424. "in": "query",
  425. "name": "Keyword",
  426. "description": "关键字:客户名称、社会信用码",
  427. "required": true,
  428. "type": "string"
  429. },
  430. {
  431. "in": "query",
  432. "name": "Status",
  433. "description": "合同状态",
  434. "required": true,
  435. "type": "string"
  436. }
  437. ],
  438. "responses": {
  439. "200": {
  440. "description": "",
  441. "schema": {
  442. "type": "array",
  443. "items": {
  444. "type": "string"
  445. }
  446. }
  447. }
  448. }
  449. }
  450. },
  451. "/contract/company_list": {
  452. "get": {
  453. "tags": [
  454. "contract"
  455. ],
  456. "description": "获取合同详情接口",
  457. "operationId": "ContractCommon.根据客户名称获取已存在合同系统中客户名称列表",
  458. "parameters": [
  459. {
  460. "in": "query",
  461. "name": "CompanyName",
  462. "description": "客户名称",
  463. "required": true,
  464. "type": "string"
  465. },
  466. {
  467. "in": "query",
  468. "name": "Keyword",
  469. "description": "关键字:客户名称、社会信用码",
  470. "required": true,
  471. "type": "string"
  472. },
  473. {
  474. "in": "query",
  475. "name": "Status",
  476. "description": "合同状态",
  477. "required": true,
  478. "type": "string"
  479. }
  480. ],
  481. "responses": {
  482. "200": {
  483. "description": "",
  484. "schema": {
  485. "type": "array",
  486. "items": {
  487. "type": "string"
  488. }
  489. }
  490. }
  491. }
  492. }
  493. },
  494. "/contract/detail": {
  495. "get": {
  496. "tags": [
  497. "contract"
  498. ],
  499. "description": "获取合同详情接口",
  500. "operationId": "ContractCommon.获取合同详情",
  501. "parameters": [
  502. {
  503. "in": "query",
  504. "name": "ContractId",
  505. "description": "合同id",
  506. "required": true,
  507. "type": "integer",
  508. "format": "int64"
  509. }
  510. ],
  511. "responses": {
  512. "200": {
  513. "description": "",
  514. "schema": {
  515. "$ref": "#/definitions/contract.ContractDetailResp"
  516. }
  517. }
  518. }
  519. }
  520. },
  521. "/contract/invalid": {
  522. "post": {
  523. "tags": [
  524. "contract"
  525. ],
  526. "description": "作废合同接口",
  527. "operationId": "ContractCommon.作废合同",
  528. "parameters": [
  529. {
  530. "in": "body",
  531. "name": "request",
  532. "description": "type json string",
  533. "required": true,
  534. "schema": {
  535. "$ref": "#/definitions/contract.InvalidReq"
  536. }
  537. }
  538. ],
  539. "responses": {
  540. "Ret=200": {
  541. "description": "作废成功"
  542. }
  543. }
  544. }
  545. },
  546. "/contract/list": {
  547. "get": {
  548. "tags": [
  549. "contract"
  550. ],
  551. "description": "合同列表接口",
  552. "operationId": "ContractCommon.合同列表",
  553. "parameters": [
  554. {
  555. "in": "query",
  556. "name": "ContractType",
  557. "description": "合同类型,枚举值:'新签合同','续约合同','补充协议'",
  558. "type": "string"
  559. },
  560. {
  561. "in": "query",
  562. "name": "Status",
  563. "description": "合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废'",
  564. "type": "string"
  565. },
  566. {
  567. "in": "query",
  568. "name": "ProductId",
  569. "description": "客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益",
  570. "type": "integer",
  571. "format": "int64"
  572. },
  573. {
  574. "in": "query",
  575. "name": "ModifyStartTime",
  576. "description": "服务更新时间的选择开始时间,格式:2021-05-23 00:00:00",
  577. "type": "string"
  578. },
  579. {
  580. "in": "query",
  581. "name": "ModifyEndTime",
  582. "description": "服务更新时间的选择结束时间,格式:2021-05-26 23:59:59",
  583. "type": "string"
  584. },
  585. {
  586. "in": "query",
  587. "name": "SellerId",
  588. "description": "选择的销售id",
  589. "type": "string"
  590. },
  591. {
  592. "in": "query",
  593. "name": "Keyword",
  594. "description": "搜索关键字",
  595. "type": "string"
  596. },
  597. {
  598. "in": "query",
  599. "name": "KeywordEq",
  600. "description": "搜索关键字(全等)",
  601. "type": "string"
  602. }
  603. ],
  604. "responses": {
  605. "200": {
  606. "description": "",
  607. "schema": {
  608. "$ref": "#/definitions/contract.ContractListResp"
  609. }
  610. }
  611. }
  612. }
  613. },
  614. "/contract/listBySeal": {
  615. "get": {
  616. "tags": [
  617. "contract"
  618. ],
  619. "description": "合同列表接口",
  620. "operationId": "ContractCommon.合同列表",
  621. "parameters": [
  622. {
  623. "in": "query",
  624. "name": "ContractType",
  625. "description": "合同类型,枚举值:'新签合同','续约合同','补充协议'",
  626. "type": "string"
  627. },
  628. {
  629. "in": "query",
  630. "name": "Status",
  631. "description": "合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废'",
  632. "type": "string"
  633. },
  634. {
  635. "in": "query",
  636. "name": "ProductId",
  637. "description": "客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益",
  638. "type": "integer",
  639. "format": "int64"
  640. },
  641. {
  642. "in": "query",
  643. "name": "ModifyStartTime",
  644. "description": "服务更新时间的选择开始时间,格式:2021-05-23 00:00:00",
  645. "type": "string"
  646. },
  647. {
  648. "in": "query",
  649. "name": "ModifyEndTime",
  650. "description": "服务更新时间的选择结束时间,格式:2021-05-26 23:59:59",
  651. "type": "string"
  652. },
  653. {
  654. "in": "query",
  655. "name": "SellerId",
  656. "description": "选择的销售id",
  657. "type": "string"
  658. },
  659. {
  660. "in": "query",
  661. "name": "Keyword",
  662. "description": "搜索关键字",
  663. "type": "string"
  664. },
  665. {
  666. "in": "query",
  667. "name": "KeywordEq",
  668. "description": "搜索关键字(全等)",
  669. "type": "string"
  670. }
  671. ],
  672. "responses": {
  673. "200": {
  674. "description": "",
  675. "schema": {
  676. "$ref": "#/definitions/contract.ContractListResp"
  677. }
  678. }
  679. }
  680. }
  681. },
  682. "/contract/listV2": {
  683. "get": {
  684. "tags": [
  685. "contract"
  686. ],
  687. "description": "合同列表接口(包含待提交的)",
  688. "operationId": "ContractCommon.合同列表(包含待提交的)",
  689. "parameters": [
  690. {
  691. "in": "query",
  692. "name": "ContractType",
  693. "description": "合同类型,枚举值:'新签合同','续约合同','补充协议'",
  694. "type": "string"
  695. },
  696. {
  697. "in": "query",
  698. "name": "Status",
  699. "description": "合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废'",
  700. "type": "string"
  701. },
  702. {
  703. "in": "query",
  704. "name": "ProductId",
  705. "description": "客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益",
  706. "type": "integer",
  707. "format": "int64"
  708. },
  709. {
  710. "in": "query",
  711. "name": "ModifyStartTime",
  712. "description": "服务更新时间的选择开始时间,格式:2021-05-23 00:00:00",
  713. "type": "string"
  714. },
  715. {
  716. "in": "query",
  717. "name": "ModifyEndTime",
  718. "description": "服务更新时间的选择结束时间,格式:2021-05-26 23:59:59",
  719. "type": "string"
  720. },
  721. {
  722. "in": "query",
  723. "name": "SellerId",
  724. "description": "选择的销售id",
  725. "type": "string"
  726. },
  727. {
  728. "in": "query",
  729. "name": "Keyword",
  730. "description": "搜索关键字",
  731. "type": "string"
  732. },
  733. {
  734. "in": "query",
  735. "name": "KeywordEq",
  736. "description": "搜索关键字(全等)",
  737. "type": "string"
  738. }
  739. ],
  740. "responses": {
  741. "200": {
  742. "description": "",
  743. "schema": {
  744. "$ref": "#/definitions/contract.ContractListRespV2"
  745. }
  746. }
  747. }
  748. }
  749. },
  750. "/contract/upload_check_back_file": {
  751. "post": {
  752. "tags": [
  753. "contract"
  754. ],
  755. "description": "上传签回附件接口",
  756. "operationId": "ContractCommon.上传签回附件",
  757. "parameters": [
  758. {
  759. "in": "body",
  760. "name": "request",
  761. "description": "type json string",
  762. "required": true,
  763. "schema": {
  764. "$ref": "#/definitions/contract.UploadCheckBackFileReq"
  765. }
  766. }
  767. ],
  768. "responses": {
  769. "Ret=200": {
  770. "description": "上传成功"
  771. }
  772. }
  773. }
  774. },
  775. "/contract_approval/approved": {
  776. "post": {
  777. "tags": [
  778. "contract_approval"
  779. ],
  780. "description": "处理审批单",
  781. "operationId": "ContractApprovalCommon.处理审批单",
  782. "parameters": [
  783. {
  784. "in": "body",
  785. "name": "request",
  786. "description": "type json string",
  787. "required": true,
  788. "schema": {
  789. "$ref": "#/definitions/contract.ApprovedReq"
  790. }
  791. }
  792. ],
  793. "responses": {
  794. "Ret=200": {
  795. "description": "申请成功"
  796. }
  797. }
  798. }
  799. },
  800. "/contract_approval/detail": {
  801. "get": {
  802. "tags": [
  803. "contract_approval"
  804. ],
  805. "description": "审批单详情接口",
  806. "operationId": "ContractApprovalCommon.审批单详情",
  807. "parameters": [
  808. {
  809. "in": "query",
  810. "name": "ContractApprovalId",
  811. "description": "审批单id",
  812. "type": "integer",
  813. "format": "int64"
  814. },
  815. {
  816. "in": "query",
  817. "name": "ContractApprovalRecordId",
  818. "description": "审批流程单id",
  819. "type": "integer",
  820. "format": "int64"
  821. }
  822. ],
  823. "responses": {
  824. "200": {
  825. "description": "",
  826. "schema": {
  827. "$ref": "#/definitions/contract.ContractDetailResp"
  828. }
  829. }
  830. }
  831. }
  832. },
  833. "/contract_approval/list": {
  834. "get": {
  835. "tags": [
  836. "contract_approval"
  837. ],
  838. "description": "审批单列表接口",
  839. "operationId": "ContractApprovalCommon.审批单列表",
  840. "parameters": [
  841. {
  842. "in": "query",
  843. "name": "ContractType",
  844. "description": "合同类型,枚举值:'新签合同','续约合同','补充协议'",
  845. "type": "string"
  846. },
  847. {
  848. "in": "query",
  849. "name": "Status",
  850. "description": "合同状态,枚举值:'待审批','已审批','已驳回','已撤回'",
  851. "type": "string"
  852. },
  853. {
  854. "in": "query",
  855. "name": "ProductId",
  856. "description": "客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益",
  857. "type": "integer",
  858. "format": "int64"
  859. },
  860. {
  861. "in": "query",
  862. "name": "SellerId",
  863. "description": "选择的销售id",
  864. "type": "string"
  865. },
  866. {
  867. "in": "query",
  868. "name": "Keyword",
  869. "description": "搜索关键字",
  870. "type": "string"
  871. },
  872. {
  873. "in": "query",
  874. "name": "KeywordEq",
  875. "description": "搜索关键字(全等)",
  876. "type": "string"
  877. },
  878. {
  879. "in": "query",
  880. "name": "ModifyStartTime",
  881. "description": "服务更新时间的选择开始时间,格式:2021-05-23 00:00:00",
  882. "type": "string"
  883. },
  884. {
  885. "in": "query",
  886. "name": "ModifyEndTime",
  887. "description": "服务更新时间的选择结束时间,格式:2021-05-26 23:59:59",
  888. "type": "string"
  889. }
  890. ],
  891. "responses": {
  892. "200": {
  893. "description": "",
  894. "schema": {
  895. "$ref": "#/definitions/contract.ContractApprovalListResp"
  896. }
  897. }
  898. }
  899. }
  900. },
  901. "/contract_approval/reject": {
  902. "post": {
  903. "tags": [
  904. "contract_approval"
  905. ],
  906. "description": "驳回审批接口",
  907. "operationId": "ContractApprovalCommon.驳回审批",
  908. "parameters": [
  909. {
  910. "in": "body",
  911. "name": "request",
  912. "description": "type json string",
  913. "required": true,
  914. "schema": {
  915. "$ref": "#/definitions/contract.RejectReq"
  916. }
  917. }
  918. ],
  919. "responses": {
  920. "Ret=200": {
  921. "description": "驳回成功"
  922. }
  923. }
  924. }
  925. },
  926. "/message/list": {
  927. "get": {
  928. "tags": [
  929. "message"
  930. ],
  931. "description": "消息列表接口",
  932. "operationId": "MessageCommon.消息列表",
  933. "parameters": [
  934. {
  935. "in": "query",
  936. "name": "SourceType",
  937. "description": "消息类型",
  938. "required": true,
  939. "type": "integer",
  940. "format": "int64"
  941. },
  942. {
  943. "in": "query",
  944. "name": "CurrentIndex",
  945. "description": "当前页码",
  946. "required": true,
  947. "type": "integer",
  948. "format": "int64"
  949. },
  950. {
  951. "in": "query",
  952. "name": "pageSize",
  953. "description": "每页数量",
  954. "required": true,
  955. "type": "integer",
  956. "format": "int64"
  957. }
  958. ],
  959. "responses": {
  960. "200": {
  961. "description": "",
  962. "schema": {
  963. "$ref": "#/definitions/message.CompanyApprovalMessageListResp"
  964. }
  965. }
  966. }
  967. }
  968. },
  969. "/message/read": {
  970. "post": {
  971. "tags": [
  972. "message"
  973. ],
  974. "description": "消息已读接口",
  975. "operationId": "MessageCommon.消息已读",
  976. "parameters": [
  977. {
  978. "in": "body",
  979. "name": "request",
  980. "description": "type json string",
  981. "required": true,
  982. "schema": {
  983. "$ref": "#/definitions/company.CompanyApprovalMessageReadReq"
  984. }
  985. }
  986. ],
  987. "responses": {
  988. "Ret=200": {
  989. "description": "申请成功"
  990. }
  991. }
  992. }
  993. },
  994. "/message/summaryMessageList": {
  995. "get": {
  996. "tags": [
  997. "message"
  998. ],
  999. "description": "消息列表汇总页接口",
  1000. "operationId": "MessageCommon.消息列表汇总页",
  1001. "responses": {
  1002. "200": {
  1003. "description": "",
  1004. "schema": {
  1005. "type": "array",
  1006. "items": {
  1007. "$ref": "#/definitions/message.SummaryMessage"
  1008. }
  1009. }
  1010. }
  1011. }
  1012. }
  1013. },
  1014. "/resource/upload": {
  1015. "post": {
  1016. "tags": [
  1017. "resource"
  1018. ],
  1019. "description": "图片上传接口",
  1020. "operationId": "ResourceCommon.图片上传",
  1021. "parameters": [
  1022. {
  1023. "in": "query",
  1024. "name": "file",
  1025. "description": "文件",
  1026. "required": true,
  1027. "type": "file"
  1028. }
  1029. ],
  1030. "responses": {
  1031. "200": {
  1032. "description": "新增成功"
  1033. }
  1034. }
  1035. }
  1036. },
  1037. "/resource/upload_image_base64": {
  1038. "post": {
  1039. "tags": [
  1040. "resource"
  1041. ],
  1042. "description": "上传图片",
  1043. "operationId": "ResourceCommon.上传图片",
  1044. "parameters": [
  1045. {
  1046. "in": "query",
  1047. "name": "Image",
  1048. "description": "图片,base64字符串",
  1049. "type": "string"
  1050. }
  1051. ],
  1052. "responses": {
  1053. "200": {
  1054. "description": "",
  1055. "schema": {
  1056. "$ref": "#/definitions/models.ImageResponse"
  1057. }
  1058. }
  1059. }
  1060. }
  1061. },
  1062. "/roadshow/accept": {
  1063. "post": {
  1064. "tags": [
  1065. "roadshow"
  1066. ],
  1067. "description": "接受路演活动接口",
  1068. "parameters": [
  1069. {
  1070. "in": "body",
  1071. "name": "request",
  1072. "description": "type json string",
  1073. "required": true,
  1074. "schema": {
  1075. "$ref": "#/definitions/rs.AcceptReq"
  1076. }
  1077. }
  1078. ],
  1079. "responses": {
  1080. "Ret=200": {
  1081. "description": "保存成功"
  1082. }
  1083. }
  1084. }
  1085. },
  1086. "/roadshow/activity/type/list": {
  1087. "get": {
  1088. "tags": [
  1089. "roadshow"
  1090. ],
  1091. "description": "获取报告电话会类型接口",
  1092. "operationId": "CalendarController.获取报告电话会类型",
  1093. "responses": {
  1094. "200": {
  1095. "description": "",
  1096. "schema": {
  1097. "$ref": "#/definitions/rs.ResearcherGroup"
  1098. }
  1099. }
  1100. }
  1101. }
  1102. },
  1103. "/roadshow/add": {
  1104. "post": {
  1105. "tags": [
  1106. "roadshow"
  1107. ],
  1108. "description": "新增路演活动接口",
  1109. "operationId": "CalendarController.新增路演活动接口",
  1110. "parameters": [
  1111. {
  1112. "in": "body",
  1113. "name": "request",
  1114. "description": "type json string",
  1115. "required": true,
  1116. "schema": {
  1117. "$ref": "#/definitions/rs.AddActivityReq"
  1118. }
  1119. }
  1120. ],
  1121. "responses": {
  1122. "Ret=200": {
  1123. "description": "保存成功"
  1124. }
  1125. }
  1126. }
  1127. },
  1128. "/roadshow/back": {
  1129. "post": {
  1130. "tags": [
  1131. "roadshow"
  1132. ],
  1133. "description": "撤回路演活动接口",
  1134. "operationId": "CalendarController.撤回路演活动接口",
  1135. "parameters": [
  1136. {
  1137. "in": "body",
  1138. "name": "request",
  1139. "description": "type json string",
  1140. "required": true,
  1141. "schema": {
  1142. "$ref": "#/definitions/rs.AcceptReq"
  1143. }
  1144. }
  1145. ],
  1146. "responses": {
  1147. "Ret=200": {
  1148. "description": "保存成功"
  1149. }
  1150. }
  1151. }
  1152. },
  1153. "/roadshow/calendar/detail": {
  1154. "get": {
  1155. "tags": [
  1156. "roadshow"
  1157. ],
  1158. "description": "日历详情接口",
  1159. "operationId": "CalendarController.日历详情",
  1160. "parameters": [
  1161. {
  1162. "in": "query",
  1163. "name": "RsCalendarId",
  1164. "description": "路演活动id",
  1165. "required": true,
  1166. "type": "integer",
  1167. "format": "int64"
  1168. },
  1169. {
  1170. "in": "query",
  1171. "name": "RsCalendarResearcherId",
  1172. "description": "活动研究员id",
  1173. "required": true,
  1174. "type": "integer",
  1175. "format": "int64"
  1176. }
  1177. ],
  1178. "responses": {
  1179. "200": {
  1180. "description": "",
  1181. "schema": {
  1182. "$ref": "#/definitions/rs.CalendarDetailResp"
  1183. }
  1184. }
  1185. }
  1186. }
  1187. },
  1188. "/roadshow/calendar/list": {
  1189. "get": {
  1190. "tags": [
  1191. "roadshow"
  1192. ],
  1193. "description": "我的日历列表接口",
  1194. "operationId": "CalendarController.我的日历列表",
  1195. "parameters": [
  1196. {
  1197. "in": "query",
  1198. "name": "PageSize",
  1199. "description": "每页数据条数",
  1200. "required": true,
  1201. "type": "integer",
  1202. "format": "int64"
  1203. },
  1204. {
  1205. "in": "query",
  1206. "name": "CurrentIndex",
  1207. "description": "当前页页码,从1开始",
  1208. "required": true,
  1209. "type": "integer",
  1210. "format": "int64"
  1211. },
  1212. {
  1213. "in": "query",
  1214. "name": "Status",
  1215. "description": "1:待接受,2:包含,已接受,已拒绝,已删除,已撤回,已结束",
  1216. "required": true,
  1217. "type": "integer",
  1218. "format": "int64"
  1219. }
  1220. ],
  1221. "responses": {
  1222. "200": {
  1223. "description": "",
  1224. "schema": {
  1225. "$ref": "#/definitions/rs.CalendarListResp"
  1226. }
  1227. }
  1228. }
  1229. }
  1230. },
  1231. "/roadshow/calendar/type/list": {
  1232. "get": {
  1233. "tags": [
  1234. "roadshow"
  1235. ],
  1236. "description": "内部会议和报告电话会日历列表",
  1237. "operationId": "CalendarController.内部会议和报告电话会日历列表",
  1238. "parameters": [
  1239. {
  1240. "in": "query",
  1241. "name": "PageSize",
  1242. "description": "每页数据条数",
  1243. "required": true,
  1244. "type": "integer",
  1245. "format": "int64"
  1246. },
  1247. {
  1248. "in": "query",
  1249. "name": "CurrentIndex",
  1250. "description": "当前页页码,从1开始",
  1251. "required": true,
  1252. "type": "integer",
  1253. "format": "int64"
  1254. },
  1255. {
  1256. "in": "query",
  1257. "name": "CalendarType",
  1258. "description": "1:内部会议,2:报告电话会",
  1259. "required": true,
  1260. "type": "integer",
  1261. "format": "int64"
  1262. }
  1263. ],
  1264. "responses": {
  1265. "200": {
  1266. "description": "",
  1267. "schema": {
  1268. "$ref": "#/definitions/rs.CalendarListResp"
  1269. }
  1270. }
  1271. }
  1272. }
  1273. },
  1274. "/roadshow/company/detail": {
  1275. "get": {
  1276. "tags": [
  1277. "roadshow"
  1278. ],
  1279. "description": "我的日历列表接口",
  1280. "operationId": "CalendarController.我的日历列表",
  1281. "parameters": [
  1282. {
  1283. "in": "query",
  1284. "name": "CompanyId",
  1285. "description": "公司id",
  1286. "required": true,
  1287. "type": "integer",
  1288. "format": "int64"
  1289. }
  1290. ],
  1291. "responses": {
  1292. "200": {
  1293. "description": "",
  1294. "schema": {
  1295. "$ref": "#/definitions/rs.CompanyDetailView"
  1296. }
  1297. }
  1298. }
  1299. }
  1300. },
  1301. "/roadshow/company/search": {
  1302. "get": {
  1303. "tags": [
  1304. "roadshow"
  1305. ],
  1306. "description": "我的日历列表接口",
  1307. "operationId": "CalendarController.我的日历列表",
  1308. "parameters": [
  1309. {
  1310. "in": "query",
  1311. "name": "KeyWord",
  1312. "description": "搜索关键词",
  1313. "required": true,
  1314. "type": "string"
  1315. }
  1316. ],
  1317. "responses": {
  1318. "200": {
  1319. "description": "",
  1320. "schema": {
  1321. "$ref": "#/definitions/rs.CalendarListResp"
  1322. }
  1323. }
  1324. }
  1325. }
  1326. },
  1327. "/roadshow/delete": {
  1328. "post": {
  1329. "tags": [
  1330. "roadshow"
  1331. ],
  1332. "description": "删除路演活动接口",
  1333. "operationId": "CalendarController.删除路演活动接口",
  1334. "parameters": [
  1335. {
  1336. "in": "body",
  1337. "name": "request",
  1338. "description": "type json string",
  1339. "required": true,
  1340. "schema": {
  1341. "$ref": "#/definitions/rs.DeleteReq"
  1342. }
  1343. }
  1344. ],
  1345. "responses": {
  1346. "Ret=200": {
  1347. "description": "保存成功"
  1348. }
  1349. }
  1350. }
  1351. },
  1352. "/roadshow/edit": {
  1353. "post": {
  1354. "tags": [
  1355. "roadshow"
  1356. ],
  1357. "description": "编辑路演活动接口",
  1358. "operationId": "CalendarController.编辑路演活动接口",
  1359. "parameters": [
  1360. {
  1361. "in": "body",
  1362. "name": "request",
  1363. "description": "type json string",
  1364. "required": true,
  1365. "schema": {
  1366. "$ref": "#/definitions/rs.EditActivityReq"
  1367. }
  1368. }
  1369. ],
  1370. "responses": {
  1371. "Ret=200": {
  1372. "description": "保存成功"
  1373. }
  1374. }
  1375. }
  1376. },
  1377. "/roadshow/matters/add": {
  1378. "post": {
  1379. "tags": [
  1380. "roadshow"
  1381. ],
  1382. "description": "新增事项接口",
  1383. "operationId": "CalendarController.新增事项接口",
  1384. "parameters": [
  1385. {
  1386. "in": "body",
  1387. "name": "request",
  1388. "description": "type json string",
  1389. "required": true,
  1390. "schema": {
  1391. "$ref": "#/definitions/rs.AddMattersReq"
  1392. }
  1393. }
  1394. ],
  1395. "responses": {
  1396. "Ret=200": {
  1397. "description": "保存成功"
  1398. }
  1399. }
  1400. }
  1401. },
  1402. "/roadshow/matters/delete": {
  1403. "post": {
  1404. "tags": [
  1405. "roadshow"
  1406. ],
  1407. "description": "删除事项接口",
  1408. "operationId": "CalendarController.删除事项接口",
  1409. "parameters": [
  1410. {
  1411. "in": "body",
  1412. "name": "request",
  1413. "description": "type json string",
  1414. "required": true,
  1415. "schema": {
  1416. "$ref": "#/definitions/rs.DeleteMattersReq"
  1417. }
  1418. }
  1419. ],
  1420. "responses": {
  1421. "Ret=200": {
  1422. "description": "保存成功"
  1423. }
  1424. }
  1425. }
  1426. },
  1427. "/roadshow/matters/list": {
  1428. "get": {
  1429. "tags": [
  1430. "roadshow"
  1431. ],
  1432. "description": "事项列表接口",
  1433. "operationId": "CalendarController.事项列表",
  1434. "parameters": [
  1435. {
  1436. "in": "query",
  1437. "name": "PageSize",
  1438. "description": "每页数据条数",
  1439. "required": true,
  1440. "type": "integer",
  1441. "format": "int64"
  1442. },
  1443. {
  1444. "in": "query",
  1445. "name": "CurrentIndex",
  1446. "description": "当前页页码,从1开始",
  1447. "required": true,
  1448. "type": "integer",
  1449. "format": "int64"
  1450. }
  1451. ],
  1452. "responses": {
  1453. "200": {
  1454. "description": "",
  1455. "schema": {
  1456. "$ref": "#/definitions/rs.MattersListResp"
  1457. }
  1458. }
  1459. }
  1460. }
  1461. },
  1462. "/roadshow/matters/update": {
  1463. "post": {
  1464. "tags": [
  1465. "roadshow"
  1466. ],
  1467. "description": "修改事项接口",
  1468. "operationId": "CalendarController.修改事项接口",
  1469. "parameters": [
  1470. {
  1471. "in": "body",
  1472. "name": "request",
  1473. "description": "type json string",
  1474. "required": true,
  1475. "schema": {
  1476. "$ref": "#/definitions/rs.UpdateMattersReq"
  1477. }
  1478. }
  1479. ],
  1480. "responses": {
  1481. "Ret=200": {
  1482. "description": "保存成功"
  1483. }
  1484. }
  1485. }
  1486. },
  1487. "/roadshow/my/calendar/detail": {
  1488. "get": {
  1489. "tags": [
  1490. "roadshow"
  1491. ],
  1492. "description": "路演-我的日历详情接口",
  1493. "operationId": "CalendarController.路演-我的日历详情",
  1494. "parameters": [
  1495. {
  1496. "in": "query",
  1497. "name": "StartDate",
  1498. "description": "开始日期",
  1499. "required": true,
  1500. "type": "string"
  1501. },
  1502. {
  1503. "in": "query",
  1504. "name": "EndDate",
  1505. "description": "结束日期日期",
  1506. "required": true,
  1507. "type": "string"
  1508. }
  1509. ],
  1510. "responses": {
  1511. "200": {
  1512. "description": "",
  1513. "schema": {
  1514. "$ref": "#/definitions/roadshow.CalendarDetailResp"
  1515. }
  1516. }
  1517. }
  1518. }
  1519. },
  1520. "/roadshow/refuse": {
  1521. "post": {
  1522. "tags": [
  1523. "roadshow"
  1524. ],
  1525. "description": "拒绝路演活动接口",
  1526. "operationId": "CalendarController.拒绝路演活动接口",
  1527. "parameters": [
  1528. {
  1529. "in": "body",
  1530. "name": "request",
  1531. "description": "type json string",
  1532. "required": true,
  1533. "schema": {
  1534. "$ref": "#/definitions/rs.RefuseReq"
  1535. }
  1536. }
  1537. ],
  1538. "responses": {
  1539. "Ret=200": {
  1540. "description": "保存成功"
  1541. }
  1542. }
  1543. }
  1544. },
  1545. "/roadshow/researcher/calendar/detail": {
  1546. "get": {
  1547. "tags": [
  1548. "roadshow"
  1549. ],
  1550. "description": "路演-研究员日历详情接口",
  1551. "operationId": "CalendarController.路演-研究员日历详情",
  1552. "parameters": [
  1553. {
  1554. "in": "query",
  1555. "name": "StartDate",
  1556. "description": "开始日期",
  1557. "required": true,
  1558. "type": "string"
  1559. },
  1560. {
  1561. "in": "query",
  1562. "name": "EndDate",
  1563. "description": "结束日期日期",
  1564. "required": true,
  1565. "type": "string"
  1566. },
  1567. {
  1568. "in": "query",
  1569. "name": "ResearcherId",
  1570. "description": "研究员id",
  1571. "required": true,
  1572. "type": "integer",
  1573. "format": "int64"
  1574. }
  1575. ],
  1576. "responses": {
  1577. "200": {
  1578. "description": "",
  1579. "schema": {
  1580. "$ref": "#/definitions/roadshow.CalendarDetailResp"
  1581. }
  1582. }
  1583. }
  1584. }
  1585. },
  1586. "/roadshow/researcher/list": {
  1587. "get": {
  1588. "tags": [
  1589. "roadshow"
  1590. ],
  1591. "description": "研究员列表接口",
  1592. "operationId": "CalendarController.研究员列表",
  1593. "responses": {
  1594. "200": {
  1595. "description": "",
  1596. "schema": {
  1597. "$ref": "#/definitions/rs.ResearcherGroup"
  1598. }
  1599. }
  1600. }
  1601. }
  1602. },
  1603. "/seal/add": {
  1604. "post": {
  1605. "tags": [
  1606. "seal"
  1607. ],
  1608. "description": "新增用印接口",
  1609. "operationId": "SealCommon.新增用印",
  1610. "parameters": [
  1611. {
  1612. "in": "body",
  1613. "name": "request",
  1614. "description": "type json string",
  1615. "required": true,
  1616. "schema": {
  1617. "$ref": "#/definitions/seal.AddReq"
  1618. }
  1619. }
  1620. ],
  1621. "responses": {
  1622. "Ret=200": {
  1623. "description": "新增用印成功"
  1624. }
  1625. }
  1626. }
  1627. },
  1628. "/seal/check_edit": {
  1629. "post": {
  1630. "tags": [
  1631. "seal"
  1632. ],
  1633. "description": "审批者编辑用印接口",
  1634. "operationId": "SealCommon.审批者编辑用印",
  1635. "parameters": [
  1636. {
  1637. "in": "body",
  1638. "name": "request",
  1639. "description": "type json string",
  1640. "required": true,
  1641. "schema": {
  1642. "$ref": "#/definitions/seal.CheckEditReq"
  1643. }
  1644. }
  1645. ],
  1646. "responses": {
  1647. "200": {
  1648. "description": "",
  1649. "schema": {
  1650. "$ref": "#/definitions/seal.AddSealResp"
  1651. }
  1652. }
  1653. }
  1654. }
  1655. },
  1656. "/seal/company_list": {
  1657. "get": {
  1658. "tags": [
  1659. "seal"
  1660. ],
  1661. "description": "获取合同详情接口",
  1662. "operationId": "SealCommon.根据客户名称获取已存在系统中客户名称列表",
  1663. "parameters": [
  1664. {
  1665. "in": "query",
  1666. "name": "Keyword",
  1667. "description": "关键字:客户名称、组织社会信用码",
  1668. "required": true,
  1669. "type": "string"
  1670. }
  1671. ],
  1672. "responses": {
  1673. "200": {
  1674. "description": "",
  1675. "schema": {
  1676. "type": "array",
  1677. "items": {
  1678. "type": "string"
  1679. }
  1680. }
  1681. }
  1682. }
  1683. }
  1684. },
  1685. "/seal/company_name_list": {
  1686. "get": {
  1687. "tags": [
  1688. "seal"
  1689. ],
  1690. "description": "获取客户名称列表",
  1691. "operationId": "SealCommon.根据客户名称关键词获取系统中的客户名称列表",
  1692. "parameters": [
  1693. {
  1694. "in": "query",
  1695. "name": "Keyword",
  1696. "description": "客户名称关键词",
  1697. "required": true,
  1698. "type": "string"
  1699. },
  1700. {
  1701. "in": "query",
  1702. "name": "PageSize",
  1703. "description": "每页数据量",
  1704. "required": true,
  1705. "type": "integer",
  1706. "format": "int64"
  1707. },
  1708. {
  1709. "in": "query",
  1710. "name": "CurrentIndex",
  1711. "description": "页码",
  1712. "required": true,
  1713. "type": "integer",
  1714. "format": "int64"
  1715. }
  1716. ],
  1717. "responses": {
  1718. "200": {
  1719. "description": "",
  1720. "schema": {
  1721. "type": "array",
  1722. "items": {
  1723. "$ref": "#/definitions/company.CompanyNameList"
  1724. }
  1725. }
  1726. }
  1727. }
  1728. }
  1729. },
  1730. "/seal/detail": {
  1731. "get": {
  1732. "tags": [
  1733. "seal"
  1734. ],
  1735. "description": "获取用印详情接口",
  1736. "operationId": "SealCommon.获取用印详情",
  1737. "parameters": [
  1738. {
  1739. "in": "query",
  1740. "name": "SealId",
  1741. "description": "用印id",
  1742. "required": true,
  1743. "type": "integer",
  1744. "format": "int64"
  1745. }
  1746. ],
  1747. "responses": {
  1748. "200": {
  1749. "description": "",
  1750. "schema": {
  1751. "$ref": "#/definitions/seal.SealDetailResp"
  1752. }
  1753. }
  1754. }
  1755. }
  1756. },
  1757. "/seal/edit": {
  1758. "post": {
  1759. "tags": [
  1760. "seal"
  1761. ],
  1762. "description": "编辑用印接口",
  1763. "operationId": "SealCommon.编辑用印",
  1764. "parameters": [
  1765. {
  1766. "in": "body",
  1767. "name": "request",
  1768. "description": "type json string",
  1769. "required": true,
  1770. "schema": {
  1771. "$ref": "#/definitions/seal.EditReq"
  1772. }
  1773. }
  1774. ],
  1775. "responses": {
  1776. "200": {
  1777. "description": "",
  1778. "schema": {
  1779. "$ref": "#/definitions/seal.AddSealResp"
  1780. }
  1781. }
  1782. }
  1783. }
  1784. },
  1785. "/seal/invalid": {
  1786. "post": {
  1787. "tags": [
  1788. "seal"
  1789. ],
  1790. "description": "作废合同接口",
  1791. "operationId": "SealCommon.作废合同",
  1792. "parameters": [
  1793. {
  1794. "in": "body",
  1795. "name": "request",
  1796. "description": "type json string",
  1797. "required": true,
  1798. "schema": {
  1799. "$ref": "#/definitions/seal.InvalidReq"
  1800. }
  1801. }
  1802. ],
  1803. "responses": {
  1804. "Ret=200": {
  1805. "description": "作废成功"
  1806. }
  1807. }
  1808. }
  1809. },
  1810. "/seal/list": {
  1811. "get": {
  1812. "tags": [
  1813. "seal"
  1814. ],
  1815. "description": "用印列表接口",
  1816. "operationId": "SealCommon.用印列表",
  1817. "parameters": [
  1818. {
  1819. "in": "query",
  1820. "name": "Status",
  1821. "description": "合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废','已签回'",
  1822. "type": "string"
  1823. },
  1824. {
  1825. "in": "query",
  1826. "name": "ProductId",
  1827. "description": "客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益",
  1828. "type": "integer",
  1829. "format": "int64"
  1830. },
  1831. {
  1832. "in": "query",
  1833. "name": "ModifyStartTime",
  1834. "description": "服务更新时间的选择开始时间,格式:2021-05-23 00:00:00",
  1835. "type": "string"
  1836. },
  1837. {
  1838. "in": "query",
  1839. "name": "ModifyEndTime",
  1840. "description": "服务更新时间的选择结束时间,格式:2021-05-26 23:59:59",
  1841. "type": "string"
  1842. },
  1843. {
  1844. "in": "query",
  1845. "name": "AdminId",
  1846. "description": "选择的用户id",
  1847. "type": "string"
  1848. },
  1849. {
  1850. "in": "query",
  1851. "name": "Keyword",
  1852. "description": "搜索关键字",
  1853. "type": "string"
  1854. },
  1855. {
  1856. "in": "query",
  1857. "name": "KeywordEq",
  1858. "description": "搜索关键字(全匹配搜索)",
  1859. "type": "string"
  1860. }
  1861. ],
  1862. "responses": {
  1863. "200": {
  1864. "description": "",
  1865. "schema": {
  1866. "$ref": "#/definitions/contract.ContractListResp"
  1867. }
  1868. }
  1869. }
  1870. }
  1871. },
  1872. "/seal/upload_check_back_file": {
  1873. "post": {
  1874. "tags": [
  1875. "seal"
  1876. ],
  1877. "description": "上传签回附件接口",
  1878. "operationId": "SealCommon.上传签回附件",
  1879. "parameters": [
  1880. {
  1881. "in": "body",
  1882. "name": "request",
  1883. "description": "type json string",
  1884. "required": true,
  1885. "schema": {
  1886. "$ref": "#/definitions/seal.UploadCheckBackFileReq"
  1887. }
  1888. }
  1889. ],
  1890. "responses": {
  1891. "Ret=200": {
  1892. "description": "上传成功"
  1893. }
  1894. }
  1895. }
  1896. },
  1897. "/seal_approval/approved": {
  1898. "post": {
  1899. "tags": [
  1900. "seal_approval"
  1901. ],
  1902. "description": "处理审批单",
  1903. "operationId": "SealApprovalCommon.处理审批单",
  1904. "parameters": [
  1905. {
  1906. "in": "body",
  1907. "name": "request",
  1908. "description": "type json string",
  1909. "required": true,
  1910. "schema": {
  1911. "$ref": "#/definitions/seal.ApprovedReq"
  1912. }
  1913. }
  1914. ],
  1915. "responses": {
  1916. "Ret=200": {
  1917. "description": "申请成功"
  1918. }
  1919. }
  1920. }
  1921. },
  1922. "/seal_approval/cancelApply": {
  1923. "get": {
  1924. "tags": [
  1925. "seal_approval"
  1926. ],
  1927. "description": "撤回审批申请接口",
  1928. "operationId": "SealApprovalCommon.撤回审批申请",
  1929. "parameters": [
  1930. {
  1931. "in": "query",
  1932. "name": "SealId",
  1933. "description": "用印id编号",
  1934. "required": true,
  1935. "type": "integer",
  1936. "format": "int64"
  1937. }
  1938. ],
  1939. "responses": {
  1940. "Ret=200": {
  1941. "description": "撤回申请成功"
  1942. }
  1943. }
  1944. }
  1945. },
  1946. "/seal_approval/detail": {
  1947. "get": {
  1948. "tags": [
  1949. "seal_approval"
  1950. ],
  1951. "description": "审批单详情接口",
  1952. "operationId": "SealApprovalCommon.审批单详情",
  1953. "parameters": [
  1954. {
  1955. "in": "query",
  1956. "name": "SealId",
  1957. "description": "用印id",
  1958. "type": "integer",
  1959. "format": "int64"
  1960. },
  1961. {
  1962. "in": "query",
  1963. "name": "ContractApprovalId",
  1964. "description": "审批单id",
  1965. "type": "integer",
  1966. "format": "int64"
  1967. },
  1968. {
  1969. "in": "query",
  1970. "name": "ContractApprovalRecordId",
  1971. "description": "审批流程单id",
  1972. "type": "integer",
  1973. "format": "int64"
  1974. }
  1975. ],
  1976. "responses": {
  1977. "200": {
  1978. "description": "",
  1979. "schema": {
  1980. "$ref": "#/definitions/seal.SealDetailResp"
  1981. }
  1982. }
  1983. }
  1984. }
  1985. },
  1986. "/seal_approval/list": {
  1987. "get": {
  1988. "tags": [
  1989. "seal_approval"
  1990. ],
  1991. "description": "审批单列表接口",
  1992. "operationId": "SealApprovalCommon.审批单列表",
  1993. "parameters": [
  1994. {
  1995. "in": "query",
  1996. "name": "Use",
  1997. "description": "用途,枚举值:销售合同, 渠道合同, 付款通知函, 招投标, 战略合作协议",
  1998. "type": "string"
  1999. },
  2000. {
  2001. "in": "query",
  2002. "name": "ServiceType",
  2003. "description": "false",
  2004. "type": "string"
  2005. },
  2006. {
  2007. "in": "query",
  2008. "name": "SealType",
  2009. "description": "公章类型,枚举值:合同章, 公章, 法人章",
  2010. "type": "string"
  2011. },
  2012. {
  2013. "in": "query",
  2014. "name": "Status",
  2015. "description": "合同状态,枚举值:'待审批','已审批','已驳回','已撤回','已签回'",
  2016. "type": "string"
  2017. },
  2018. {
  2019. "in": "query",
  2020. "name": "UserId",
  2021. "description": "选择的申请人id",
  2022. "type": "string"
  2023. },
  2024. {
  2025. "in": "query",
  2026. "name": "Keyword",
  2027. "description": "搜索关键字",
  2028. "type": "string"
  2029. },
  2030. {
  2031. "in": "query",
  2032. "name": "KeywordEq",
  2033. "description": "搜索关键字(全等)",
  2034. "type": "string"
  2035. },
  2036. {
  2037. "in": "query",
  2038. "name": "ModifyStartTime",
  2039. "description": "服务更新时间的选择开始时间,格式:2021-05-23 00:00:00",
  2040. "type": "string"
  2041. },
  2042. {
  2043. "in": "query",
  2044. "name": "ModifyEndTime",
  2045. "description": "服务更新时间的选择结束时间,格式:2021-05-26 23:59:59",
  2046. "type": "string"
  2047. }
  2048. ],
  2049. "responses": {
  2050. "200": {
  2051. "description": "",
  2052. "schema": {
  2053. "$ref": "#/definitions/seal.SealApprovalListResp"
  2054. }
  2055. }
  2056. }
  2057. }
  2058. },
  2059. "/seal_approval/reject": {
  2060. "post": {
  2061. "tags": [
  2062. "seal_approval"
  2063. ],
  2064. "description": "驳回审批接口",
  2065. "operationId": "SealApprovalCommon.驳回审批",
  2066. "parameters": [
  2067. {
  2068. "in": "body",
  2069. "name": "request",
  2070. "description": "type json string",
  2071. "required": true,
  2072. "schema": {
  2073. "$ref": "#/definitions/seal.RejectReq"
  2074. }
  2075. }
  2076. ],
  2077. "responses": {
  2078. "Ret=200": {
  2079. "description": "驳回成功"
  2080. }
  2081. }
  2082. }
  2083. },
  2084. "/wechat/login": {
  2085. "get": {
  2086. "tags": [
  2087. "wechat"
  2088. ],
  2089. "description": "微信登录接口",
  2090. "operationId": "WeChatCommon.微信登录接口",
  2091. "parameters": [
  2092. {
  2093. "in": "query",
  2094. "name": "Code",
  2095. "description": "微信唯一编码code",
  2096. "required": true,
  2097. "type": "string"
  2098. }
  2099. ],
  2100. "responses": {
  2101. "200": {
  2102. "description": "",
  2103. "schema": {
  2104. "$ref": "#/definitions/wechat.WxLoginResp"
  2105. }
  2106. }
  2107. }
  2108. }
  2109. },
  2110. "/wechat/wxapp/login": {
  2111. "get": {
  2112. "tags": [
  2113. "wechat"
  2114. ],
  2115. "description": "微信登录接口",
  2116. "operationId": "WeChatCommon.微信登录接口",
  2117. "parameters": [
  2118. {
  2119. "in": "query",
  2120. "name": "Code",
  2121. "description": "微信唯一编码code",
  2122. "required": true,
  2123. "type": "string"
  2124. }
  2125. ],
  2126. "responses": {
  2127. "200": {
  2128. "description": "",
  2129. "schema": {
  2130. "$ref": "#/definitions/wechat.WxLoginResp"
  2131. }
  2132. }
  2133. }
  2134. }
  2135. }
  2136. },
  2137. "definitions": {
  2138. "1635.\u003cnil\u003e.0xc0007acbe8": {
  2139. "title": "0xc0007acbe8",
  2140. "type": "object"
  2141. },
  2142. "645.\u003cnil\u003e.0xc0007ac840": {
  2143. "title": "0xc0007ac840",
  2144. "type": "object"
  2145. },
  2146. "722.\u003cnil\u003e.0xc0007acf18": {
  2147. "title": "0xc0007acf18",
  2148. "type": "object"
  2149. },
  2150. "admin.LoginReq": {
  2151. "title": "LoginReq",
  2152. "type": "object",
  2153. "properties": {
  2154. "Password": {
  2155. "description": "密码",
  2156. "type": "string"
  2157. },
  2158. "Username": {
  2159. "description": "账号",
  2160. "type": "string"
  2161. }
  2162. }
  2163. },
  2164. "admin.LoginResp": {
  2165. "title": "LoginResp",
  2166. "type": "object",
  2167. "properties": {
  2168. "AdminId": {
  2169. "description": "系统用户id",
  2170. "type": "integer",
  2171. "format": "int64"
  2172. },
  2173. "AdminName": {
  2174. "description": "系统用户名称",
  2175. "type": "string"
  2176. },
  2177. "Authority": {
  2178. "description": "管理权限,0:无,1:部门负责人,2:小组负责人,3:超级管理员",
  2179. "type": "integer",
  2180. "format": "int64"
  2181. },
  2182. "DepartmentName": {
  2183. "description": "所属部门",
  2184. "type": "string"
  2185. },
  2186. "GroupName": {
  2187. "description": "所属分组",
  2188. "type": "string"
  2189. },
  2190. "Headimgurl": {
  2191. "description": "用户头像",
  2192. "type": "string"
  2193. },
  2194. "ProductName": {
  2195. "description": "产品名称:admin,ficc,权益",
  2196. "type": "string"
  2197. },
  2198. "RealName": {
  2199. "description": "系统用户姓名",
  2200. "type": "string"
  2201. },
  2202. "RoleName": {
  2203. "description": "角色名称",
  2204. "type": "string"
  2205. },
  2206. "RoleTypeCode": {
  2207. "description": "角色类型编码",
  2208. "type": "string"
  2209. }
  2210. }
  2211. },
  2212. "approval.CompanyApplyApproveReq": {
  2213. "title": "CompanyApplyApproveReq",
  2214. "type": "object",
  2215. "properties": {
  2216. "CompanyApprovalId": {
  2217. "description": "审批单id",
  2218. "type": "integer",
  2219. "format": "int64"
  2220. },
  2221. "CompanyContractId": {
  2222. "description": "合同id",
  2223. "type": "integer",
  2224. "format": "int64"
  2225. },
  2226. "CompanyId": {
  2227. "description": "客户id",
  2228. "type": "integer",
  2229. "format": "int64"
  2230. },
  2231. "Remark": {
  2232. "description": "审批理由",
  2233. "type": "string"
  2234. },
  2235. "Status": {
  2236. "description": "审批状态,1:通过,2:拒绝",
  2237. "type": "integer",
  2238. "format": "int64"
  2239. }
  2240. }
  2241. },
  2242. "approval.CompanyApprovalDetailResp": {
  2243. "title": "CompanyApprovalDetailResp",
  2244. "type": "object",
  2245. "properties": {
  2246. "CompanyApprovalDetail": {
  2247. "$ref": "#/definitions/company_approval.CompanyApprovalList",
  2248. "description": "审批单详情"
  2249. },
  2250. "FiccPermissionList": {
  2251. "description": "Ficc权限列表",
  2252. "type": "array",
  2253. "items": {
  2254. "$ref": "#/definitions/company_report_permission.PermissionLookList"
  2255. }
  2256. },
  2257. "FlowNodeList": {
  2258. "description": "审批流",
  2259. "type": "array",
  2260. "items": {
  2261. "$ref": "#/definitions/645.\u003cnil\u003e.0xc0007ac840"
  2262. }
  2263. },
  2264. "PermissionList": {
  2265. "description": "权益权限列表",
  2266. "type": "array",
  2267. "items": {
  2268. "$ref": "#/definitions/company_report_permission.PermissionLookList"
  2269. }
  2270. }
  2271. }
  2272. },
  2273. "approval.CompanyApprovalListResp": {
  2274. "title": "CompanyApprovalListResp",
  2275. "type": "object",
  2276. "properties": {
  2277. "List": {
  2278. "type": "array",
  2279. "items": {
  2280. "$ref": "#/definitions/company_approval.CompanyApprovalList"
  2281. }
  2282. },
  2283. "Paging": {
  2284. "$ref": "#/definitions/paging.PagingItem"
  2285. }
  2286. }
  2287. },
  2288. "approval.CompanyPermissionResp": {
  2289. "title": "CompanyPermissionResp",
  2290. "type": "object",
  2291. "properties": {
  2292. "FiccPermissionList": {
  2293. "description": "Ficc权限列表",
  2294. "type": "array",
  2295. "items": {
  2296. "$ref": "#/definitions/company_report_permission.PermissionLookList"
  2297. }
  2298. },
  2299. "PermissionList": {
  2300. "description": "权益权限列表",
  2301. "type": "array",
  2302. "items": {
  2303. "$ref": "#/definitions/company_report_permission.PermissionLookList"
  2304. }
  2305. }
  2306. }
  2307. },
  2308. "approval_flow.ApprovalFlowItem": {
  2309. "title": "ApprovalFlowItem",
  2310. "type": "object",
  2311. "properties": {
  2312. "CreateTime": {
  2313. "description": "创建时间",
  2314. "type": "string",
  2315. "format": "datetime"
  2316. },
  2317. "CurrVersion": {
  2318. "description": "当前流程版本",
  2319. "type": "integer",
  2320. "format": "int64"
  2321. },
  2322. "FlowId": {
  2323. "description": "流程id",
  2324. "type": "integer",
  2325. "format": "int64"
  2326. },
  2327. "FlowName": {
  2328. "description": "流程名称",
  2329. "type": "string"
  2330. },
  2331. "ModifyTime": {
  2332. "description": "最近一次修改时间",
  2333. "type": "string",
  2334. "format": "datetime"
  2335. },
  2336. "NodeList": {
  2337. "description": "节点流程列表",
  2338. "type": "array",
  2339. "items": {
  2340. "$ref": "#/definitions/approval_flow_node.ApprovalFlowNodeList"
  2341. }
  2342. },
  2343. "ProductId": {
  2344. "description": "所属类型,0代表通用,1:ficc部门,2:权益部门",
  2345. "type": "integer",
  2346. "format": "int64"
  2347. }
  2348. }
  2349. },
  2350. "approval_flow_node.ApprovalFlowNodeList": {
  2351. "title": "ApprovalFlowNodeList",
  2352. "type": "object",
  2353. "properties": {
  2354. "AuditType": {
  2355. "description": "多人审批时,1:或签(一名审批人同意即可),2:会签(需所有审批人同意)",
  2356. "type": "integer",
  2357. "format": "int64"
  2358. },
  2359. "CreateTime": {
  2360. "description": "创建时间",
  2361. "type": "string",
  2362. "format": "datetime"
  2363. },
  2364. "FlowId": {
  2365. "description": "流程id",
  2366. "type": "integer",
  2367. "format": "int64"
  2368. },
  2369. "NextNodeId": {
  2370. "description": "下级节点id,为0代表是结束节点",
  2371. "type": "integer",
  2372. "format": "int64"
  2373. },
  2374. "NodeId": {
  2375. "description": "流程节点id",
  2376. "type": "integer",
  2377. "format": "int64"
  2378. },
  2379. "NodeName": {
  2380. "description": "流程节点名称",
  2381. "type": "string"
  2382. },
  2383. "NodeType": {
  2384. "description": "节点类型,审批人:check;抄送人:cc(Carbon Copy),默认是:check",
  2385. "type": "string"
  2386. },
  2387. "PrevNodeId": {
  2388. "description": "上级节点id,为0代表是开始节点",
  2389. "type": "integer",
  2390. "format": "int64"
  2391. },
  2392. "UserList": {
  2393. "description": "审批人、抄送人列表信息",
  2394. "type": "array",
  2395. "items": {
  2396. "$ref": "#/definitions/approval_flow_node.User"
  2397. }
  2398. },
  2399. "Version": {
  2400. "description": "所属流程版本",
  2401. "type": "integer",
  2402. "format": "int64"
  2403. }
  2404. }
  2405. },
  2406. "approval_flow_node.User": {
  2407. "title": "User",
  2408. "type": "object",
  2409. "properties": {
  2410. "AdminId": {
  2411. "description": "人员id(审批人、抄送人)",
  2412. "type": "integer",
  2413. "format": "int64"
  2414. },
  2415. "Mobile": {
  2416. "description": "手机号(审批人、抄送人)",
  2417. "type": "string"
  2418. },
  2419. "Name": {
  2420. "description": "人员名称(审批人、抄送人)",
  2421. "type": "string"
  2422. },
  2423. "RoleTypeCode": {
  2424. "description": "人员角色类型(审批人、抄送人)",
  2425. "type": "string"
  2426. }
  2427. }
  2428. },
  2429. "company.CompanyApprovalMessageReadReq": {
  2430. "title": "CompanyApprovalMessageReadReq",
  2431. "type": "object"
  2432. },
  2433. "company.CompanyNameList": {
  2434. "title": "CompanyNameList",
  2435. "type": "object",
  2436. "properties": {
  2437. "CompanyId": {
  2438. "description": "客户ID",
  2439. "type": "integer",
  2440. "format": "int64"
  2441. },
  2442. "CompanyName": {
  2443. "description": "客户名称",
  2444. "type": "string"
  2445. },
  2446. "CreditCode": {
  2447. "description": "社会统一信用码",
  2448. "type": "string"
  2449. }
  2450. }
  2451. },
  2452. "company_approval.CompanyApprovalList": {
  2453. "title": "CompanyApprovalList",
  2454. "type": "object",
  2455. "properties": {
  2456. "Address": {
  2457. "description": "地址",
  2458. "type": "string"
  2459. },
  2460. "ApplyContractType": {
  2461. "description": "申请合同类型 0 非标 1 标准",
  2462. "type": "integer",
  2463. "format": "int64"
  2464. },
  2465. "ApplyMethod": {
  2466. "description": "申请类型:1:试用-\u003e正式,2:冻结—\u003e试用,3:试用延期,4:原销售申请领取流失客户,5:正式客户申请服务更新,6:正式客户补充协议",
  2467. "type": "integer",
  2468. "format": "int64"
  2469. },
  2470. "ApplyRealName": {
  2471. "description": "申请人姓名",
  2472. "type": "string"
  2473. },
  2474. "ApplyReasons": {
  2475. "description": "申请理由",
  2476. "type": "string"
  2477. },
  2478. "ApprovalCount": {
  2479. "description": "已延期审批次数",
  2480. "type": "integer",
  2481. "format": "int64"
  2482. },
  2483. "ApprovalTime": {
  2484. "description": "提交申请时间",
  2485. "type": "string"
  2486. },
  2487. "ApproveContent": {
  2488. "description": "待审内容",
  2489. "type": "string"
  2490. },
  2491. "ApproveRemark": {
  2492. "description": "驳回理由",
  2493. "type": "string"
  2494. },
  2495. "ApproveStatus": {
  2496. "description": "当前状态",
  2497. "type": "string"
  2498. },
  2499. "ApproveTime": {
  2500. "description": "审批时间",
  2501. "type": "string"
  2502. },
  2503. "ApproveUserId": {
  2504. "description": "审批人",
  2505. "type": "integer",
  2506. "format": "int64"
  2507. },
  2508. "CompanyApprovalId": {
  2509. "description": "审批记录ID",
  2510. "type": "integer",
  2511. "format": "int64"
  2512. },
  2513. "CompanyContractId": {
  2514. "description": "合同id",
  2515. "type": "integer",
  2516. "format": "int64"
  2517. },
  2518. "CompanyId": {
  2519. "type": "integer",
  2520. "format": "int64"
  2521. },
  2522. "CompanyName": {
  2523. "description": "客户名称",
  2524. "type": "string"
  2525. },
  2526. "CompanyType": {
  2527. "description": "客户类型",
  2528. "type": "string"
  2529. },
  2530. "CreateTime": {
  2531. "description": "创建时间",
  2532. "type": "string"
  2533. },
  2534. "CreditCode": {
  2535. "description": "社会统一信用码",
  2536. "type": "string"
  2537. },
  2538. "CurrNodeId": {
  2539. "description": "当前审批操作节点",
  2540. "type": "integer",
  2541. "format": "int64"
  2542. },
  2543. "DelayPermission": {
  2544. "description": "延期申请品种",
  2545. "type": "string"
  2546. },
  2547. "EndDate": {
  2548. "description": "结束日期",
  2549. "type": "string"
  2550. },
  2551. "ExpireDay": {
  2552. "description": "服务到期天数",
  2553. "type": "integer",
  2554. "format": "int64"
  2555. },
  2556. "FreezeEndDate": {
  2557. "description": "冻结结束日期",
  2558. "type": "string"
  2559. },
  2560. "FreezeExpireDays": {
  2561. "description": "冻结到期天数",
  2562. "type": "integer",
  2563. "format": "int64"
  2564. },
  2565. "FreezeStartDate": {
  2566. "description": "冻结开始日期",
  2567. "type": "string"
  2568. },
  2569. "IndustryName": {
  2570. "description": "行业名称",
  2571. "type": "string"
  2572. },
  2573. "OpButton": {
  2574. "description": "是否审批操作权限",
  2575. "type": "boolean"
  2576. },
  2577. "ProductId": {
  2578. "type": "integer",
  2579. "format": "int64"
  2580. },
  2581. "SellerName": {
  2582. "description": "销售名称",
  2583. "type": "string"
  2584. },
  2585. "Source": {
  2586. "description": "客户来源",
  2587. "type": "string"
  2588. },
  2589. "StartDate": {
  2590. "description": "开始日期",
  2591. "type": "string"
  2592. },
  2593. "Status": {
  2594. "description": "客户状态",
  2595. "type": "string"
  2596. }
  2597. }
  2598. },
  2599. "company_approval_message.ApprovalInfo": {
  2600. "title": "ApprovalInfo",
  2601. "type": "object",
  2602. "properties": {
  2603. "ApplyName": {
  2604. "description": "申请人姓名",
  2605. "type": "string"
  2606. },
  2607. "ApplyTime": {
  2608. "description": "提交时间",
  2609. "type": "string",
  2610. "format": "datetime"
  2611. },
  2612. "ApprovalTime": {
  2613. "description": "审批时间",
  2614. "type": "string",
  2615. "format": "datetime"
  2616. },
  2617. "Type": {
  2618. "description": "类型",
  2619. "type": "string"
  2620. }
  2621. }
  2622. },
  2623. "company_approval_message.CompanyApprovalMessageList": {
  2624. "title": "CompanyApprovalMessageList",
  2625. "type": "object",
  2626. "properties": {
  2627. "ApprovalInfo": {
  2628. "$ref": "#/definitions/company_approval_message.ApprovalInfo",
  2629. "description": "审批单信息"
  2630. },
  2631. "ApprovalStatus": {
  2632. "description": "审批结果:1:待审批,2:已审批,3:已驳回",
  2633. "type": "integer",
  2634. "format": "int64"
  2635. },
  2636. "CompanyApprovalId": {
  2637. "description": "审批单id",
  2638. "type": "integer",
  2639. "format": "int64"
  2640. },
  2641. "CompanyName": {
  2642. "description": "客户名称",
  2643. "type": "string"
  2644. },
  2645. "Content": {
  2646. "description": "消息内容",
  2647. "type": "string"
  2648. },
  2649. "CreateTime": {
  2650. "description": "创建时间",
  2651. "type": "string",
  2652. "format": "datetime"
  2653. },
  2654. "CreateUserId": {
  2655. "description": "申请者id",
  2656. "type": "integer",
  2657. "format": "int64"
  2658. },
  2659. "Id": {
  2660. "type": "integer",
  2661. "format": "int64"
  2662. },
  2663. "MessageStatus": {
  2664. "description": "消息状态:0未读,1:已读,2:作废",
  2665. "type": "integer",
  2666. "format": "int64"
  2667. },
  2668. "MessageType": {
  2669. "description": "1:申请消息,2:审批结果,3:文字消息",
  2670. "type": "integer",
  2671. "format": "int64"
  2672. },
  2673. "RealName": {
  2674. "description": "销售名称",
  2675. "type": "string"
  2676. },
  2677. "Remark": {
  2678. "description": "备注信息",
  2679. "type": "string"
  2680. },
  2681. "SourceType": {
  2682. "description": "消息来源类型,1:客户,2:合同,3:用印",
  2683. "type": "integer",
  2684. "format": "int64"
  2685. }
  2686. }
  2687. },
  2688. "company_contract.CompanyContractDetail": {
  2689. "title": "CompanyContractDetail",
  2690. "type": "object",
  2691. "properties": {
  2692. "CompanyContractId": {
  2693. "type": "integer",
  2694. "format": "int64"
  2695. },
  2696. "CompanyId": {
  2697. "description": "客户id",
  2698. "type": "integer",
  2699. "format": "int64"
  2700. },
  2701. "ContractCode": {
  2702. "description": "合同编码",
  2703. "type": "string"
  2704. },
  2705. "ContractType": {
  2706. "description": "合同类型:枚举值:'新签合同','续约合同','补充协议'",
  2707. "type": "string"
  2708. },
  2709. "CreateTime": {
  2710. "description": "合同创建时间",
  2711. "type": "string",
  2712. "format": "datetime"
  2713. },
  2714. "EndDate": {
  2715. "description": "合同结束时间",
  2716. "type": "string"
  2717. },
  2718. "ImgUrl": {
  2719. "description": "合同图片,多个用#隔开",
  2720. "type": "string"
  2721. },
  2722. "ModifyTime": {
  2723. "description": "合同修改时间",
  2724. "type": "string",
  2725. "format": "datetime"
  2726. },
  2727. "Money": {
  2728. "description": "合同金额",
  2729. "type": "number",
  2730. "format": "double"
  2731. },
  2732. "PackageType": {
  2733. "description": "套餐类型,0:无,1:大套餐,2:小套餐",
  2734. "type": "integer",
  2735. "format": "int64"
  2736. },
  2737. "PayChannel": {
  2738. "description": "支付渠道",
  2739. "type": "string"
  2740. },
  2741. "PayMethod": {
  2742. "description": "支付方式",
  2743. "type": "string"
  2744. },
  2745. "PermissionList": {
  2746. "type": "array",
  2747. "items": {
  2748. "$ref": "#/definitions/company_report_permission.PermissionLookList"
  2749. }
  2750. },
  2751. "StartDate": {
  2752. "description": "合同开始时间",
  2753. "type": "string"
  2754. },
  2755. "Status": {
  2756. "description": "状态",
  2757. "type": "integer",
  2758. "format": "int64"
  2759. }
  2760. }
  2761. },
  2762. "company_contract.CompanyContractDetailResp": {
  2763. "title": "CompanyContractDetailResp",
  2764. "type": "object",
  2765. "properties": {
  2766. "CompanyContractId": {
  2767. "type": "integer",
  2768. "format": "int64"
  2769. },
  2770. "CompanyId": {
  2771. "description": "客户id",
  2772. "type": "integer",
  2773. "format": "int64"
  2774. },
  2775. "ContractCode": {
  2776. "description": "合同编码",
  2777. "type": "string"
  2778. },
  2779. "ContractType": {
  2780. "description": "合同类型:枚举值:'新签合同','续约合同','补充协议'",
  2781. "type": "string"
  2782. },
  2783. "CreateTime": {
  2784. "description": "合同创建时间",
  2785. "type": "string",
  2786. "format": "datetime"
  2787. },
  2788. "EndDate": {
  2789. "description": "合同结束时间",
  2790. "type": "string"
  2791. },
  2792. "ImgUrl": {
  2793. "description": "合同图片,多个用#隔开",
  2794. "type": "string"
  2795. },
  2796. "ModifyTime": {
  2797. "description": "合同修改时间",
  2798. "type": "string",
  2799. "format": "datetime"
  2800. },
  2801. "Money": {
  2802. "description": "合同金额",
  2803. "type": "number",
  2804. "format": "double"
  2805. },
  2806. "PackageType": {
  2807. "description": "套餐类型,0:无,1:大套餐,2:小套餐",
  2808. "type": "integer",
  2809. "format": "int64"
  2810. },
  2811. "PayChannel": {
  2812. "description": "支付渠道",
  2813. "type": "string"
  2814. },
  2815. "PayMethod": {
  2816. "description": "支付方式",
  2817. "type": "string"
  2818. },
  2819. "PermissionList": {
  2820. "type": "array",
  2821. "items": {
  2822. "$ref": "#/definitions/company_report_permission.PermissionLookList"
  2823. }
  2824. },
  2825. "StartDate": {
  2826. "description": "合同开始时间",
  2827. "type": "string"
  2828. },
  2829. "Status": {
  2830. "description": "状态",
  2831. "type": "integer",
  2832. "format": "int64"
  2833. }
  2834. }
  2835. },
  2836. "company_report_permission.PermissionLookItem": {
  2837. "title": "PermissionLookItem",
  2838. "type": "object",
  2839. "properties": {
  2840. "ChartPermissionId": {
  2841. "description": "权限id",
  2842. "type": "integer",
  2843. "format": "int64"
  2844. },
  2845. "ClassifyName": {
  2846. "description": "分类",
  2847. "type": "string"
  2848. },
  2849. "EndDate": {
  2850. "description": "权限结束日期",
  2851. "type": "string"
  2852. },
  2853. "ExpireDay": {
  2854. "description": "到期天数",
  2855. "type": "string"
  2856. },
  2857. "PermissionName": {
  2858. "description": "权限名称",
  2859. "type": "string"
  2860. },
  2861. "StartDate": {
  2862. "description": "权限开始日期",
  2863. "type": "string"
  2864. },
  2865. "Status": {
  2866. "description": "'正式','试用','关闭'",
  2867. "type": "string"
  2868. }
  2869. }
  2870. },
  2871. "company_report_permission.PermissionLookList": {
  2872. "title": "PermissionLookList",
  2873. "type": "object",
  2874. "properties": {
  2875. "CheckList": {
  2876. "type": "array",
  2877. "items": {
  2878. "type": "integer",
  2879. "format": "int64"
  2880. }
  2881. },
  2882. "ClassifyName": {
  2883. "description": "分类",
  2884. "type": "string"
  2885. },
  2886. "Items": {
  2887. "type": "array",
  2888. "items": {
  2889. "$ref": "#/definitions/company_report_permission.PermissionLookItem"
  2890. }
  2891. }
  2892. }
  2893. },
  2894. "contract.ApprovedReq": {
  2895. "title": "ApprovedReq",
  2896. "type": "object",
  2897. "properties": {
  2898. "ContractId": {
  2899. "description": "合同id",
  2900. "type": "integer",
  2901. "format": "int64"
  2902. },
  2903. "Remark": {
  2904. "description": "驳回理由",
  2905. "type": "string"
  2906. }
  2907. }
  2908. },
  2909. "contract.ContractApprovalListResp": {
  2910. "title": "ContractApprovalListResp",
  2911. "type": "object",
  2912. "properties": {
  2913. "List": {
  2914. "description": "列表数据",
  2915. "type": "array",
  2916. "items": {
  2917. "$ref": "#/definitions/contract_approval.ContractApprovalList"
  2918. }
  2919. },
  2920. "Paging": {
  2921. "$ref": "#/definitions/paging.PagingItem"
  2922. }
  2923. }
  2924. },
  2925. "contract.ContractDetail": {
  2926. "title": "ContractDetail",
  2927. "type": "object",
  2928. "properties": {
  2929. "Address": {
  2930. "description": "详细地址",
  2931. "type": "string"
  2932. },
  2933. "ApprovalRemark": {
  2934. "description": "审核备注",
  2935. "type": "string"
  2936. },
  2937. "ApproveTime": {
  2938. "description": "审批时间",
  2939. "type": "string",
  2940. "format": "datetime"
  2941. },
  2942. "ApproveTimeStr": {
  2943. "description": "审批时间",
  2944. "type": "string"
  2945. },
  2946. "CheckBackFileTime": {
  2947. "description": "合同签回时间",
  2948. "type": "string",
  2949. "format": "datetime"
  2950. },
  2951. "CheckBackFileTimeStr": {
  2952. "description": "合同签回时间",
  2953. "type": "string"
  2954. },
  2955. "CheckBackFileUrl": {
  2956. "description": "签回合同文件地址",
  2957. "type": "string"
  2958. },
  2959. "City": {
  2960. "description": "市级名称,长度32位",
  2961. "type": "string"
  2962. },
  2963. "CityId": {
  2964. "description": "市级id",
  2965. "type": "integer",
  2966. "format": "int64"
  2967. },
  2968. "CompanyName": {
  2969. "description": "客户名称,甲方名称,长度32位",
  2970. "type": "string"
  2971. },
  2972. "ContractBusinessType": {
  2973. "description": "合同业务类型,枚举值:'业务合同','代付合同'",
  2974. "type": "string"
  2975. },
  2976. "ContractCode": {
  2977. "description": "合同编号,长度32位",
  2978. "type": "string"
  2979. },
  2980. "ContractId": {
  2981. "description": "合同唯一id",
  2982. "type": "integer",
  2983. "format": "int64"
  2984. },
  2985. "ContractType": {
  2986. "description": "合同类型,枚举值:'新签合同','续约合同','补充协议'",
  2987. "type": "string"
  2988. },
  2989. "CreateTime": {
  2990. "description": "合同添加时间",
  2991. "type": "string",
  2992. "format": "datetime"
  2993. },
  2994. "CreateTimeStr": {
  2995. "description": "合同添加时间",
  2996. "type": "string"
  2997. },
  2998. "CreditCode": {
  2999. "description": "社会统一信用代码,长度64位",
  3000. "type": "string"
  3001. },
  3002. "EndDate": {
  3003. "description": "合同结束日期",
  3004. "type": "string",
  3005. "format": "datetime"
  3006. },
  3007. "EndDateStr": {
  3008. "description": "合同结束时间",
  3009. "type": "string"
  3010. },
  3011. "Fax": {
  3012. "description": "传真,长度32位",
  3013. "type": "string"
  3014. },
  3015. "FileUrl": {
  3016. "description": "合同文件地址",
  3017. "type": "string"
  3018. },
  3019. "InvalidTime": {
  3020. "description": "作废时间",
  3021. "type": "string",
  3022. "format": "datetime"
  3023. },
  3024. "InvalidTimeStr": {
  3025. "description": "作废时间",
  3026. "type": "string"
  3027. },
  3028. "ModifyContent": {
  3029. "description": "修改内容",
  3030. "type": "string"
  3031. },
  3032. "ModifyTime": {
  3033. "description": "合同最近一次修改时间",
  3034. "type": "string",
  3035. "format": "datetime"
  3036. },
  3037. "ModifyTimeStr": {
  3038. "description": "最近一次更新时间",
  3039. "type": "string"
  3040. },
  3041. "OriginalPrice": {
  3042. "description": "合同原金额,优惠前的金额",
  3043. "type": "number",
  3044. "format": "double"
  3045. },
  3046. "PayChannel": {
  3047. "description": "付款渠道,长度255位",
  3048. "type": "string"
  3049. },
  3050. "PayRemark": {
  3051. "description": "付款方式说明,长度255位",
  3052. "type": "string"
  3053. },
  3054. "PermissionLookList": {
  3055. "description": "合同里面的权限列表",
  3056. "type": "array",
  3057. "items": {
  3058. "$ref": "#/definitions/company_report_permission.PermissionLookList"
  3059. }
  3060. },
  3061. "Phone": {
  3062. "description": "电话,长度32位",
  3063. "type": "string"
  3064. },
  3065. "Postcode": {
  3066. "description": "邮编,长度16位",
  3067. "type": "string"
  3068. },
  3069. "Price": {
  3070. "description": "实际金额,优惠后的金额",
  3071. "type": "number",
  3072. "format": "double"
  3073. },
  3074. "ProductId": {
  3075. "description": "产品id,1:ficc;2:权益",
  3076. "type": "integer",
  3077. "format": "int64"
  3078. },
  3079. "Province": {
  3080. "description": "省级名称,长度16位",
  3081. "type": "string"
  3082. },
  3083. "ProvinceId": {
  3084. "description": "省级id",
  3085. "type": "integer",
  3086. "format": "int64"
  3087. },
  3088. "RelationContractDetailList": {
  3089. "description": "关联合同详情",
  3090. "type": "array",
  3091. "items": {
  3092. "$ref": "#/definitions/contract.ContractDetail"
  3093. }
  3094. },
  3095. "Remark": {
  3096. "description": "补充内容,长度255位",
  3097. "type": "string"
  3098. },
  3099. "RescindFileUrl": {
  3100. "description": "解约合同文件地址",
  3101. "type": "string"
  3102. },
  3103. "RescindTime": {
  3104. "description": "解约时间",
  3105. "type": "string",
  3106. "format": "datetime"
  3107. },
  3108. "RescindTimeStr": {
  3109. "description": "解约时间",
  3110. "type": "string"
  3111. },
  3112. "SellerId": {
  3113. "description": "所属销售id",
  3114. "type": "integer",
  3115. "format": "int64"
  3116. },
  3117. "SellerName": {
  3118. "description": "所属销售名称",
  3119. "type": "string"
  3120. },
  3121. "SellerRemark": {
  3122. "description": "销售备注,长度255位",
  3123. "type": "string"
  3124. },
  3125. "Service": {
  3126. "type": "array",
  3127. "items": {
  3128. "$ref": "#/definitions/contract.ContractServiceAndDetail"
  3129. }
  3130. },
  3131. "SourceId": {
  3132. "description": "来源合同id,默认是0;如果是通过其他合同复制过来的,那么就是原合同的id",
  3133. "type": "integer",
  3134. "format": "int64"
  3135. },
  3136. "StartDate": {
  3137. "description": "合同开始日期",
  3138. "type": "string",
  3139. "format": "datetime"
  3140. },
  3141. "StartDateStr": {
  3142. "description": "合同起始时间",
  3143. "type": "string"
  3144. },
  3145. "Status": {
  3146. "description": "合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废','已解约'",
  3147. "type": "string"
  3148. },
  3149. "TemplateId": {
  3150. "description": "模板id",
  3151. "type": "integer",
  3152. "format": "int64"
  3153. }
  3154. }
  3155. },
  3156. "contract.ContractDetailResp": {
  3157. "title": "ContractDetailResp",
  3158. "type": "object",
  3159. "properties": {
  3160. "ContractDetail": {
  3161. "$ref": "#/definitions/contract.ContractDetail",
  3162. "description": "审批单详情"
  3163. },
  3164. "FlowNodeList": {
  3165. "description": "审批流",
  3166. "type": "array",
  3167. "items": {
  3168. "$ref": "#/definitions/1635.\u003cnil\u003e.0xc0007acbe8"
  3169. }
  3170. },
  3171. "OpButton": {
  3172. "$ref": "#/definitions/contract.OpButton",
  3173. "description": "操作权限"
  3174. }
  3175. }
  3176. },
  3177. "contract.ContractList": {
  3178. "title": "ContractList",
  3179. "type": "object",
  3180. "properties": {
  3181. "Address": {
  3182. "description": "详细地址",
  3183. "type": "string"
  3184. },
  3185. "ApprovalRemark": {
  3186. "description": "审核备注",
  3187. "type": "string"
  3188. },
  3189. "ApproveTime": {
  3190. "description": "审批时间",
  3191. "type": "string",
  3192. "format": "datetime"
  3193. },
  3194. "ApproveTimeStr": {
  3195. "description": "审批时间",
  3196. "type": "string"
  3197. },
  3198. "CheckBackFileTime": {
  3199. "description": "合同签回时间",
  3200. "type": "string",
  3201. "format": "datetime"
  3202. },
  3203. "CheckBackFileTimeStr": {
  3204. "description": "合同签回时间",
  3205. "type": "string"
  3206. },
  3207. "CheckBackFileUrl": {
  3208. "description": "签回合同文件地址",
  3209. "type": "string"
  3210. },
  3211. "City": {
  3212. "description": "市级名称,长度32位",
  3213. "type": "string"
  3214. },
  3215. "CityId": {
  3216. "description": "市级id",
  3217. "type": "integer",
  3218. "format": "int64"
  3219. },
  3220. "CompanyName": {
  3221. "description": "客户名称,甲方名称,长度32位",
  3222. "type": "string"
  3223. },
  3224. "ContractBusinessType": {
  3225. "description": "合同业务类型,枚举值:'业务合同','代付合同'",
  3226. "type": "string"
  3227. },
  3228. "ContractCode": {
  3229. "description": "合同编号,长度32位",
  3230. "type": "string"
  3231. },
  3232. "ContractId": {
  3233. "description": "合同唯一id",
  3234. "type": "integer",
  3235. "format": "int64"
  3236. },
  3237. "ContractType": {
  3238. "description": "合同类型,枚举值:'新签合同','续约合同','补充协议'",
  3239. "type": "string"
  3240. },
  3241. "CreateTime": {
  3242. "description": "合同添加时间",
  3243. "type": "string",
  3244. "format": "datetime"
  3245. },
  3246. "CreateTimeStr": {
  3247. "description": "合同添加时间",
  3248. "type": "string"
  3249. },
  3250. "CreditCode": {
  3251. "description": "社会统一信用代码,长度64位",
  3252. "type": "string"
  3253. },
  3254. "EndDate": {
  3255. "description": "合同结束日期",
  3256. "type": "string",
  3257. "format": "datetime"
  3258. },
  3259. "EndDateStr": {
  3260. "description": "合同结束时间",
  3261. "type": "string"
  3262. },
  3263. "Fax": {
  3264. "description": "传真,长度32位",
  3265. "type": "string"
  3266. },
  3267. "FileUrl": {
  3268. "description": "合同文件地址",
  3269. "type": "string"
  3270. },
  3271. "InvalidTime": {
  3272. "description": "作废时间",
  3273. "type": "string",
  3274. "format": "datetime"
  3275. },
  3276. "InvalidTimeStr": {
  3277. "description": "作废时间",
  3278. "type": "string"
  3279. },
  3280. "ModifyContent": {
  3281. "description": "修改内容",
  3282. "type": "string"
  3283. },
  3284. "ModifyTime": {
  3285. "description": "合同最近一次修改时间",
  3286. "type": "string",
  3287. "format": "datetime"
  3288. },
  3289. "ModifyTimeStr": {
  3290. "description": "最近一次更新时间",
  3291. "type": "string"
  3292. },
  3293. "OriginalPrice": {
  3294. "description": "合同原金额,优惠前的金额",
  3295. "type": "number",
  3296. "format": "double"
  3297. },
  3298. "PayRemark": {
  3299. "description": "付款方式说明,长度255位",
  3300. "type": "string"
  3301. },
  3302. "Phone": {
  3303. "description": "电话,长度32位",
  3304. "type": "string"
  3305. },
  3306. "Postcode": {
  3307. "description": "邮编,长度16位",
  3308. "type": "string"
  3309. },
  3310. "Price": {
  3311. "description": "实际金额,优惠后的金额",
  3312. "type": "number",
  3313. "format": "double"
  3314. },
  3315. "ProductId": {
  3316. "description": "产品id,1:ficc;2:权益",
  3317. "type": "integer",
  3318. "format": "int64"
  3319. },
  3320. "Province": {
  3321. "description": "省级名称,长度16位",
  3322. "type": "string"
  3323. },
  3324. "ProvinceId": {
  3325. "description": "省级id",
  3326. "type": "integer",
  3327. "format": "int64"
  3328. },
  3329. "RescindTime": {
  3330. "description": "解约时间",
  3331. "type": "string",
  3332. "format": "datetime"
  3333. },
  3334. "RescindTimeStr": {
  3335. "description": "解约时间",
  3336. "type": "string"
  3337. },
  3338. "SellerId": {
  3339. "description": "所属销售id",
  3340. "type": "integer",
  3341. "format": "int64"
  3342. },
  3343. "SellerName": {
  3344. "description": "所属销售名称",
  3345. "type": "string"
  3346. },
  3347. "SellerRemark": {
  3348. "description": "销售备注,长度255位",
  3349. "type": "string"
  3350. },
  3351. "Service": {
  3352. "type": "array",
  3353. "items": {
  3354. "$ref": "#/definitions/contract.ContractServiceAndDetail"
  3355. }
  3356. },
  3357. "SourceId": {
  3358. "description": "来源合同id,默认是0;如果是通过其他合同复制过来的,那么就是原合同的id",
  3359. "type": "integer",
  3360. "format": "int64"
  3361. },
  3362. "StartDate": {
  3363. "description": "合同开始日期",
  3364. "type": "string",
  3365. "format": "datetime"
  3366. },
  3367. "StartDateStr": {
  3368. "description": "合同起始时间",
  3369. "type": "string"
  3370. },
  3371. "Status": {
  3372. "description": "合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废'",
  3373. "type": "string"
  3374. },
  3375. "TemplateId": {
  3376. "description": "模板id",
  3377. "type": "integer",
  3378. "format": "int64"
  3379. },
  3380. "UseCompanyName": {
  3381. "description": "使用方名称,长度32位",
  3382. "type": "string"
  3383. }
  3384. }
  3385. },
  3386. "contract.ContractListResp": {
  3387. "title": "ContractListResp",
  3388. "type": "object",
  3389. "properties": {
  3390. "List": {
  3391. "description": "列表数据",
  3392. "type": "array",
  3393. "items": {
  3394. "$ref": "#/definitions/contract.ContractList"
  3395. }
  3396. },
  3397. "Paging": {
  3398. "$ref": "#/definitions/paging.PagingItem"
  3399. }
  3400. }
  3401. },
  3402. "contract.ContractListRespV2": {
  3403. "title": "ContractListRespV2",
  3404. "type": "object",
  3405. "properties": {
  3406. "List": {
  3407. "description": "列表数据",
  3408. "type": "array",
  3409. "items": {
  3410. "$ref": "#/definitions/contract_approval.ContractApprovalList"
  3411. }
  3412. },
  3413. "Paging": {
  3414. "$ref": "#/definitions/paging.PagingItem"
  3415. }
  3416. }
  3417. },
  3418. "contract.ContractServiceAndDetail": {
  3419. "title": "ContractServiceAndDetail",
  3420. "type": "object",
  3421. "properties": {
  3422. "ChartPermissionId": {
  3423. "description": "权限id",
  3424. "type": "integer",
  3425. "format": "int64"
  3426. },
  3427. "ContractId": {
  3428. "description": "合同id",
  3429. "type": "integer",
  3430. "format": "int64"
  3431. },
  3432. "ContractServiceId": {
  3433. "type": "integer",
  3434. "format": "int64"
  3435. },
  3436. "DetailList": {
  3437. "type": "array",
  3438. "items": {
  3439. "$ref": "#/definitions/contract_service_detail.ContractServiceDetail"
  3440. }
  3441. },
  3442. "HasDetail": {
  3443. "description": "是否有详情,枚举值:是、否;默认:否",
  3444. "type": "string"
  3445. },
  3446. "ProductId": {
  3447. "description": "产品id,1:ficc;2:权益",
  3448. "type": "integer",
  3449. "format": "int64"
  3450. },
  3451. "ServiceTemplateId": {
  3452. "description": "合同服务模板id",
  3453. "type": "integer",
  3454. "format": "int64"
  3455. },
  3456. "TableValue": {
  3457. "description": "表格数据,用于word生成时的json数据",
  3458. "type": "string"
  3459. },
  3460. "Title": {
  3461. "description": "套餐标题",
  3462. "type": "string"
  3463. },
  3464. "Value": {
  3465. "description": "套餐的值",
  3466. "type": "string"
  3467. }
  3468. }
  3469. },
  3470. "contract.InvalidReq": {
  3471. "title": "InvalidReq",
  3472. "type": "object",
  3473. "properties": {
  3474. "ContractId": {
  3475. "description": "合同id",
  3476. "type": "integer",
  3477. "format": "int64"
  3478. }
  3479. }
  3480. },
  3481. "contract.OpButton": {
  3482. "title": "OpButton",
  3483. "type": "object",
  3484. "properties": {
  3485. "Approval": {
  3486. "description": "是否有审批权限",
  3487. "type": "boolean"
  3488. },
  3489. "Invalid": {
  3490. "description": "是否有作废合同权限",
  3491. "type": "boolean"
  3492. },
  3493. "UploadFile": {
  3494. "description": "是否有上传签回文件权限",
  3495. "type": "boolean"
  3496. }
  3497. }
  3498. },
  3499. "contract.RejectReq": {
  3500. "title": "RejectReq",
  3501. "type": "object",
  3502. "properties": {
  3503. "ContractId": {
  3504. "description": "合同id",
  3505. "type": "integer",
  3506. "format": "int64"
  3507. },
  3508. "Remark": {
  3509. "description": "备注字段",
  3510. "type": "string"
  3511. }
  3512. }
  3513. },
  3514. "contract.UploadCheckBackFileReq": {
  3515. "title": "UploadCheckBackFileReq",
  3516. "type": "object",
  3517. "properties": {
  3518. "ContractId": {
  3519. "description": "合同id",
  3520. "type": "integer",
  3521. "format": "int64"
  3522. },
  3523. "FileUrl": {
  3524. "description": "签回合同url",
  3525. "type": "string"
  3526. }
  3527. }
  3528. },
  3529. "contract_approval.ContractApprovalList": {
  3530. "title": "ContractApprovalList",
  3531. "type": "object",
  3532. "properties": {
  3533. "ApplyContent": {
  3534. "description": "待审内容",
  3535. "type": "string"
  3536. },
  3537. "ApproveRemark": {
  3538. "description": "审核备注",
  3539. "type": "string"
  3540. },
  3541. "ApproveTime": {
  3542. "description": "审批时间",
  3543. "type": "string",
  3544. "format": "datetime"
  3545. },
  3546. "ApproveTimeStr": {
  3547. "description": "审批时间(字符串类型)",
  3548. "type": "string"
  3549. },
  3550. "CheckBackFileTime": {
  3551. "description": "合同签回时间",
  3552. "type": "string",
  3553. "format": "datetime"
  3554. },
  3555. "CheckBackFileTimeStr": {
  3556. "description": "合同签回时间(字符串类型)",
  3557. "type": "string"
  3558. },
  3559. "CompanyName": {
  3560. "description": "客户名称",
  3561. "type": "string"
  3562. },
  3563. "ContractApprovalId": {
  3564. "description": "审批单id",
  3565. "type": "integer",
  3566. "format": "int64"
  3567. },
  3568. "ContractApprovalRecordId": {
  3569. "description": "审批流id",
  3570. "type": "integer",
  3571. "format": "int64"
  3572. },
  3573. "ContractBusinessType": {
  3574. "description": "合同业务类型,枚举值:'业务合同','代付合同'",
  3575. "type": "string"
  3576. },
  3577. "ContractCode": {
  3578. "description": "合同编号",
  3579. "type": "string"
  3580. },
  3581. "ContractId": {
  3582. "description": "合同id",
  3583. "type": "integer",
  3584. "format": "int64"
  3585. },
  3586. "ContractType": {
  3587. "description": "合同类型",
  3588. "type": "string"
  3589. },
  3590. "CreateTime": {
  3591. "description": "发起审批的时间",
  3592. "type": "string",
  3593. "format": "datetime"
  3594. },
  3595. "CreateTimeStr": {
  3596. "description": "发起审批的时间(字符串类型)",
  3597. "type": "string"
  3598. },
  3599. "CreditCode": {
  3600. "description": "社会统一信用代码,长度64位",
  3601. "type": "string"
  3602. },
  3603. "EndDate": {
  3604. "description": "合同结束日期",
  3605. "type": "string",
  3606. "format": "datetime"
  3607. },
  3608. "EndDateStr": {
  3609. "description": "合同结束日期(字符串类型)",
  3610. "type": "string"
  3611. },
  3612. "FileUrl": {
  3613. "description": "合同下载地址",
  3614. "type": "string"
  3615. },
  3616. "InvalidTime": {
  3617. "description": "作废时间",
  3618. "type": "string",
  3619. "format": "datetime"
  3620. },
  3621. "InvalidTimeStr": {
  3622. "description": "作废时间(字符串类型)",
  3623. "type": "string"
  3624. },
  3625. "ModifyTime": {
  3626. "description": "最后一次修改的时间",
  3627. "type": "string",
  3628. "format": "datetime"
  3629. },
  3630. "ModifyTimeStr": {
  3631. "description": "最后一次修改的时间(字符串类型)",
  3632. "type": "string"
  3633. },
  3634. "Price": {
  3635. "description": "合同金额",
  3636. "type": "number",
  3637. "format": "double"
  3638. },
  3639. "ProductId": {
  3640. "description": "产品id,1:ficc;2:权益",
  3641. "type": "integer",
  3642. "format": "int64"
  3643. },
  3644. "RescindTime": {
  3645. "description": "解约时间",
  3646. "type": "string",
  3647. "format": "datetime"
  3648. },
  3649. "RescindTimeStr": {
  3650. "description": "解约时间(字符串类型)",
  3651. "type": "string"
  3652. },
  3653. "SellerId": {
  3654. "description": "销售id",
  3655. "type": "integer",
  3656. "format": "int64"
  3657. },
  3658. "SellerName": {
  3659. "description": "销售名称",
  3660. "type": "string"
  3661. },
  3662. "StartDate": {
  3663. "description": "合同开始日期",
  3664. "type": "string",
  3665. "format": "datetime"
  3666. },
  3667. "StartDateStr": {
  3668. "description": "合同开始日期(字符串类型)",
  3669. "type": "string"
  3670. },
  3671. "Status": {
  3672. "description": "合同状态,枚举值:待审批','已审批','已驳回','已撤回',默认待审批",
  3673. "type": "string"
  3674. }
  3675. }
  3676. },
  3677. "contract_approval.SealApprovalList": {
  3678. "title": "SealApprovalList",
  3679. "type": "object",
  3680. "properties": {
  3681. "ApplyContent": {
  3682. "description": "待审内容",
  3683. "type": "string"
  3684. },
  3685. "ApplyUserId": {
  3686. "description": "待审内容",
  3687. "type": "integer",
  3688. "format": "int64"
  3689. },
  3690. "ApplyUserName": {
  3691. "description": "待审内容",
  3692. "type": "string"
  3693. },
  3694. "ApproveRemark": {
  3695. "description": "审核备注",
  3696. "type": "string"
  3697. },
  3698. "ApproveTime": {
  3699. "description": "审批时间",
  3700. "type": "string",
  3701. "format": "datetime"
  3702. },
  3703. "ApproveTimeStr": {
  3704. "description": "审批时间(字符串类型)",
  3705. "type": "string"
  3706. },
  3707. "CheckBackFileTime": {
  3708. "description": "签回用印附件时间",
  3709. "type": "string",
  3710. "format": "datetime"
  3711. },
  3712. "CompanyName": {
  3713. "description": "客户名称",
  3714. "type": "string"
  3715. },
  3716. "ContractApprovalId": {
  3717. "description": "审批单id",
  3718. "type": "integer",
  3719. "format": "int64"
  3720. },
  3721. "ContractApprovalRecordId": {
  3722. "description": "审批流id",
  3723. "type": "integer",
  3724. "format": "int64"
  3725. },
  3726. "ContractCode": {
  3727. "description": "合同编号",
  3728. "type": "string"
  3729. },
  3730. "ContractId": {
  3731. "description": "合同id",
  3732. "type": "integer",
  3733. "format": "int64"
  3734. },
  3735. "CreateTime": {
  3736. "description": "发起审批的时间",
  3737. "type": "string",
  3738. "format": "datetime"
  3739. },
  3740. "CreateTimeStr": {
  3741. "description": "发起审批的时间(字符串类型)",
  3742. "type": "string"
  3743. },
  3744. "CurrNodeId": {
  3745. "description": "当前审批节点id",
  3746. "type": "integer",
  3747. "format": "int64"
  3748. },
  3749. "EndDateStr": {
  3750. "description": "合同结束日期(字符串类型)",
  3751. "type": "string"
  3752. },
  3753. "FileUrl": {
  3754. "description": "合同下载地址",
  3755. "type": "string"
  3756. },
  3757. "InvalidTime": {
  3758. "description": "作废时间",
  3759. "type": "string",
  3760. "format": "datetime"
  3761. },
  3762. "InvalidTimeStr": {
  3763. "description": "作废时间(字符串类型)",
  3764. "type": "string"
  3765. },
  3766. "ModifyTime": {
  3767. "description": "最后一次修改的时间",
  3768. "type": "string",
  3769. "format": "datetime"
  3770. },
  3771. "ModifyTimeStr": {
  3772. "description": "最后一次修改的时间(字符串类型)",
  3773. "type": "string"
  3774. },
  3775. "SealType": {
  3776. "description": "用印类型",
  3777. "type": "string"
  3778. },
  3779. "StartDateStr": {
  3780. "description": "合同开始日期(字符串类型)",
  3781. "type": "string"
  3782. },
  3783. "StartNodeId": {
  3784. "description": "开始审批节点id",
  3785. "type": "integer",
  3786. "format": "int64"
  3787. },
  3788. "Status": {
  3789. "description": "合同状态,枚举值:待审批','已审批','已驳回','已撤回','已签回',默认待审批",
  3790. "type": "string"
  3791. },
  3792. "UserId": {
  3793. "description": "申请人id",
  3794. "type": "integer",
  3795. "format": "int64"
  3796. },
  3797. "UserName": {
  3798. "description": "申请人名称",
  3799. "type": "string"
  3800. }
  3801. }
  3802. },
  3803. "contract_service_detail.ContractServiceDetail": {
  3804. "title": "ContractServiceDetail",
  3805. "type": "object",
  3806. "properties": {
  3807. "Col1": {
  3808. "description": "第1列数据",
  3809. "type": "string"
  3810. },
  3811. "Col2": {
  3812. "description": "第2列数据",
  3813. "type": "string"
  3814. },
  3815. "Col3": {
  3816. "description": "第3列数据",
  3817. "type": "string"
  3818. },
  3819. "Col4": {
  3820. "description": "第4列数据",
  3821. "type": "string"
  3822. },
  3823. "Col5": {
  3824. "description": "第5列数据",
  3825. "type": "string"
  3826. },
  3827. "Col6": {
  3828. "description": "第6列数据",
  3829. "type": "string"
  3830. },
  3831. "Col7": {
  3832. "description": "第7列数据",
  3833. "type": "string"
  3834. },
  3835. "ContractId": {
  3836. "description": "合同id",
  3837. "type": "integer",
  3838. "format": "int64"
  3839. },
  3840. "ContractServiceId": {
  3841. "description": "合同服务id",
  3842. "type": "integer",
  3843. "format": "int64"
  3844. },
  3845. "CreateTime": {
  3846. "description": "数据添加时间",
  3847. "type": "string",
  3848. "format": "datetime"
  3849. },
  3850. "Id": {
  3851. "type": "integer",
  3852. "format": "int64"
  3853. },
  3854. "ServiceTemplateId": {
  3855. "description": "服务模板id",
  3856. "type": "integer",
  3857. "format": "int64"
  3858. }
  3859. }
  3860. },
  3861. "message.CompanyApprovalMessageListResp": {
  3862. "title": "CompanyApprovalMessageListResp",
  3863. "type": "object",
  3864. "properties": {
  3865. "List": {
  3866. "type": "array",
  3867. "items": {
  3868. "$ref": "#/definitions/company_approval_message.CompanyApprovalMessageList"
  3869. }
  3870. },
  3871. "Total": {
  3872. "description": "总数据条数",
  3873. "type": "integer",
  3874. "format": "int64"
  3875. }
  3876. }
  3877. },
  3878. "message.SummaryMessage": {
  3879. "title": "SummaryMessage",
  3880. "type": "object",
  3881. "properties": {
  3882. "Message": {
  3883. "description": "消息",
  3884. "type": "string"
  3885. },
  3886. "SourceType": {
  3887. "description": "消息来源类型,1:客户,2:合同,3:用印",
  3888. "type": "integer",
  3889. "format": "int64"
  3890. },
  3891. "Total": {
  3892. "description": "未读数据数",
  3893. "type": "integer",
  3894. "format": "int64"
  3895. }
  3896. }
  3897. },
  3898. "models.ImageResponse": {
  3899. "title": "ImageResponse",
  3900. "type": "object"
  3901. },
  3902. "paging.PagingItem": {
  3903. "title": "PagingItem",
  3904. "type": "object"
  3905. },
  3906. "roadshow.CalendarDetailResp": {
  3907. "title": "CalendarDetailResp",
  3908. "type": "object",
  3909. "properties": {
  3910. "CompanyDetail": {
  3911. "$ref": "#/definitions/roadshow.CompanyDetailView"
  3912. },
  3913. "RsCalendarItem": {
  3914. "$ref": "#/definitions/roadshow.RsCalendar"
  3915. },
  3916. "RsCalendarResearcherItem": {
  3917. "$ref": "#/definitions/roadshow.RsCalendarResearcher"
  3918. }
  3919. }
  3920. },
  3921. "roadshow.CompanyDetailView": {
  3922. "title": "CompanyDetailView",
  3923. "type": "object",
  3924. "properties": {
  3925. "CompanyId": {
  3926. "type": "integer",
  3927. "format": "int64"
  3928. },
  3929. "CompanyName": {
  3930. "description": "客户名称",
  3931. "type": "string"
  3932. },
  3933. "IndustryId": {
  3934. "description": "行业id",
  3935. "type": "integer",
  3936. "format": "int64"
  3937. },
  3938. "IndustryName": {
  3939. "description": "行业名称",
  3940. "type": "string"
  3941. },
  3942. "PermissionName": {
  3943. "description": "开通品种",
  3944. "type": "string"
  3945. },
  3946. "ReportReadTotal": {
  3947. "description": "累计阅读次数",
  3948. "type": "integer",
  3949. "format": "int64"
  3950. },
  3951. "Status": {
  3952. "description": "客户状态",
  3953. "type": "string"
  3954. }
  3955. }
  3956. },
  3957. "roadshow.RsCalendar": {
  3958. "title": "RsCalendar",
  3959. "type": "object",
  3960. "properties": {
  3961. "ActivityCategory": {
  3962. "description": "活动类别",
  3963. "type": "string"
  3964. },
  3965. "ActivityType": {
  3966. "description": "活动类型",
  3967. "type": "string"
  3968. },
  3969. "City": {
  3970. "description": "市",
  3971. "type": "string"
  3972. },
  3973. "CityCode": {
  3974. "description": "市编码",
  3975. "type": "string"
  3976. },
  3977. "CompanyId": {
  3978. "description": "客户id",
  3979. "type": "integer",
  3980. "format": "int64"
  3981. },
  3982. "CompanyName": {
  3983. "description": "客户名称",
  3984. "type": "string"
  3985. },
  3986. "CooperationName": {
  3987. "description": "合作方名称",
  3988. "type": "string"
  3989. },
  3990. "CreateTime": {
  3991. "type": "string",
  3992. "format": "datetime"
  3993. },
  3994. "IsSynced": {
  3995. "description": "是否与上海同步 0:未同步 1:已同步",
  3996. "type": "integer",
  3997. "format": "int64"
  3998. },
  3999. "ModifyTime": {
  4000. "type": "string",
  4001. "format": "datetime"
  4002. },
  4003. "Province": {
  4004. "description": "省",
  4005. "type": "string"
  4006. },
  4007. "ProvinceCode": {
  4008. "description": "省编码",
  4009. "type": "string"
  4010. },
  4011. "RoadshowPlatform": {
  4012. "description": "路演平台",
  4013. "type": "string"
  4014. },
  4015. "RoadshowType": {
  4016. "description": "路演形式",
  4017. "type": "string"
  4018. },
  4019. "RsCalendarId": {
  4020. "type": "integer",
  4021. "format": "int64"
  4022. },
  4023. "Source": {
  4024. "description": "来源,0:自系统,1:上海方的",
  4025. "type": "integer",
  4026. "format": "int32"
  4027. },
  4028. "SysUserId": {
  4029. "description": "创建人id",
  4030. "type": "integer",
  4031. "format": "int64"
  4032. },
  4033. "SysUserRealName": {
  4034. "description": "创建人名称",
  4035. "type": "string"
  4036. },
  4037. "Theme": {
  4038. "description": "会议主题",
  4039. "type": "string"
  4040. },
  4041. "Title": {
  4042. "description": "展示在日历的标题",
  4043. "type": "string"
  4044. }
  4045. }
  4046. },
  4047. "roadshow.RsCalendarResearcher": {
  4048. "title": "RsCalendarResearcher",
  4049. "type": "object",
  4050. "properties": {
  4051. "ApproveTime": {
  4052. "description": "接受时间",
  4053. "type": "string",
  4054. "format": "datetime"
  4055. },
  4056. "CreateTime": {
  4057. "type": "string",
  4058. "format": "datetime"
  4059. },
  4060. "DeleteReason": {
  4061. "description": "删除理由",
  4062. "type": "string"
  4063. },
  4064. "DeleteTime": {
  4065. "description": "删除时间",
  4066. "type": "string",
  4067. "format": "datetime"
  4068. },
  4069. "EndDate": {
  4070. "description": "结束日期",
  4071. "type": "string"
  4072. },
  4073. "EndTime": {
  4074. "description": "结束时间",
  4075. "type": "string"
  4076. },
  4077. "EndWeek": {
  4078. "description": "结束日期对应周",
  4079. "type": "string"
  4080. },
  4081. "IsSynced": {
  4082. "description": "是否与上海同步 0:未同步 1:已同步",
  4083. "type": "integer",
  4084. "format": "int64"
  4085. },
  4086. "ModifyTime": {
  4087. "type": "string",
  4088. "format": "datetime"
  4089. },
  4090. "RefuseReason": {
  4091. "description": "拒绝理由",
  4092. "type": "string"
  4093. },
  4094. "RefuseTime": {
  4095. "description": "拒绝时间",
  4096. "type": "string",
  4097. "format": "datetime"
  4098. },
  4099. "ResearcherId": {
  4100. "description": "研究员id",
  4101. "type": "integer",
  4102. "format": "int64"
  4103. },
  4104. "ResearcherName": {
  4105. "description": "研究员名称",
  4106. "type": "string"
  4107. },
  4108. "ResearcherSort": {
  4109. "description": "研究员新增排序",
  4110. "type": "integer",
  4111. "format": "int64"
  4112. },
  4113. "RsCalendarId": {
  4114. "description": "日历活动id",
  4115. "type": "integer",
  4116. "format": "int64"
  4117. },
  4118. "RsCalendarResearcherId": {
  4119. "type": "integer",
  4120. "format": "int64"
  4121. },
  4122. "StartDate": {
  4123. "description": "开始日期",
  4124. "type": "string"
  4125. },
  4126. "StartTime": {
  4127. "description": "开始时间",
  4128. "type": "string"
  4129. },
  4130. "StartWeek": {
  4131. "description": "开始日期对应周",
  4132. "type": "string"
  4133. },
  4134. "Status": {
  4135. "description": "状态:1:待接受,2:已接受,3:已拒绝,4:已删除,5:已撤回,6:已结束",
  4136. "type": "integer",
  4137. "format": "int64"
  4138. }
  4139. }
  4140. },
  4141. "rs.AcceptReq": {
  4142. "title": "AcceptReq",
  4143. "type": "object"
  4144. },
  4145. "rs.AddActivityReq": {
  4146. "title": "AddActivityReq",
  4147. "type": "object"
  4148. },
  4149. "rs.AddMattersReq": {
  4150. "title": "AddMattersReq",
  4151. "type": "object"
  4152. },
  4153. "rs.CalendarDetailResp": {
  4154. "title": "CalendarDetailResp",
  4155. "type": "object"
  4156. },
  4157. "rs.CalendarListResp": {
  4158. "title": "CalendarListResp",
  4159. "type": "object"
  4160. },
  4161. "rs.CompanyDetailView": {
  4162. "title": "CompanyDetailView",
  4163. "type": "object"
  4164. },
  4165. "rs.DeleteMattersReq": {
  4166. "title": "DeleteMattersReq",
  4167. "type": "object"
  4168. },
  4169. "rs.DeleteReq": {
  4170. "title": "DeleteReq",
  4171. "type": "object"
  4172. },
  4173. "rs.EditActivityReq": {
  4174. "title": "EditActivityReq",
  4175. "type": "object"
  4176. },
  4177. "rs.MattersListResp": {
  4178. "title": "MattersListResp",
  4179. "type": "object"
  4180. },
  4181. "rs.RefuseReq": {
  4182. "title": "RefuseReq",
  4183. "type": "object"
  4184. },
  4185. "rs.ResearcherGroup": {
  4186. "title": "ResearcherGroup",
  4187. "type": "object"
  4188. },
  4189. "rs.UpdateMattersReq": {
  4190. "title": "UpdateMattersReq",
  4191. "type": "object"
  4192. },
  4193. "seal.AddReq": {
  4194. "title": "AddReq",
  4195. "type": "object",
  4196. "properties": {
  4197. "CompanyName": {
  4198. "description": "客户名称,甲方名称,长度32位",
  4199. "type": "string"
  4200. },
  4201. "ContractId": {
  4202. "description": "系统合同id",
  4203. "type": "integer",
  4204. "format": "int64"
  4205. },
  4206. "CreditCode": {
  4207. "description": "社会统一信用代码,长度64位",
  4208. "type": "string"
  4209. },
  4210. "FileNum": {
  4211. "description": "文件份数",
  4212. "type": "integer",
  4213. "format": "int64"
  4214. },
  4215. "FileUrl": {
  4216. "description": "文件附件地址",
  4217. "type": "string"
  4218. },
  4219. "Remark": {
  4220. "description": "备注,长度255位",
  4221. "type": "string"
  4222. },
  4223. "SealType": {
  4224. "description": "加盖印章类型,枚举值:'合同章', '公章', '法人章';默认:合同章",
  4225. "type": "string"
  4226. },
  4227. "ServiceType": {
  4228. "description": "业务类型,枚举值:'新签合同','续约合同','补充协议';默认:新签合同",
  4229. "type": "string"
  4230. },
  4231. "Use": {
  4232. "description": "用印用途,枚举值:'销售合同', '渠道合同', '付款通知函', '招投标', '战略合作协议';默认:销售合同",
  4233. "type": "string"
  4234. },
  4235. "UseCompanyName": {
  4236. "description": "实际适用方客户名称,长度32位",
  4237. "type": "string"
  4238. }
  4239. }
  4240. },
  4241. "seal.AddSealResp": {
  4242. "title": "AddSealResp",
  4243. "type": "object",
  4244. "properties": {
  4245. "SealId": {
  4246. "description": "用印id",
  4247. "type": "integer",
  4248. "format": "int64"
  4249. }
  4250. }
  4251. },
  4252. "seal.ApprovedReq": {
  4253. "title": "ApprovedReq",
  4254. "type": "object",
  4255. "properties": {
  4256. "Remark": {
  4257. "description": "驳回理由",
  4258. "type": "string"
  4259. },
  4260. "SealId": {
  4261. "description": "用印id",
  4262. "type": "integer",
  4263. "format": "int64"
  4264. }
  4265. }
  4266. },
  4267. "seal.CheckEditReq": {
  4268. "title": "CheckEditReq",
  4269. "type": "object",
  4270. "properties": {
  4271. "FileNum": {
  4272. "description": "文件份数",
  4273. "type": "integer",
  4274. "format": "int64"
  4275. },
  4276. "FileUrl": {
  4277. "description": "文件附件地址",
  4278. "type": "string"
  4279. },
  4280. "Remark": {
  4281. "description": "备注,长度255位",
  4282. "type": "string"
  4283. },
  4284. "SealId": {
  4285. "description": "用印单id",
  4286. "type": "integer",
  4287. "format": "int64"
  4288. },
  4289. "SealType": {
  4290. "description": "加盖印章类型,枚举值:'合同章', '公章', '法人章';默认:合同章",
  4291. "type": "string"
  4292. },
  4293. "Use": {
  4294. "description": "用印用途,枚举值:'销售合同', '渠道合同', '付款通知函', '招投标', '战略合作协议';默认:销售合同",
  4295. "type": "string"
  4296. }
  4297. }
  4298. },
  4299. "seal.EditReq": {
  4300. "title": "EditReq",
  4301. "type": "object",
  4302. "properties": {
  4303. "CompanyName": {
  4304. "description": "客户名称,甲方名称,长度32位",
  4305. "type": "string"
  4306. },
  4307. "ContractId": {
  4308. "description": "系统合同id",
  4309. "type": "integer",
  4310. "format": "int64"
  4311. },
  4312. "CreditCode": {
  4313. "description": "社会统一信用代码,长度64位",
  4314. "type": "string"
  4315. },
  4316. "FileNum": {
  4317. "description": "文件份数",
  4318. "type": "integer",
  4319. "format": "int64"
  4320. },
  4321. "FileUrl": {
  4322. "description": "文件附件地址",
  4323. "type": "string"
  4324. },
  4325. "Remark": {
  4326. "description": "备注,长度255位",
  4327. "type": "string"
  4328. },
  4329. "SealId": {
  4330. "description": "用印id",
  4331. "type": "integer",
  4332. "format": "int64"
  4333. },
  4334. "SealType": {
  4335. "description": "加盖印章类型,枚举值:'合同章', '公章', '法人章';默认:合同章",
  4336. "type": "string"
  4337. },
  4338. "ServiceType": {
  4339. "description": "业务类型,枚举值:'新签合同','续约合同','补充协议';默认:新签合同",
  4340. "type": "string"
  4341. },
  4342. "Use": {
  4343. "description": "用印用途,枚举值:'销售合同', '渠道合同', '付款通知函', '招投标', '战略合作协议';默认:销售合同",
  4344. "type": "string"
  4345. },
  4346. "UseCompanyName": {
  4347. "description": "实际适用方客户名称,长度32位",
  4348. "type": "string"
  4349. }
  4350. }
  4351. },
  4352. "seal.InvalidReq": {
  4353. "title": "InvalidReq",
  4354. "type": "object",
  4355. "properties": {
  4356. "IsInvalidContract": {
  4357. "description": "是否同步作废合同,默认:false",
  4358. "type": "boolean"
  4359. },
  4360. "SealId": {
  4361. "description": "用印id",
  4362. "type": "integer",
  4363. "format": "int64"
  4364. }
  4365. }
  4366. },
  4367. "seal.OpButton": {
  4368. "title": "OpButton",
  4369. "type": "object",
  4370. "properties": {
  4371. "Approval": {
  4372. "description": "是否有审批权限",
  4373. "type": "boolean"
  4374. },
  4375. "Cancel": {
  4376. "description": "是否有撤回用印权限",
  4377. "type": "boolean"
  4378. },
  4379. "CheckEdit": {
  4380. "description": "审核状态下是否有编辑用印权限",
  4381. "type": "boolean"
  4382. },
  4383. "Edit": {
  4384. "description": "是否有编辑用印权限",
  4385. "type": "boolean"
  4386. },
  4387. "Invalid": {
  4388. "description": "是否有作废用印权限",
  4389. "type": "boolean"
  4390. },
  4391. "UploadFile": {
  4392. "description": "是否有上传签回文件权限",
  4393. "type": "boolean"
  4394. }
  4395. }
  4396. },
  4397. "seal.RejectReq": {
  4398. "title": "RejectReq",
  4399. "type": "object",
  4400. "properties": {
  4401. "Remark": {
  4402. "description": "备注字段",
  4403. "type": "string"
  4404. },
  4405. "SealId": {
  4406. "description": "用印id",
  4407. "type": "integer",
  4408. "format": "int64"
  4409. }
  4410. }
  4411. },
  4412. "seal.Seal": {
  4413. "title": "Seal",
  4414. "type": "object",
  4415. "properties": {
  4416. "ApprovalRemark": {
  4417. "description": "审核备注",
  4418. "type": "string"
  4419. },
  4420. "ApproveTime": {
  4421. "description": "审批时间",
  4422. "type": "string",
  4423. "format": "datetime"
  4424. },
  4425. "CheckBackFileTime": {
  4426. "description": "签回用印附件时间",
  4427. "type": "string",
  4428. "format": "datetime"
  4429. },
  4430. "CheckBackFileUrl": {
  4431. "description": "已签回的文件地址",
  4432. "type": "string"
  4433. },
  4434. "Code": {
  4435. "description": "用印编号,长度32位",
  4436. "type": "string"
  4437. },
  4438. "CompanyName": {
  4439. "description": "客户名称,甲方名称,长度32位",
  4440. "type": "string"
  4441. },
  4442. "ContractId": {
  4443. "description": "系统合同id",
  4444. "type": "integer",
  4445. "format": "int64"
  4446. },
  4447. "CreateTime": {
  4448. "description": "添加时间",
  4449. "type": "string",
  4450. "format": "datetime"
  4451. },
  4452. "CreditCode": {
  4453. "description": "社会统一信用代码,长度64位",
  4454. "type": "string"
  4455. },
  4456. "FileNum": {
  4457. "description": "文件附件份数",
  4458. "type": "integer",
  4459. "format": "int64"
  4460. },
  4461. "FileUrl": {
  4462. "description": "文件附件地址",
  4463. "type": "string"
  4464. },
  4465. "InvalidTime": {
  4466. "description": "作废时间",
  4467. "type": "string",
  4468. "format": "datetime"
  4469. },
  4470. "ModifyTime": {
  4471. "description": "最近一次修改时间",
  4472. "type": "string",
  4473. "format": "datetime"
  4474. },
  4475. "Remark": {
  4476. "description": "补充内容,长度255位",
  4477. "type": "string"
  4478. },
  4479. "SealId": {
  4480. "type": "integer",
  4481. "format": "int64"
  4482. },
  4483. "SealType": {
  4484. "description": "加盖印章类型,枚举值:'合同章', '公章', '法人章';默认:合同章",
  4485. "type": "string"
  4486. },
  4487. "ServiceType": {
  4488. "description": "业务类型,枚举值:'新签合同','续约合同','补充协议';默认:新签合同",
  4489. "type": "string"
  4490. },
  4491. "Status": {
  4492. "description": "合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废','已签回'",
  4493. "type": "string"
  4494. },
  4495. "Use": {
  4496. "description": "用印用途,枚举值:'销售合同', '渠道合同', '付款通知函', '招投标', '战略合作协议';默认:销售合同",
  4497. "type": "string"
  4498. },
  4499. "UseCompanyName": {
  4500. "description": "实际使用方客户名称,长度32位",
  4501. "type": "string"
  4502. },
  4503. "UserId": {
  4504. "description": "申请人id",
  4505. "type": "integer",
  4506. "format": "int64"
  4507. },
  4508. "UserName": {
  4509. "description": "申请人名称",
  4510. "type": "string"
  4511. }
  4512. }
  4513. },
  4514. "seal.SealApprovalListResp": {
  4515. "title": "SealApprovalListResp",
  4516. "type": "object",
  4517. "properties": {
  4518. "List": {
  4519. "description": "列表数据",
  4520. "type": "array",
  4521. "items": {
  4522. "$ref": "#/definitions/contract_approval.SealApprovalList"
  4523. }
  4524. },
  4525. "Paging": {
  4526. "$ref": "#/definitions/paging.PagingItem"
  4527. }
  4528. }
  4529. },
  4530. "seal.SealDetailResp": {
  4531. "title": "SealDetailResp",
  4532. "type": "object",
  4533. "properties": {
  4534. "FlowNodeList": {
  4535. "description": "审批流",
  4536. "type": "array",
  4537. "items": {
  4538. "$ref": "#/definitions/722.\u003cnil\u003e.0xc0007acf18"
  4539. }
  4540. },
  4541. "OpButton": {
  4542. "$ref": "#/definitions/seal.OpButton",
  4543. "description": "操作权限"
  4544. },
  4545. "SealDetail": {
  4546. "$ref": "#/definitions/seal.Seal",
  4547. "description": "审批单详情"
  4548. }
  4549. }
  4550. },
  4551. "seal.UploadCheckBackFileReq": {
  4552. "title": "UploadCheckBackFileReq",
  4553. "type": "object",
  4554. "properties": {
  4555. "FileUrl": {
  4556. "description": "签回用印url",
  4557. "type": "string"
  4558. },
  4559. "SealId": {
  4560. "description": "用印id",
  4561. "type": "integer",
  4562. "format": "int64"
  4563. }
  4564. }
  4565. },
  4566. "wechat.WxLoginResp": {
  4567. "title": "WxLoginResp",
  4568. "type": "object",
  4569. "properties": {
  4570. "AdminId": {
  4571. "type": "integer",
  4572. "format": "int64"
  4573. },
  4574. "Authorization": {
  4575. "type": "string"
  4576. },
  4577. "Code": {
  4578. "type": "integer",
  4579. "format": "int64"
  4580. },
  4581. "Expires": {
  4582. "type": "string",
  4583. "format": "datetime"
  4584. },
  4585. "Headimgurl": {
  4586. "description": "用户头像",
  4587. "type": "string"
  4588. },
  4589. "RealName": {
  4590. "description": "用户名称",
  4591. "type": "string"
  4592. },
  4593. "UserInfo": {
  4594. "$ref": "#/definitions/admin.LoginResp",
  4595. "description": "用户信息"
  4596. }
  4597. }
  4598. }
  4599. },
  4600. "tags": [
  4601. {
  4602. "name": "approval",
  4603. "description": "客户审批列表\n"
  4604. },
  4605. {
  4606. "name": "message",
  4607. "description": "消息模块\n"
  4608. },
  4609. {
  4610. "name": "company_contract",
  4611. "description": "客户合同模块\n"
  4612. },
  4613. {
  4614. "name": "contract",
  4615. "description": "合同模块\n"
  4616. },
  4617. {
  4618. "name": "contract_approval",
  4619. "description": "合同审批模块\n"
  4620. },
  4621. {
  4622. "name": "seal",
  4623. "description": "SealCommon\n用印模块\n"
  4624. },
  4625. {
  4626. "name": "seal_approval",
  4627. "description": "SealApprovalCommon 用印审批模块\n"
  4628. },
  4629. {
  4630. "name": "resource",
  4631. "description": "资源管理-图片上传,合同上传等\n"
  4632. },
  4633. {
  4634. "name": "roadshow",
  4635. "description": "日历\n"
  4636. }
  4637. ]
  4638. }