swagger.yml 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297
  1. swagger: "2.0"
  2. info:
  3. title: 弘则手机端管理后台接口
  4. description: 这是弘则手机端管理后台接口api文档,统一出、入参;出参格式:{"code":200,"data":{},"msg":"操作成功","errMsg":"开发人员查看的错误信息"},code是业务响应码,200
  5. 代表正常返回;400 代表业务处理失败,前端同学需要做额外逻辑处理;401 代表token异常,用户需要重新静默授权,获取最新的token;403代表用户需要进行绑定操作,需要跳转到输入账号密码绑定页面。同时如果出现其他返回值(没有在约定范围内),那么及时联系后端同事;msg是用来提示前端同学,一般只在code为
  6. 400 的情况下才会展示给用户去看;data是业务返回数据,给前端做逻辑处理。
  7. version: 1.0.0
  8. termsOfService: http://beego.me/
  9. contact:
  10. email: astaxie@gmail.com
  11. license:
  12. name: Apache 2.0
  13. url: http://www.apache.org/licenses/LICENSE-2.0.html
  14. basePath: /h5adminapi
  15. paths:
  16. /admin/login:
  17. post:
  18. tags:
  19. - admin
  20. description: 用户账号、密码登录接口
  21. operationId: AdminCommon.用户账号、密码登录接口
  22. parameters:
  23. - in: body
  24. name: request
  25. description: type json string
  26. required: true
  27. schema:
  28. $ref: '#/definitions/admin.LoginReq'
  29. responses:
  30. "200":
  31. description: ""
  32. schema:
  33. $ref: '#/definitions/admin.LoginResp'
  34. /admin/logout:
  35. post:
  36. tags:
  37. - admin
  38. description: 用户退出登录接口
  39. operationId: AdminCommon.用户退出登录接口
  40. responses:
  41. Ret=200:
  42. description: 退出成功
  43. /approval/approve:
  44. post:
  45. tags:
  46. - approval
  47. description: 审批接口
  48. operationId: ApprovalCommon.审批
  49. parameters:
  50. - in: body
  51. name: request
  52. description: type json string
  53. required: true
  54. schema:
  55. $ref: '#/definitions/approval.CompanyApplyApproveReq'
  56. responses:
  57. Ret=200:
  58. description: 审批成功
  59. /approval/approve_old:
  60. post:
  61. tags:
  62. - approval
  63. description: 审批接口
  64. operationId: ApprovalCommon.审批
  65. parameters:
  66. - in: body
  67. name: request
  68. description: type json string
  69. required: true
  70. schema:
  71. $ref: '#/definitions/approval.CompanyApplyApproveReq'
  72. responses:
  73. Ret=200:
  74. description: 审批成功
  75. /approval/company_list:
  76. get:
  77. tags:
  78. - approval
  79. description: 获取合同详情接口
  80. operationId: ApprovalCommon.根据客户名称获取已存在合同系统中客户名称列表
  81. parameters:
  82. - in: query
  83. name: Keyword
  84. description: 搜索关键字:客户名称、组织社会信用码
  85. required: true
  86. type: string
  87. responses:
  88. "200":
  89. description: ""
  90. schema:
  91. type: array
  92. items:
  93. type: string
  94. /approval/detail:
  95. get:
  96. tags:
  97. - approval
  98. description: 获取审批单详情接口
  99. operationId: ApprovalCommon.获取审批单详情接口
  100. parameters:
  101. - in: query
  102. name: ApprovalId
  103. description: 审批单id
  104. required: true
  105. type: integer
  106. format: int64
  107. responses:
  108. "200":
  109. description: ""
  110. schema:
  111. $ref: '#/definitions/approval.CompanyApprovalDetailResp'
  112. /approval/detail_old:
  113. get:
  114. tags:
  115. - approval
  116. description: 获取审批单详情接口
  117. operationId: ApprovalCommon.获取审批单详情接口
  118. parameters:
  119. - in: query
  120. name: ApprovalId
  121. description: 审批单id
  122. required: true
  123. type: integer
  124. format: int64
  125. responses:
  126. "200":
  127. description: ""
  128. schema:
  129. $ref: '#/definitions/approval.CompanyApprovalDetailResp'
  130. /approval/flowDetail:
  131. get:
  132. tags:
  133. - approval
  134. description: 获取审批流详情接口
  135. operationId: ApprovalCommon.获取审批流详情接口
  136. parameters:
  137. - in: query
  138. name: FlowId
  139. description: 审批流程id;1:ficc客户审批;2:权益客户审批;3:ficc合同审批,4:权益合同审批,5:用印审批(合同章),6:用印审批(公章、法人章)
  140. required: true
  141. type: integer
  142. format: int64
  143. responses:
  144. "200":
  145. description: ""
  146. schema:
  147. $ref: '#/definitions/approval_flow.ApprovalFlowItem'
  148. /approval/getApprovalPermissionList:
  149. get:
  150. tags:
  151. - approval
  152. description: 获取审批单中的权限列表接口
  153. operationId: ApprovalCommon.获取审批单中的权限列表
  154. parameters:
  155. - in: query
  156. name: ApprovalId
  157. description: 审批单id
  158. required: true
  159. type: integer
  160. format: int64
  161. responses:
  162. "200":
  163. description: ""
  164. schema:
  165. $ref: '#/definitions/approval.CompanyPermissionResp'
  166. /approval/list:
  167. get:
  168. tags:
  169. - approval
  170. description: 获取审批列表接口
  171. operationId: ApprovalCommon.获取审批列表接口
  172. parameters:
  173. - in: query
  174. name: PageSize
  175. description: 每页数据条数
  176. required: true
  177. type: integer
  178. format: int64
  179. - in: query
  180. name: CurrentIndex
  181. description: 当前页页码,从1开始
  182. required: true
  183. type: integer
  184. format: int64
  185. - in: query
  186. name: Status
  187. description: 状态:'待审批','已审批','驳回','已撤回'
  188. required: true
  189. type: string
  190. - in: query
  191. name: KeyWord
  192. description: 搜索关键词
  193. required: true
  194. type: string
  195. - in: query
  196. name: Keyword
  197. description: 搜索关键词
  198. required: true
  199. type: string
  200. - in: query
  201. name: KeywordEq
  202. description: 搜索关键词(全等)
  203. required: true
  204. type: string
  205. responses:
  206. "200":
  207. description: ""
  208. schema:
  209. $ref: '#/definitions/approval.CompanyApprovalListResp'
  210. /approval/list_old:
  211. get:
  212. tags:
  213. - approval
  214. description: 获取审批列表接口
  215. operationId: ApprovalCommon.获取审批列表接口
  216. parameters:
  217. - in: query
  218. name: PageSize
  219. description: 每页数据条数
  220. required: true
  221. type: integer
  222. format: int64
  223. - in: query
  224. name: CurrentIndex
  225. description: 当前页页码,从1开始
  226. required: true
  227. type: integer
  228. format: int64
  229. - in: query
  230. name: Status
  231. description: 状态:'待审批','已审批','驳回','已撤回'
  232. required: true
  233. type: string
  234. - in: query
  235. name: KeyWord
  236. description: 搜索关键词
  237. required: true
  238. type: string
  239. - in: query
  240. name: Keyword
  241. description: 搜索关键词
  242. required: true
  243. type: string
  244. - in: query
  245. name: KeywordEq
  246. description: 搜索关键词(全等)
  247. required: true
  248. type: string
  249. responses:
  250. "200":
  251. description: ""
  252. schema:
  253. $ref: '#/definitions/approval.CompanyApprovalListResp'
  254. /company_contract/detail:
  255. get:
  256. tags:
  257. - company_contract
  258. description: 合同详情接口
  259. operationId: CompanyContractCommon.合同详情详情
  260. parameters:
  261. - in: query
  262. name: CompanyId
  263. description: 客户ID
  264. required: true
  265. type: integer
  266. format: int64
  267. - in: query
  268. name: CompanyContractId
  269. description: 合同id
  270. required: true
  271. type: integer
  272. format: int64
  273. responses:
  274. "200":
  275. description: ""
  276. schema:
  277. $ref: '#/definitions/company_contract.CompanyContractDetailResp'
  278. /contract/company_list:
  279. get:
  280. tags:
  281. - contract
  282. description: 获取合同详情接口
  283. operationId: ContractCommon.根据客户名称获取已存在合同系统中客户名称列表
  284. parameters:
  285. - in: query
  286. name: CompanyName
  287. description: 客户名称
  288. required: true
  289. type: string
  290. - in: query
  291. name: Keyword
  292. description: 关键字:客户名称、社会信用码
  293. required: true
  294. type: string
  295. - in: query
  296. name: Status
  297. description: 合同状态
  298. required: true
  299. type: string
  300. responses:
  301. "200":
  302. description: ""
  303. schema:
  304. type: array
  305. items:
  306. type: string
  307. /contract/companyListBySeal:
  308. get:
  309. tags:
  310. - contract
  311. description: 获取合同详情接口
  312. operationId: ContractCommon.根据客户名称获取已存在合同系统中客户名称列表
  313. parameters:
  314. - in: query
  315. name: CompanyName
  316. description: 客户名称
  317. required: true
  318. type: string
  319. - in: query
  320. name: Keyword
  321. description: 关键字:客户名称、社会信用码
  322. required: true
  323. type: string
  324. - in: query
  325. name: Status
  326. description: 合同状态
  327. required: true
  328. type: string
  329. responses:
  330. "200":
  331. description: ""
  332. schema:
  333. type: array
  334. items:
  335. type: string
  336. /contract/detail:
  337. get:
  338. tags:
  339. - contract
  340. description: 获取合同详情接口
  341. operationId: ContractCommon.获取合同详情
  342. parameters:
  343. - in: query
  344. name: ContractId
  345. description: 合同id
  346. required: true
  347. type: integer
  348. format: int64
  349. responses:
  350. "200":
  351. description: ""
  352. schema:
  353. $ref: '#/definitions/contract.ContractDetailResp'
  354. /contract/invalid:
  355. post:
  356. tags:
  357. - contract
  358. description: 作废合同接口
  359. operationId: ContractCommon.作废合同
  360. parameters:
  361. - in: body
  362. name: request
  363. description: type json string
  364. required: true
  365. schema:
  366. $ref: '#/definitions/contract.InvalidReq'
  367. responses:
  368. Ret=200:
  369. description: 作废成功
  370. /contract/list:
  371. get:
  372. tags:
  373. - contract
  374. description: 合同列表接口
  375. operationId: ContractCommon.合同列表
  376. parameters:
  377. - in: query
  378. name: ContractType
  379. description: 合同类型,枚举值:'新签合同','续约合同','补充协议'
  380. type: string
  381. - in: query
  382. name: Status
  383. description: 合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废'
  384. type: string
  385. - in: query
  386. name: ProductId
  387. description: 客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益
  388. type: integer
  389. format: int64
  390. - in: query
  391. name: ModifyStartTime
  392. description: 服务更新时间的选择开始时间,格式:2021-05-23 00:00:00
  393. type: string
  394. - in: query
  395. name: ModifyEndTime
  396. description: 服务更新时间的选择结束时间,格式:2021-05-26 23:59:59
  397. type: string
  398. - in: query
  399. name: SellerId
  400. description: 选择的销售id
  401. type: string
  402. - in: query
  403. name: Keyword
  404. description: 搜索关键字
  405. type: string
  406. - in: query
  407. name: KeywordEq
  408. description: 搜索关键字(全等)
  409. type: string
  410. responses:
  411. "200":
  412. description: ""
  413. schema:
  414. $ref: '#/definitions/contract.ContractListResp'
  415. /contract/listBySeal:
  416. get:
  417. tags:
  418. - contract
  419. description: 合同列表接口
  420. operationId: ContractCommon.合同列表
  421. parameters:
  422. - in: query
  423. name: ContractType
  424. description: 合同类型,枚举值:'新签合同','续约合同','补充协议'
  425. type: string
  426. - in: query
  427. name: Status
  428. description: 合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废'
  429. type: string
  430. - in: query
  431. name: ProductId
  432. description: 客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益
  433. type: integer
  434. format: int64
  435. - in: query
  436. name: ModifyStartTime
  437. description: 服务更新时间的选择开始时间,格式:2021-05-23 00:00:00
  438. type: string
  439. - in: query
  440. name: ModifyEndTime
  441. description: 服务更新时间的选择结束时间,格式:2021-05-26 23:59:59
  442. type: string
  443. - in: query
  444. name: SellerId
  445. description: 选择的销售id
  446. type: string
  447. - in: query
  448. name: Keyword
  449. description: 搜索关键字
  450. type: string
  451. - in: query
  452. name: KeywordEq
  453. description: 搜索关键字(全等)
  454. type: string
  455. responses:
  456. "200":
  457. description: ""
  458. schema:
  459. $ref: '#/definitions/contract.ContractListResp'
  460. /contract/listV2:
  461. get:
  462. tags:
  463. - contract
  464. description: 合同列表接口(包含待提交的)
  465. operationId: ContractCommon.合同列表(包含待提交的)
  466. parameters:
  467. - in: query
  468. name: ContractType
  469. description: 合同类型,枚举值:'新签合同','续约合同','补充协议'
  470. type: string
  471. - in: query
  472. name: Status
  473. description: 合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废'
  474. type: string
  475. - in: query
  476. name: ProductId
  477. description: 客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益
  478. type: integer
  479. format: int64
  480. - in: query
  481. name: ModifyStartTime
  482. description: 服务更新时间的选择开始时间,格式:2021-05-23 00:00:00
  483. type: string
  484. - in: query
  485. name: ModifyEndTime
  486. description: 服务更新时间的选择结束时间,格式:2021-05-26 23:59:59
  487. type: string
  488. - in: query
  489. name: SellerId
  490. description: 选择的销售id
  491. type: string
  492. - in: query
  493. name: Keyword
  494. description: 搜索关键字
  495. type: string
  496. - in: query
  497. name: KeywordEq
  498. description: 搜索关键字(全等)
  499. type: string
  500. responses:
  501. "200":
  502. description: ""
  503. schema:
  504. $ref: '#/definitions/contract.ContractListRespV2'
  505. /contract/upload_check_back_file:
  506. post:
  507. tags:
  508. - contract
  509. description: 上传签回附件接口
  510. operationId: ContractCommon.上传签回附件
  511. parameters:
  512. - in: body
  513. name: request
  514. description: type json string
  515. required: true
  516. schema:
  517. $ref: '#/definitions/contract.UploadCheckBackFileReq'
  518. responses:
  519. Ret=200:
  520. description: 上传成功
  521. /contract_approval/approved:
  522. post:
  523. tags:
  524. - contract_approval
  525. description: 处理审批单
  526. operationId: ContractApprovalCommon.处理审批单
  527. parameters:
  528. - in: body
  529. name: request
  530. description: type json string
  531. required: true
  532. schema:
  533. $ref: '#/definitions/contract.ApprovedReq'
  534. responses:
  535. Ret=200:
  536. description: 申请成功
  537. /contract_approval/detail:
  538. get:
  539. tags:
  540. - contract_approval
  541. description: 审批单详情接口
  542. operationId: ContractApprovalCommon.审批单详情
  543. parameters:
  544. - in: query
  545. name: ContractApprovalId
  546. description: 审批单id
  547. type: integer
  548. format: int64
  549. - in: query
  550. name: ContractApprovalRecordId
  551. description: 审批流程单id
  552. type: integer
  553. format: int64
  554. responses:
  555. "200":
  556. description: ""
  557. schema:
  558. $ref: '#/definitions/contract.ContractDetailResp'
  559. /contract_approval/list:
  560. get:
  561. tags:
  562. - contract_approval
  563. description: 审批单列表接口
  564. operationId: ContractApprovalCommon.审批单列表
  565. parameters:
  566. - in: query
  567. name: ContractType
  568. description: 合同类型,枚举值:'新签合同','续约合同','补充协议'
  569. type: string
  570. - in: query
  571. name: Status
  572. description: 合同状态,枚举值:'待审批','已审批','已驳回','已撤回'
  573. type: string
  574. - in: query
  575. name: ProductId
  576. description: 客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益
  577. type: integer
  578. format: int64
  579. - in: query
  580. name: SellerId
  581. description: 选择的销售id
  582. type: string
  583. - in: query
  584. name: Keyword
  585. description: 搜索关键字
  586. type: string
  587. - in: query
  588. name: KeywordEq
  589. description: 搜索关键字(全等)
  590. type: string
  591. - in: query
  592. name: ModifyStartTime
  593. description: 服务更新时间的选择开始时间,格式:2021-05-23 00:00:00
  594. type: string
  595. - in: query
  596. name: ModifyEndTime
  597. description: 服务更新时间的选择结束时间,格式:2021-05-26 23:59:59
  598. type: string
  599. responses:
  600. "200":
  601. description: ""
  602. schema:
  603. $ref: '#/definitions/contract.ContractApprovalListResp'
  604. /contract_approval/reject:
  605. post:
  606. tags:
  607. - contract_approval
  608. description: 驳回审批接口
  609. operationId: ContractApprovalCommon.驳回审批
  610. parameters:
  611. - in: body
  612. name: request
  613. description: type json string
  614. required: true
  615. schema:
  616. $ref: '#/definitions/contract.RejectReq'
  617. responses:
  618. Ret=200:
  619. description: 驳回成功
  620. /message/list:
  621. get:
  622. tags:
  623. - message
  624. description: 消息列表接口
  625. operationId: MessageCommon.消息列表
  626. parameters:
  627. - in: query
  628. name: SourceType
  629. description: 消息类型
  630. required: true
  631. type: integer
  632. format: int64
  633. - in: query
  634. name: CurrentIndex
  635. description: 当前页码
  636. required: true
  637. type: integer
  638. format: int64
  639. - in: query
  640. name: pageSize
  641. description: 每页数量
  642. required: true
  643. type: integer
  644. format: int64
  645. responses:
  646. "200":
  647. description: ""
  648. schema:
  649. $ref: '#/definitions/message.CompanyApprovalMessageListResp'
  650. /message/read:
  651. post:
  652. tags:
  653. - message
  654. description: 消息已读接口
  655. operationId: MessageCommon.消息已读
  656. parameters:
  657. - in: body
  658. name: request
  659. description: type json string
  660. required: true
  661. schema:
  662. $ref: '#/definitions/company.CompanyApprovalMessageReadReq'
  663. responses:
  664. Ret=200:
  665. description: 申请成功
  666. /message/summaryMessageList:
  667. get:
  668. tags:
  669. - message
  670. description: 消息列表汇总页接口
  671. operationId: MessageCommon.消息列表汇总页
  672. responses:
  673. "200":
  674. description: ""
  675. schema:
  676. type: array
  677. items:
  678. $ref: '#/definitions/message.SummaryMessage'
  679. /resource/upload:
  680. post:
  681. tags:
  682. - resource
  683. description: 图片上传接口
  684. operationId: ResourceCommon.图片上传
  685. parameters:
  686. - in: query
  687. name: file
  688. description: 文件
  689. required: true
  690. type: file
  691. responses:
  692. "200":
  693. description: 新增成功
  694. /resource/upload_image_base64:
  695. post:
  696. tags:
  697. - resource
  698. description: 上传图片
  699. operationId: ResourceCommon.上传图片
  700. parameters:
  701. - in: query
  702. name: Image
  703. description: 图片,base64字符串
  704. type: string
  705. responses:
  706. "200":
  707. description: ""
  708. schema:
  709. $ref: '#/definitions/models.ImageResponse'
  710. /roadshow/accept:
  711. post:
  712. tags:
  713. - roadshow
  714. description: 接受路演活动接口
  715. parameters:
  716. - in: body
  717. name: request
  718. description: type json string
  719. required: true
  720. schema:
  721. $ref: '#/definitions/rs.AcceptReq'
  722. responses:
  723. Ret=200:
  724. description: 保存成功
  725. /roadshow/activity/type/list:
  726. get:
  727. tags:
  728. - roadshow
  729. description: 获取报告电话会类型接口
  730. operationId: CalendarController.获取报告电话会类型
  731. responses:
  732. "200":
  733. description: ""
  734. schema:
  735. $ref: '#/definitions/rs.ResearcherGroup'
  736. /roadshow/add:
  737. post:
  738. tags:
  739. - roadshow
  740. description: 新增路演活动接口
  741. operationId: CalendarController.新增路演活动接口
  742. parameters:
  743. - in: body
  744. name: request
  745. description: type json string
  746. required: true
  747. schema:
  748. $ref: '#/definitions/rs.AddActivityReq'
  749. responses:
  750. Ret=200:
  751. description: 保存成功
  752. /roadshow/back:
  753. post:
  754. tags:
  755. - roadshow
  756. description: 撤回路演活动接口
  757. operationId: CalendarController.撤回路演活动接口
  758. parameters:
  759. - in: body
  760. name: request
  761. description: type json string
  762. required: true
  763. schema:
  764. $ref: '#/definitions/rs.AcceptReq'
  765. responses:
  766. Ret=200:
  767. description: 保存成功
  768. /roadshow/calendar/detail:
  769. get:
  770. tags:
  771. - roadshow
  772. description: 日历详情接口
  773. operationId: CalendarController.日历详情
  774. parameters:
  775. - in: query
  776. name: RsCalendarId
  777. description: 路演活动id
  778. required: true
  779. type: integer
  780. format: int64
  781. - in: query
  782. name: RsCalendarResearcherId
  783. description: 活动研究员id
  784. required: true
  785. type: integer
  786. format: int64
  787. responses:
  788. "200":
  789. description: ""
  790. schema:
  791. $ref: '#/definitions/rs.CalendarDetailResp'
  792. /roadshow/calendar/list:
  793. get:
  794. tags:
  795. - roadshow
  796. description: 我的日历列表接口
  797. operationId: CalendarController.我的日历列表
  798. parameters:
  799. - in: query
  800. name: PageSize
  801. description: 每页数据条数
  802. required: true
  803. type: integer
  804. format: int64
  805. - in: query
  806. name: CurrentIndex
  807. description: 当前页页码,从1开始
  808. required: true
  809. type: integer
  810. format: int64
  811. - in: query
  812. name: Status
  813. description: 1:待接受,2:包含,已接受,已拒绝,已删除,已撤回,已结束
  814. required: true
  815. type: integer
  816. format: int64
  817. responses:
  818. "200":
  819. description: ""
  820. schema:
  821. $ref: '#/definitions/rs.CalendarListResp'
  822. /roadshow/calendar/type/list:
  823. get:
  824. tags:
  825. - roadshow
  826. description: 内部会议和报告电话会日历列表
  827. operationId: CalendarController.内部会议和报告电话会日历列表
  828. parameters:
  829. - in: query
  830. name: PageSize
  831. description: 每页数据条数
  832. required: true
  833. type: integer
  834. format: int64
  835. - in: query
  836. name: CurrentIndex
  837. description: 当前页页码,从1开始
  838. required: true
  839. type: integer
  840. format: int64
  841. - in: query
  842. name: CalendarType
  843. description: 1:内部会议,2:报告电话会
  844. required: true
  845. type: integer
  846. format: int64
  847. responses:
  848. "200":
  849. description: ""
  850. schema:
  851. $ref: '#/definitions/rs.CalendarListResp'
  852. /roadshow/company/detail:
  853. get:
  854. tags:
  855. - roadshow
  856. description: 我的日历列表接口
  857. operationId: CalendarController.我的日历列表
  858. parameters:
  859. - in: query
  860. name: CompanyId
  861. description: 公司id
  862. required: true
  863. type: integer
  864. format: int64
  865. responses:
  866. "200":
  867. description: ""
  868. schema:
  869. $ref: '#/definitions/rs.CompanyDetailView'
  870. /roadshow/company/search:
  871. get:
  872. tags:
  873. - roadshow
  874. description: 我的日历列表接口
  875. operationId: CalendarController.我的日历列表
  876. parameters:
  877. - in: query
  878. name: KeyWord
  879. description: 搜索关键词
  880. required: true
  881. type: string
  882. responses:
  883. "200":
  884. description: ""
  885. schema:
  886. $ref: '#/definitions/rs.CalendarListResp'
  887. /roadshow/delete:
  888. post:
  889. tags:
  890. - roadshow
  891. description: 删除路演活动接口
  892. operationId: CalendarController.删除路演活动接口
  893. parameters:
  894. - in: body
  895. name: request
  896. description: type json string
  897. required: true
  898. schema:
  899. $ref: '#/definitions/rs.DeleteReq'
  900. responses:
  901. Ret=200:
  902. description: 保存成功
  903. /roadshow/edit:
  904. post:
  905. tags:
  906. - roadshow
  907. description: 编辑路演活动接口
  908. operationId: CalendarController.编辑路演活动接口
  909. parameters:
  910. - in: body
  911. name: request
  912. description: type json string
  913. required: true
  914. schema:
  915. $ref: '#/definitions/rs.EditActivityReq'
  916. responses:
  917. Ret=200:
  918. description: 保存成功
  919. /roadshow/matters/add:
  920. post:
  921. tags:
  922. - roadshow
  923. description: 新增事项接口
  924. operationId: CalendarController.新增事项接口
  925. parameters:
  926. - in: body
  927. name: request
  928. description: type json string
  929. required: true
  930. schema:
  931. $ref: '#/definitions/rs.AddMattersReq'
  932. responses:
  933. Ret=200:
  934. description: 保存成功
  935. /roadshow/matters/delete:
  936. post:
  937. tags:
  938. - roadshow
  939. description: 删除事项接口
  940. operationId: CalendarController.删除事项接口
  941. parameters:
  942. - in: body
  943. name: request
  944. description: type json string
  945. required: true
  946. schema:
  947. $ref: '#/definitions/rs.DeleteMattersReq'
  948. responses:
  949. Ret=200:
  950. description: 保存成功
  951. /roadshow/matters/list:
  952. get:
  953. tags:
  954. - roadshow
  955. description: 事项列表接口
  956. operationId: CalendarController.事项列表
  957. parameters:
  958. - in: query
  959. name: PageSize
  960. description: 每页数据条数
  961. required: true
  962. type: integer
  963. format: int64
  964. - in: query
  965. name: CurrentIndex
  966. description: 当前页页码,从1开始
  967. required: true
  968. type: integer
  969. format: int64
  970. responses:
  971. "200":
  972. description: ""
  973. schema:
  974. $ref: '#/definitions/rs.MattersListResp'
  975. /roadshow/matters/update:
  976. post:
  977. tags:
  978. - roadshow
  979. description: 修改事项接口
  980. operationId: CalendarController.修改事项接口
  981. parameters:
  982. - in: body
  983. name: request
  984. description: type json string
  985. required: true
  986. schema:
  987. $ref: '#/definitions/rs.UpdateMattersReq'
  988. responses:
  989. Ret=200:
  990. description: 保存成功
  991. /roadshow/my/calendar/detail:
  992. get:
  993. tags:
  994. - roadshow
  995. description: 路演-我的日历详情接口
  996. operationId: CalendarController.路演-我的日历详情
  997. parameters:
  998. - in: query
  999. name: StartDate
  1000. description: 开始日期
  1001. required: true
  1002. type: string
  1003. - in: query
  1004. name: EndDate
  1005. description: 结束日期日期
  1006. required: true
  1007. type: string
  1008. responses:
  1009. "200":
  1010. description: ""
  1011. schema:
  1012. $ref: '#/definitions/roadshow.CalendarDetailResp'
  1013. /roadshow/refuse:
  1014. post:
  1015. tags:
  1016. - roadshow
  1017. description: 拒绝路演活动接口
  1018. operationId: CalendarController.拒绝路演活动接口
  1019. parameters:
  1020. - in: body
  1021. name: request
  1022. description: type json string
  1023. required: true
  1024. schema:
  1025. $ref: '#/definitions/rs.RefuseReq'
  1026. responses:
  1027. Ret=200:
  1028. description: 保存成功
  1029. /roadshow/researcher/calendar/detail:
  1030. get:
  1031. tags:
  1032. - roadshow
  1033. description: 路演-研究员日历详情接口
  1034. operationId: CalendarController.路演-研究员日历详情
  1035. parameters:
  1036. - in: query
  1037. name: StartDate
  1038. description: 开始日期
  1039. required: true
  1040. type: string
  1041. - in: query
  1042. name: EndDate
  1043. description: 结束日期日期
  1044. required: true
  1045. type: string
  1046. - in: query
  1047. name: ResearcherId
  1048. description: 研究员id
  1049. required: true
  1050. type: integer
  1051. format: int64
  1052. responses:
  1053. "200":
  1054. description: ""
  1055. schema:
  1056. $ref: '#/definitions/roadshow.CalendarDetailResp'
  1057. /roadshow/researcher/list:
  1058. get:
  1059. tags:
  1060. - roadshow
  1061. description: 研究员列表接口
  1062. operationId: CalendarController.研究员列表
  1063. responses:
  1064. "200":
  1065. description: ""
  1066. schema:
  1067. $ref: '#/definitions/rs.ResearcherGroup'
  1068. /seal/add:
  1069. post:
  1070. tags:
  1071. - seal
  1072. description: 新增用印接口
  1073. operationId: SealCommon.新增用印
  1074. parameters:
  1075. - in: body
  1076. name: request
  1077. description: type json string
  1078. required: true
  1079. schema:
  1080. $ref: '#/definitions/seal.AddReq'
  1081. responses:
  1082. Ret=200:
  1083. description: 新增用印成功
  1084. /seal/check_edit:
  1085. post:
  1086. tags:
  1087. - seal
  1088. description: 审批者编辑用印接口
  1089. operationId: SealCommon.审批者编辑用印
  1090. parameters:
  1091. - in: body
  1092. name: request
  1093. description: type json string
  1094. required: true
  1095. schema:
  1096. $ref: '#/definitions/seal.CheckEditReq'
  1097. responses:
  1098. "200":
  1099. description: ""
  1100. schema:
  1101. $ref: '#/definitions/seal.AddSealResp'
  1102. /seal/company_list:
  1103. get:
  1104. tags:
  1105. - seal
  1106. description: 获取合同详情接口
  1107. operationId: SealCommon.根据客户名称获取已存在系统中客户名称列表
  1108. parameters:
  1109. - in: query
  1110. name: Keyword
  1111. description: 关键字:客户名称、组织社会信用码
  1112. required: true
  1113. type: string
  1114. responses:
  1115. "200":
  1116. description: ""
  1117. schema:
  1118. type: array
  1119. items:
  1120. type: string
  1121. /seal/company_name_list:
  1122. get:
  1123. tags:
  1124. - seal
  1125. description: 获取客户名称列表
  1126. operationId: SealCommon.根据客户名称关键词获取系统中的客户名称列表
  1127. parameters:
  1128. - in: query
  1129. name: Keyword
  1130. description: 客户名称关键词
  1131. required: true
  1132. type: string
  1133. - in: query
  1134. name: PageSize
  1135. description: 每页数据量
  1136. required: true
  1137. type: integer
  1138. format: int64
  1139. - in: query
  1140. name: CurrentIndex
  1141. description: 页码
  1142. required: true
  1143. type: integer
  1144. format: int64
  1145. responses:
  1146. "200":
  1147. description: ""
  1148. schema:
  1149. type: array
  1150. items:
  1151. $ref: '#/definitions/company.CompanyNameList'
  1152. /seal/detail:
  1153. get:
  1154. tags:
  1155. - seal
  1156. description: 获取用印详情接口
  1157. operationId: SealCommon.获取用印详情
  1158. parameters:
  1159. - in: query
  1160. name: SealId
  1161. description: 用印id
  1162. required: true
  1163. type: integer
  1164. format: int64
  1165. responses:
  1166. "200":
  1167. description: ""
  1168. schema:
  1169. $ref: '#/definitions/seal.SealDetailResp'
  1170. /seal/edit:
  1171. post:
  1172. tags:
  1173. - seal
  1174. description: 编辑用印接口
  1175. operationId: SealCommon.编辑用印
  1176. parameters:
  1177. - in: body
  1178. name: request
  1179. description: type json string
  1180. required: true
  1181. schema:
  1182. $ref: '#/definitions/seal.EditReq'
  1183. responses:
  1184. "200":
  1185. description: ""
  1186. schema:
  1187. $ref: '#/definitions/seal.AddSealResp'
  1188. /seal/invalid:
  1189. post:
  1190. tags:
  1191. - seal
  1192. description: 作废合同接口
  1193. operationId: SealCommon.作废合同
  1194. parameters:
  1195. - in: body
  1196. name: request
  1197. description: type json string
  1198. required: true
  1199. schema:
  1200. $ref: '#/definitions/seal.InvalidReq'
  1201. responses:
  1202. Ret=200:
  1203. description: 作废成功
  1204. /seal/list:
  1205. get:
  1206. tags:
  1207. - seal
  1208. description: 用印列表接口
  1209. operationId: SealCommon.用印列表
  1210. parameters:
  1211. - in: query
  1212. name: Status
  1213. description: 合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废','已签回'
  1214. type: string
  1215. - in: query
  1216. name: ProductId
  1217. description: 客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益
  1218. type: integer
  1219. format: int64
  1220. - in: query
  1221. name: ModifyStartTime
  1222. description: 服务更新时间的选择开始时间,格式:2021-05-23 00:00:00
  1223. type: string
  1224. - in: query
  1225. name: ModifyEndTime
  1226. description: 服务更新时间的选择结束时间,格式:2021-05-26 23:59:59
  1227. type: string
  1228. - in: query
  1229. name: AdminId
  1230. description: 选择的用户id
  1231. type: string
  1232. - in: query
  1233. name: Keyword
  1234. description: 搜索关键字
  1235. type: string
  1236. - in: query
  1237. name: KeywordEq
  1238. description: 搜索关键字(全匹配搜索)
  1239. type: string
  1240. responses:
  1241. "200":
  1242. description: ""
  1243. schema:
  1244. $ref: '#/definitions/contract.ContractListResp'
  1245. /seal/upload_check_back_file:
  1246. post:
  1247. tags:
  1248. - seal
  1249. description: 上传签回附件接口
  1250. operationId: SealCommon.上传签回附件
  1251. parameters:
  1252. - in: body
  1253. name: request
  1254. description: type json string
  1255. required: true
  1256. schema:
  1257. $ref: '#/definitions/seal.UploadCheckBackFileReq'
  1258. responses:
  1259. Ret=200:
  1260. description: 上传成功
  1261. /seal_approval/approved:
  1262. post:
  1263. tags:
  1264. - seal_approval
  1265. description: 处理审批单
  1266. operationId: SealApprovalCommon.处理审批单
  1267. parameters:
  1268. - in: body
  1269. name: request
  1270. description: type json string
  1271. required: true
  1272. schema:
  1273. $ref: '#/definitions/seal.ApprovedReq'
  1274. responses:
  1275. Ret=200:
  1276. description: 申请成功
  1277. /seal_approval/cancelApply:
  1278. get:
  1279. tags:
  1280. - seal_approval
  1281. description: 撤回审批申请接口
  1282. operationId: SealApprovalCommon.撤回审批申请
  1283. parameters:
  1284. - in: query
  1285. name: SealId
  1286. description: 用印id编号
  1287. required: true
  1288. type: integer
  1289. format: int64
  1290. responses:
  1291. Ret=200:
  1292. description: 撤回申请成功
  1293. /seal_approval/detail:
  1294. get:
  1295. tags:
  1296. - seal_approval
  1297. description: 审批单详情接口
  1298. operationId: SealApprovalCommon.审批单详情
  1299. parameters:
  1300. - in: query
  1301. name: SealId
  1302. description: 用印id
  1303. type: integer
  1304. format: int64
  1305. - in: query
  1306. name: ContractApprovalId
  1307. description: 审批单id
  1308. type: integer
  1309. format: int64
  1310. - in: query
  1311. name: ContractApprovalRecordId
  1312. description: 审批流程单id
  1313. type: integer
  1314. format: int64
  1315. responses:
  1316. "200":
  1317. description: ""
  1318. schema:
  1319. $ref: '#/definitions/seal.SealDetailResp'
  1320. /seal_approval/list:
  1321. get:
  1322. tags:
  1323. - seal_approval
  1324. description: 审批单列表接口
  1325. operationId: SealApprovalCommon.审批单列表
  1326. parameters:
  1327. - in: query
  1328. name: Use
  1329. description: 用途,枚举值:销售合同, 渠道合同, 付款通知函, 招投标, 战略合作协议
  1330. type: string
  1331. - in: query
  1332. name: ServiceType
  1333. description: "false"
  1334. type: string
  1335. - in: query
  1336. name: SealType
  1337. description: 公章类型,枚举值:合同章, 公章, 法人章
  1338. type: string
  1339. - in: query
  1340. name: Status
  1341. description: 合同状态,枚举值:'待审批','已审批','已驳回','已撤回','已签回'
  1342. type: string
  1343. - in: query
  1344. name: UserId
  1345. description: 选择的申请人id
  1346. type: string
  1347. - in: query
  1348. name: Keyword
  1349. description: 搜索关键字
  1350. type: string
  1351. - in: query
  1352. name: KeywordEq
  1353. description: 搜索关键字(全等)
  1354. type: string
  1355. - in: query
  1356. name: ModifyStartTime
  1357. description: 服务更新时间的选择开始时间,格式:2021-05-23 00:00:00
  1358. type: string
  1359. - in: query
  1360. name: ModifyEndTime
  1361. description: 服务更新时间的选择结束时间,格式:2021-05-26 23:59:59
  1362. type: string
  1363. responses:
  1364. "200":
  1365. description: ""
  1366. schema:
  1367. $ref: '#/definitions/seal.SealApprovalListResp'
  1368. /seal_approval/reject:
  1369. post:
  1370. tags:
  1371. - seal_approval
  1372. description: 驳回审批接口
  1373. operationId: SealApprovalCommon.驳回审批
  1374. parameters:
  1375. - in: body
  1376. name: request
  1377. description: type json string
  1378. required: true
  1379. schema:
  1380. $ref: '#/definitions/seal.RejectReq'
  1381. responses:
  1382. Ret=200:
  1383. description: 驳回成功
  1384. /wechat/login:
  1385. get:
  1386. tags:
  1387. - wechat
  1388. description: 微信登录接口
  1389. operationId: WeChatCommon.微信登录接口
  1390. parameters:
  1391. - in: query
  1392. name: Code
  1393. description: 微信唯一编码code
  1394. required: true
  1395. type: string
  1396. responses:
  1397. "200":
  1398. description: ""
  1399. schema:
  1400. $ref: '#/definitions/wechat.WxLoginResp'
  1401. /wechat/wxapp/login:
  1402. get:
  1403. tags:
  1404. - wechat
  1405. description: 微信登录接口
  1406. operationId: WeChatCommon.微信登录接口
  1407. parameters:
  1408. - in: query
  1409. name: Code
  1410. description: 微信唯一编码code
  1411. required: true
  1412. type: string
  1413. responses:
  1414. "200":
  1415. description: ""
  1416. schema:
  1417. $ref: '#/definitions/wechat.WxLoginResp'
  1418. definitions:
  1419. 645.<nil>.0xc0007ac840:
  1420. title: "0xc0007ac840"
  1421. type: object
  1422. 722.<nil>.0xc0007acf18:
  1423. title: "0xc0007acf18"
  1424. type: object
  1425. 1635.<nil>.0xc0007acbe8:
  1426. title: "0xc0007acbe8"
  1427. type: object
  1428. admin.LoginReq:
  1429. title: LoginReq
  1430. type: object
  1431. properties:
  1432. Password:
  1433. description: 密码
  1434. type: string
  1435. Username:
  1436. description: 账号
  1437. type: string
  1438. admin.LoginResp:
  1439. title: LoginResp
  1440. type: object
  1441. properties:
  1442. AdminId:
  1443. description: 系统用户id
  1444. type: integer
  1445. format: int64
  1446. AdminName:
  1447. description: 系统用户名称
  1448. type: string
  1449. Authority:
  1450. description: 管理权限,0:无,1:部门负责人,2:小组负责人,3:超级管理员
  1451. type: integer
  1452. format: int64
  1453. DepartmentName:
  1454. description: 所属部门
  1455. type: string
  1456. GroupName:
  1457. description: 所属分组
  1458. type: string
  1459. Headimgurl:
  1460. description: 用户头像
  1461. type: string
  1462. ProductName:
  1463. description: 产品名称:admin,ficc,权益
  1464. type: string
  1465. RealName:
  1466. description: 系统用户姓名
  1467. type: string
  1468. RoleName:
  1469. description: 角色名称
  1470. type: string
  1471. RoleTypeCode:
  1472. description: 角色类型编码
  1473. type: string
  1474. approval.CompanyApplyApproveReq:
  1475. title: CompanyApplyApproveReq
  1476. type: object
  1477. properties:
  1478. CompanyApprovalId:
  1479. description: 审批单id
  1480. type: integer
  1481. format: int64
  1482. CompanyContractId:
  1483. description: 合同id
  1484. type: integer
  1485. format: int64
  1486. CompanyId:
  1487. description: 客户id
  1488. type: integer
  1489. format: int64
  1490. Remark:
  1491. description: 审批理由
  1492. type: string
  1493. Status:
  1494. description: 审批状态,1:通过,2:拒绝
  1495. type: integer
  1496. format: int64
  1497. approval.CompanyApprovalDetailResp:
  1498. title: CompanyApprovalDetailResp
  1499. type: object
  1500. properties:
  1501. CompanyApprovalDetail:
  1502. $ref: '#/definitions/company_approval.CompanyApprovalList'
  1503. description: 审批单详情
  1504. FiccPermissionList:
  1505. description: Ficc权限列表
  1506. type: array
  1507. items:
  1508. $ref: '#/definitions/company_report_permission.PermissionLookList'
  1509. FlowNodeList:
  1510. description: 审批流
  1511. type: array
  1512. items:
  1513. $ref: '#/definitions/645.<nil>.0xc0007ac840'
  1514. PermissionList:
  1515. description: 权益权限列表
  1516. type: array
  1517. items:
  1518. $ref: '#/definitions/company_report_permission.PermissionLookList'
  1519. approval.CompanyApprovalListResp:
  1520. title: CompanyApprovalListResp
  1521. type: object
  1522. properties:
  1523. List:
  1524. type: array
  1525. items:
  1526. $ref: '#/definitions/company_approval.CompanyApprovalList'
  1527. Paging:
  1528. $ref: '#/definitions/paging.PagingItem'
  1529. approval.CompanyPermissionResp:
  1530. title: CompanyPermissionResp
  1531. type: object
  1532. properties:
  1533. FiccPermissionList:
  1534. description: Ficc权限列表
  1535. type: array
  1536. items:
  1537. $ref: '#/definitions/company_report_permission.PermissionLookList'
  1538. PermissionList:
  1539. description: 权益权限列表
  1540. type: array
  1541. items:
  1542. $ref: '#/definitions/company_report_permission.PermissionLookList'
  1543. approval_flow.ApprovalFlowItem:
  1544. title: ApprovalFlowItem
  1545. type: object
  1546. properties:
  1547. CreateTime:
  1548. description: 创建时间
  1549. type: string
  1550. format: datetime
  1551. CurrVersion:
  1552. description: 当前流程版本
  1553. type: integer
  1554. format: int64
  1555. FlowId:
  1556. description: 流程id
  1557. type: integer
  1558. format: int64
  1559. FlowName:
  1560. description: 流程名称
  1561. type: string
  1562. ModifyTime:
  1563. description: 最近一次修改时间
  1564. type: string
  1565. format: datetime
  1566. NodeList:
  1567. description: 节点流程列表
  1568. type: array
  1569. items:
  1570. $ref: '#/definitions/approval_flow_node.ApprovalFlowNodeList'
  1571. ProductId:
  1572. description: 所属类型,0代表通用,1:ficc部门,2:权益部门
  1573. type: integer
  1574. format: int64
  1575. approval_flow_node.ApprovalFlowNodeList:
  1576. title: ApprovalFlowNodeList
  1577. type: object
  1578. properties:
  1579. AuditType:
  1580. description: 多人审批时,1:或签(一名审批人同意即可),2:会签(需所有审批人同意)
  1581. type: integer
  1582. format: int64
  1583. CreateTime:
  1584. description: 创建时间
  1585. type: string
  1586. format: datetime
  1587. FlowId:
  1588. description: 流程id
  1589. type: integer
  1590. format: int64
  1591. NextNodeId:
  1592. description: 下级节点id,为0代表是结束节点
  1593. type: integer
  1594. format: int64
  1595. NodeId:
  1596. description: 流程节点id
  1597. type: integer
  1598. format: int64
  1599. NodeName:
  1600. description: 流程节点名称
  1601. type: string
  1602. NodeType:
  1603. description: 节点类型,审批人:check;抄送人:cc(Carbon Copy),默认是:check
  1604. type: string
  1605. PrevNodeId:
  1606. description: 上级节点id,为0代表是开始节点
  1607. type: integer
  1608. format: int64
  1609. UserList:
  1610. description: 审批人、抄送人列表信息
  1611. type: array
  1612. items:
  1613. $ref: '#/definitions/approval_flow_node.User'
  1614. Version:
  1615. description: 所属流程版本
  1616. type: integer
  1617. format: int64
  1618. approval_flow_node.User:
  1619. title: User
  1620. type: object
  1621. properties:
  1622. AdminId:
  1623. description: 人员id(审批人、抄送人)
  1624. type: integer
  1625. format: int64
  1626. Mobile:
  1627. description: 手机号(审批人、抄送人)
  1628. type: string
  1629. Name:
  1630. description: 人员名称(审批人、抄送人)
  1631. type: string
  1632. RoleTypeCode:
  1633. description: 人员角色类型(审批人、抄送人)
  1634. type: string
  1635. company.CompanyApprovalMessageReadReq:
  1636. title: CompanyApprovalMessageReadReq
  1637. type: object
  1638. company.CompanyNameList:
  1639. title: CompanyNameList
  1640. type: object
  1641. properties:
  1642. CompanyId:
  1643. description: 客户ID
  1644. type: integer
  1645. format: int64
  1646. CompanyName:
  1647. description: 客户名称
  1648. type: string
  1649. CreditCode:
  1650. description: 社会统一信用码
  1651. type: string
  1652. company_approval.CompanyApprovalList:
  1653. title: CompanyApprovalList
  1654. type: object
  1655. properties:
  1656. Address:
  1657. description: 地址
  1658. type: string
  1659. ApplyContractType:
  1660. description: 申请合同类型 0 非标 1 标准
  1661. type: integer
  1662. format: int64
  1663. ApplyMethod:
  1664. description: 申请类型:1:试用->正式,2:冻结—>试用,3:试用延期,4:原销售申请领取流失客户,5:正式客户申请服务更新,6:正式客户补充协议
  1665. type: integer
  1666. format: int64
  1667. ApplyRealName:
  1668. description: 申请人姓名
  1669. type: string
  1670. ApplyReasons:
  1671. description: 申请理由
  1672. type: string
  1673. ApprovalCount:
  1674. description: 已延期审批次数
  1675. type: integer
  1676. format: int64
  1677. ApprovalTime:
  1678. description: 提交申请时间
  1679. type: string
  1680. ApproveContent:
  1681. description: 待审内容
  1682. type: string
  1683. ApproveRemark:
  1684. description: 驳回理由
  1685. type: string
  1686. ApproveStatus:
  1687. description: 当前状态
  1688. type: string
  1689. ApproveTime:
  1690. description: 审批时间
  1691. type: string
  1692. ApproveUserId:
  1693. description: 审批人
  1694. type: integer
  1695. format: int64
  1696. CompanyApprovalId:
  1697. description: 审批记录ID
  1698. type: integer
  1699. format: int64
  1700. CompanyContractId:
  1701. description: 合同id
  1702. type: integer
  1703. format: int64
  1704. CompanyId:
  1705. type: integer
  1706. format: int64
  1707. CompanyName:
  1708. description: 客户名称
  1709. type: string
  1710. CompanyType:
  1711. description: 客户类型
  1712. type: string
  1713. CreateTime:
  1714. description: 创建时间
  1715. type: string
  1716. CreditCode:
  1717. description: 社会统一信用码
  1718. type: string
  1719. CurrNodeId:
  1720. description: 当前审批操作节点
  1721. type: integer
  1722. format: int64
  1723. DelayPermission:
  1724. description: 延期申请品种
  1725. type: string
  1726. EndDate:
  1727. description: 结束日期
  1728. type: string
  1729. ExpireDay:
  1730. description: 服务到期天数
  1731. type: integer
  1732. format: int64
  1733. FreezeEndDate:
  1734. description: 冻结结束日期
  1735. type: string
  1736. FreezeExpireDays:
  1737. description: 冻结到期天数
  1738. type: integer
  1739. format: int64
  1740. FreezeStartDate:
  1741. description: 冻结开始日期
  1742. type: string
  1743. IndustryName:
  1744. description: 行业名称
  1745. type: string
  1746. OpButton:
  1747. description: 是否审批操作权限
  1748. type: boolean
  1749. ProductId:
  1750. type: integer
  1751. format: int64
  1752. SellerName:
  1753. description: 销售名称
  1754. type: string
  1755. Source:
  1756. description: 客户来源
  1757. type: string
  1758. StartDate:
  1759. description: 开始日期
  1760. type: string
  1761. Status:
  1762. description: 客户状态
  1763. type: string
  1764. company_approval_message.ApprovalInfo:
  1765. title: ApprovalInfo
  1766. type: object
  1767. properties:
  1768. ApplyName:
  1769. description: 申请人姓名
  1770. type: string
  1771. ApplyTime:
  1772. description: 提交时间
  1773. type: string
  1774. format: datetime
  1775. ApprovalTime:
  1776. description: 审批时间
  1777. type: string
  1778. format: datetime
  1779. Type:
  1780. description: 类型
  1781. type: string
  1782. company_approval_message.CompanyApprovalMessageList:
  1783. title: CompanyApprovalMessageList
  1784. type: object
  1785. properties:
  1786. ApprovalInfo:
  1787. $ref: '#/definitions/company_approval_message.ApprovalInfo'
  1788. description: 审批单信息
  1789. ApprovalStatus:
  1790. description: 审批结果:1:待审批,2:已审批,3:已驳回
  1791. type: integer
  1792. format: int64
  1793. CompanyApprovalId:
  1794. description: 审批单id
  1795. type: integer
  1796. format: int64
  1797. CompanyName:
  1798. description: 客户名称
  1799. type: string
  1800. Content:
  1801. description: 消息内容
  1802. type: string
  1803. CreateTime:
  1804. description: 创建时间
  1805. type: string
  1806. format: datetime
  1807. CreateUserId:
  1808. description: 申请者id
  1809. type: integer
  1810. format: int64
  1811. Id:
  1812. type: integer
  1813. format: int64
  1814. MessageStatus:
  1815. description: 消息状态:0未读,1:已读,2:作废
  1816. type: integer
  1817. format: int64
  1818. MessageType:
  1819. description: 1:申请消息,2:审批结果,3:文字消息
  1820. type: integer
  1821. format: int64
  1822. RealName:
  1823. description: 销售名称
  1824. type: string
  1825. Remark:
  1826. description: 备注信息
  1827. type: string
  1828. SourceType:
  1829. description: 消息来源类型,1:客户,2:合同,3:用印
  1830. type: integer
  1831. format: int64
  1832. company_contract.CompanyContractDetail:
  1833. title: CompanyContractDetail
  1834. type: object
  1835. properties:
  1836. CompanyContractId:
  1837. type: integer
  1838. format: int64
  1839. CompanyId:
  1840. description: 客户id
  1841. type: integer
  1842. format: int64
  1843. ContractCode:
  1844. description: 合同编码
  1845. type: string
  1846. ContractType:
  1847. description: 合同类型:枚举值:'新签合同','续约合同','补充协议'
  1848. type: string
  1849. CreateTime:
  1850. description: 合同创建时间
  1851. type: string
  1852. format: datetime
  1853. EndDate:
  1854. description: 合同结束时间
  1855. type: string
  1856. ImgUrl:
  1857. description: 合同图片,多个用#隔开
  1858. type: string
  1859. ModifyTime:
  1860. description: 合同修改时间
  1861. type: string
  1862. format: datetime
  1863. Money:
  1864. description: 合同金额
  1865. type: number
  1866. format: double
  1867. PackageType:
  1868. description: 套餐类型,0:无,1:大套餐,2:小套餐
  1869. type: integer
  1870. format: int64
  1871. PayChannel:
  1872. description: 支付渠道
  1873. type: string
  1874. PayMethod:
  1875. description: 支付方式
  1876. type: string
  1877. PermissionList:
  1878. type: array
  1879. items:
  1880. $ref: '#/definitions/company_report_permission.PermissionLookList'
  1881. StartDate:
  1882. description: 合同开始时间
  1883. type: string
  1884. Status:
  1885. description: 状态
  1886. type: integer
  1887. format: int64
  1888. company_contract.CompanyContractDetailResp:
  1889. title: CompanyContractDetailResp
  1890. type: object
  1891. properties:
  1892. CompanyContractId:
  1893. type: integer
  1894. format: int64
  1895. CompanyId:
  1896. description: 客户id
  1897. type: integer
  1898. format: int64
  1899. ContractCode:
  1900. description: 合同编码
  1901. type: string
  1902. ContractType:
  1903. description: 合同类型:枚举值:'新签合同','续约合同','补充协议'
  1904. type: string
  1905. CreateTime:
  1906. description: 合同创建时间
  1907. type: string
  1908. format: datetime
  1909. EndDate:
  1910. description: 合同结束时间
  1911. type: string
  1912. ImgUrl:
  1913. description: 合同图片,多个用#隔开
  1914. type: string
  1915. ModifyTime:
  1916. description: 合同修改时间
  1917. type: string
  1918. format: datetime
  1919. Money:
  1920. description: 合同金额
  1921. type: number
  1922. format: double
  1923. PackageType:
  1924. description: 套餐类型,0:无,1:大套餐,2:小套餐
  1925. type: integer
  1926. format: int64
  1927. PayChannel:
  1928. description: 支付渠道
  1929. type: string
  1930. PayMethod:
  1931. description: 支付方式
  1932. type: string
  1933. PermissionList:
  1934. type: array
  1935. items:
  1936. $ref: '#/definitions/company_report_permission.PermissionLookList'
  1937. StartDate:
  1938. description: 合同开始时间
  1939. type: string
  1940. Status:
  1941. description: 状态
  1942. type: integer
  1943. format: int64
  1944. company_report_permission.PermissionLookItem:
  1945. title: PermissionLookItem
  1946. type: object
  1947. properties:
  1948. ChartPermissionId:
  1949. description: 权限id
  1950. type: integer
  1951. format: int64
  1952. ClassifyName:
  1953. description: 分类
  1954. type: string
  1955. EndDate:
  1956. description: 权限结束日期
  1957. type: string
  1958. ExpireDay:
  1959. description: 到期天数
  1960. type: string
  1961. PermissionName:
  1962. description: 权限名称
  1963. type: string
  1964. StartDate:
  1965. description: 权限开始日期
  1966. type: string
  1967. Status:
  1968. description: '''正式'',''试用'',''关闭'''
  1969. type: string
  1970. company_report_permission.PermissionLookList:
  1971. title: PermissionLookList
  1972. type: object
  1973. properties:
  1974. CheckList:
  1975. type: array
  1976. items:
  1977. type: integer
  1978. format: int64
  1979. ClassifyName:
  1980. description: 分类
  1981. type: string
  1982. Items:
  1983. type: array
  1984. items:
  1985. $ref: '#/definitions/company_report_permission.PermissionLookItem'
  1986. contract.ApprovedReq:
  1987. title: ApprovedReq
  1988. type: object
  1989. properties:
  1990. ContractId:
  1991. description: 合同id
  1992. type: integer
  1993. format: int64
  1994. Remark:
  1995. description: 驳回理由
  1996. type: string
  1997. contract.ContractApprovalListResp:
  1998. title: ContractApprovalListResp
  1999. type: object
  2000. properties:
  2001. List:
  2002. description: 列表数据
  2003. type: array
  2004. items:
  2005. $ref: '#/definitions/contract_approval.ContractApprovalList'
  2006. Paging:
  2007. $ref: '#/definitions/paging.PagingItem'
  2008. contract.ContractDetail:
  2009. title: ContractDetail
  2010. type: object
  2011. properties:
  2012. Address:
  2013. description: 详细地址
  2014. type: string
  2015. ApprovalRemark:
  2016. description: 审核备注
  2017. type: string
  2018. ApproveTime:
  2019. description: 审批时间
  2020. type: string
  2021. format: datetime
  2022. ApproveTimeStr:
  2023. description: 审批时间
  2024. type: string
  2025. CheckBackFileTime:
  2026. description: 合同签回时间
  2027. type: string
  2028. format: datetime
  2029. CheckBackFileTimeStr:
  2030. description: 合同签回时间
  2031. type: string
  2032. CheckBackFileUrl:
  2033. description: 签回合同文件地址
  2034. type: string
  2035. City:
  2036. description: 市级名称,长度32位
  2037. type: string
  2038. CityId:
  2039. description: 市级id
  2040. type: integer
  2041. format: int64
  2042. CompanyName:
  2043. description: 客户名称,甲方名称,长度32位
  2044. type: string
  2045. ContractBusinessType:
  2046. description: 合同业务类型,枚举值:'业务合同','代付合同'
  2047. type: string
  2048. ContractCode:
  2049. description: 合同编号,长度32位
  2050. type: string
  2051. ContractId:
  2052. description: 合同唯一id
  2053. type: integer
  2054. format: int64
  2055. ContractType:
  2056. description: 合同类型,枚举值:'新签合同','续约合同','补充协议'
  2057. type: string
  2058. CreateTime:
  2059. description: 合同添加时间
  2060. type: string
  2061. format: datetime
  2062. CreateTimeStr:
  2063. description: 合同添加时间
  2064. type: string
  2065. CreditCode:
  2066. description: 社会统一信用代码,长度64位
  2067. type: string
  2068. EndDate:
  2069. description: 合同结束日期
  2070. type: string
  2071. format: datetime
  2072. EndDateStr:
  2073. description: 合同结束时间
  2074. type: string
  2075. Fax:
  2076. description: 传真,长度32位
  2077. type: string
  2078. FileUrl:
  2079. description: 合同文件地址
  2080. type: string
  2081. InvalidTime:
  2082. description: 作废时间
  2083. type: string
  2084. format: datetime
  2085. InvalidTimeStr:
  2086. description: 作废时间
  2087. type: string
  2088. ModifyContent:
  2089. description: 修改内容
  2090. type: string
  2091. ModifyTime:
  2092. description: 合同最近一次修改时间
  2093. type: string
  2094. format: datetime
  2095. ModifyTimeStr:
  2096. description: 最近一次更新时间
  2097. type: string
  2098. OriginalPrice:
  2099. description: 合同原金额,优惠前的金额
  2100. type: number
  2101. format: double
  2102. PayChannel:
  2103. description: 付款渠道,长度255位
  2104. type: string
  2105. PayRemark:
  2106. description: 付款方式说明,长度255位
  2107. type: string
  2108. PermissionLookList:
  2109. description: 合同里面的权限列表
  2110. type: array
  2111. items:
  2112. $ref: '#/definitions/company_report_permission.PermissionLookList'
  2113. Phone:
  2114. description: 电话,长度32位
  2115. type: string
  2116. Postcode:
  2117. description: 邮编,长度16位
  2118. type: string
  2119. Price:
  2120. description: 实际金额,优惠后的金额
  2121. type: number
  2122. format: double
  2123. ProductId:
  2124. description: 产品id,1:ficc;2:权益
  2125. type: integer
  2126. format: int64
  2127. Province:
  2128. description: 省级名称,长度16位
  2129. type: string
  2130. ProvinceId:
  2131. description: 省级id
  2132. type: integer
  2133. format: int64
  2134. RelationContractDetailList:
  2135. description: 关联合同详情
  2136. type: array
  2137. items:
  2138. $ref: '#/definitions/contract.ContractDetail'
  2139. Remark:
  2140. description: 补充内容,长度255位
  2141. type: string
  2142. RescindFileUrl:
  2143. description: 解约合同文件地址
  2144. type: string
  2145. RescindTime:
  2146. description: 解约时间
  2147. type: string
  2148. format: datetime
  2149. RescindTimeStr:
  2150. description: 解约时间
  2151. type: string
  2152. SellerId:
  2153. description: 所属销售id
  2154. type: integer
  2155. format: int64
  2156. SellerName:
  2157. description: 所属销售名称
  2158. type: string
  2159. SellerRemark:
  2160. description: 销售备注,长度255位
  2161. type: string
  2162. Service:
  2163. type: array
  2164. items:
  2165. $ref: '#/definitions/contract.ContractServiceAndDetail'
  2166. SourceId:
  2167. description: 来源合同id,默认是0;如果是通过其他合同复制过来的,那么就是原合同的id
  2168. type: integer
  2169. format: int64
  2170. StartDate:
  2171. description: 合同开始日期
  2172. type: string
  2173. format: datetime
  2174. StartDateStr:
  2175. description: 合同起始时间
  2176. type: string
  2177. Status:
  2178. description: 合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废','已解约'
  2179. type: string
  2180. TemplateId:
  2181. description: 模板id
  2182. type: integer
  2183. format: int64
  2184. contract.ContractDetailResp:
  2185. title: ContractDetailResp
  2186. type: object
  2187. properties:
  2188. ContractDetail:
  2189. $ref: '#/definitions/contract.ContractDetail'
  2190. description: 审批单详情
  2191. FlowNodeList:
  2192. description: 审批流
  2193. type: array
  2194. items:
  2195. $ref: '#/definitions/1635.<nil>.0xc0007acbe8'
  2196. OpButton:
  2197. $ref: '#/definitions/contract.OpButton'
  2198. description: 操作权限
  2199. contract.ContractList:
  2200. title: ContractList
  2201. type: object
  2202. properties:
  2203. Address:
  2204. description: 详细地址
  2205. type: string
  2206. ApprovalRemark:
  2207. description: 审核备注
  2208. type: string
  2209. ApproveTime:
  2210. description: 审批时间
  2211. type: string
  2212. format: datetime
  2213. ApproveTimeStr:
  2214. description: 审批时间
  2215. type: string
  2216. CheckBackFileTime:
  2217. description: 合同签回时间
  2218. type: string
  2219. format: datetime
  2220. CheckBackFileTimeStr:
  2221. description: 合同签回时间
  2222. type: string
  2223. CheckBackFileUrl:
  2224. description: 签回合同文件地址
  2225. type: string
  2226. City:
  2227. description: 市级名称,长度32位
  2228. type: string
  2229. CityId:
  2230. description: 市级id
  2231. type: integer
  2232. format: int64
  2233. CompanyName:
  2234. description: 客户名称,甲方名称,长度32位
  2235. type: string
  2236. ContractBusinessType:
  2237. description: 合同业务类型,枚举值:'业务合同','代付合同'
  2238. type: string
  2239. ContractCode:
  2240. description: 合同编号,长度32位
  2241. type: string
  2242. ContractId:
  2243. description: 合同唯一id
  2244. type: integer
  2245. format: int64
  2246. ContractType:
  2247. description: 合同类型,枚举值:'新签合同','续约合同','补充协议'
  2248. type: string
  2249. CreateTime:
  2250. description: 合同添加时间
  2251. type: string
  2252. format: datetime
  2253. CreateTimeStr:
  2254. description: 合同添加时间
  2255. type: string
  2256. CreditCode:
  2257. description: 社会统一信用代码,长度64位
  2258. type: string
  2259. EndDate:
  2260. description: 合同结束日期
  2261. type: string
  2262. format: datetime
  2263. EndDateStr:
  2264. description: 合同结束时间
  2265. type: string
  2266. Fax:
  2267. description: 传真,长度32位
  2268. type: string
  2269. FileUrl:
  2270. description: 合同文件地址
  2271. type: string
  2272. InvalidTime:
  2273. description: 作废时间
  2274. type: string
  2275. format: datetime
  2276. InvalidTimeStr:
  2277. description: 作废时间
  2278. type: string
  2279. ModifyContent:
  2280. description: 修改内容
  2281. type: string
  2282. ModifyTime:
  2283. description: 合同最近一次修改时间
  2284. type: string
  2285. format: datetime
  2286. ModifyTimeStr:
  2287. description: 最近一次更新时间
  2288. type: string
  2289. OriginalPrice:
  2290. description: 合同原金额,优惠前的金额
  2291. type: number
  2292. format: double
  2293. PayRemark:
  2294. description: 付款方式说明,长度255位
  2295. type: string
  2296. Phone:
  2297. description: 电话,长度32位
  2298. type: string
  2299. Postcode:
  2300. description: 邮编,长度16位
  2301. type: string
  2302. Price:
  2303. description: 实际金额,优惠后的金额
  2304. type: number
  2305. format: double
  2306. ProductId:
  2307. description: 产品id,1:ficc;2:权益
  2308. type: integer
  2309. format: int64
  2310. Province:
  2311. description: 省级名称,长度16位
  2312. type: string
  2313. ProvinceId:
  2314. description: 省级id
  2315. type: integer
  2316. format: int64
  2317. RescindTime:
  2318. description: 解约时间
  2319. type: string
  2320. format: datetime
  2321. RescindTimeStr:
  2322. description: 解约时间
  2323. type: string
  2324. SellerId:
  2325. description: 所属销售id
  2326. type: integer
  2327. format: int64
  2328. SellerName:
  2329. description: 所属销售名称
  2330. type: string
  2331. SellerRemark:
  2332. description: 销售备注,长度255位
  2333. type: string
  2334. Service:
  2335. type: array
  2336. items:
  2337. $ref: '#/definitions/contract.ContractServiceAndDetail'
  2338. SourceId:
  2339. description: 来源合同id,默认是0;如果是通过其他合同复制过来的,那么就是原合同的id
  2340. type: integer
  2341. format: int64
  2342. StartDate:
  2343. description: 合同开始日期
  2344. type: string
  2345. format: datetime
  2346. StartDateStr:
  2347. description: 合同起始时间
  2348. type: string
  2349. Status:
  2350. description: 合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废'
  2351. type: string
  2352. TemplateId:
  2353. description: 模板id
  2354. type: integer
  2355. format: int64
  2356. UseCompanyName:
  2357. description: 使用方名称,长度32位
  2358. type: string
  2359. contract.ContractListResp:
  2360. title: ContractListResp
  2361. type: object
  2362. properties:
  2363. List:
  2364. description: 列表数据
  2365. type: array
  2366. items:
  2367. $ref: '#/definitions/contract.ContractList'
  2368. Paging:
  2369. $ref: '#/definitions/paging.PagingItem'
  2370. contract.ContractListRespV2:
  2371. title: ContractListRespV2
  2372. type: object
  2373. properties:
  2374. List:
  2375. description: 列表数据
  2376. type: array
  2377. items:
  2378. $ref: '#/definitions/contract_approval.ContractApprovalList'
  2379. Paging:
  2380. $ref: '#/definitions/paging.PagingItem'
  2381. contract.ContractServiceAndDetail:
  2382. title: ContractServiceAndDetail
  2383. type: object
  2384. properties:
  2385. ChartPermissionId:
  2386. description: 权限id
  2387. type: integer
  2388. format: int64
  2389. ContractId:
  2390. description: 合同id
  2391. type: integer
  2392. format: int64
  2393. ContractServiceId:
  2394. type: integer
  2395. format: int64
  2396. DetailList:
  2397. type: array
  2398. items:
  2399. $ref: '#/definitions/contract_service_detail.ContractServiceDetail'
  2400. HasDetail:
  2401. description: 是否有详情,枚举值:是、否;默认:否
  2402. type: string
  2403. ProductId:
  2404. description: 产品id,1:ficc;2:权益
  2405. type: integer
  2406. format: int64
  2407. ServiceTemplateId:
  2408. description: 合同服务模板id
  2409. type: integer
  2410. format: int64
  2411. TableValue:
  2412. description: 表格数据,用于word生成时的json数据
  2413. type: string
  2414. Title:
  2415. description: 套餐标题
  2416. type: string
  2417. Value:
  2418. description: 套餐的值
  2419. type: string
  2420. contract.InvalidReq:
  2421. title: InvalidReq
  2422. type: object
  2423. properties:
  2424. ContractId:
  2425. description: 合同id
  2426. type: integer
  2427. format: int64
  2428. contract.OpButton:
  2429. title: OpButton
  2430. type: object
  2431. properties:
  2432. Approval:
  2433. description: 是否有审批权限
  2434. type: boolean
  2435. Invalid:
  2436. description: 是否有作废合同权限
  2437. type: boolean
  2438. UploadFile:
  2439. description: 是否有上传签回文件权限
  2440. type: boolean
  2441. contract.RejectReq:
  2442. title: RejectReq
  2443. type: object
  2444. properties:
  2445. ContractId:
  2446. description: 合同id
  2447. type: integer
  2448. format: int64
  2449. Remark:
  2450. description: 备注字段
  2451. type: string
  2452. contract.UploadCheckBackFileReq:
  2453. title: UploadCheckBackFileReq
  2454. type: object
  2455. properties:
  2456. ContractId:
  2457. description: 合同id
  2458. type: integer
  2459. format: int64
  2460. FileUrl:
  2461. description: 签回合同url
  2462. type: string
  2463. contract_approval.ContractApprovalList:
  2464. title: ContractApprovalList
  2465. type: object
  2466. properties:
  2467. ApplyContent:
  2468. description: 待审内容
  2469. type: string
  2470. ApproveRemark:
  2471. description: 审核备注
  2472. type: string
  2473. ApproveTime:
  2474. description: 审批时间
  2475. type: string
  2476. format: datetime
  2477. ApproveTimeStr:
  2478. description: 审批时间(字符串类型)
  2479. type: string
  2480. CheckBackFileTime:
  2481. description: 合同签回时间
  2482. type: string
  2483. format: datetime
  2484. CheckBackFileTimeStr:
  2485. description: 合同签回时间(字符串类型)
  2486. type: string
  2487. CompanyName:
  2488. description: 客户名称
  2489. type: string
  2490. ContractApprovalId:
  2491. description: 审批单id
  2492. type: integer
  2493. format: int64
  2494. ContractApprovalRecordId:
  2495. description: 审批流id
  2496. type: integer
  2497. format: int64
  2498. ContractBusinessType:
  2499. description: 合同业务类型,枚举值:'业务合同','代付合同'
  2500. type: string
  2501. ContractCode:
  2502. description: 合同编号
  2503. type: string
  2504. ContractId:
  2505. description: 合同id
  2506. type: integer
  2507. format: int64
  2508. ContractType:
  2509. description: 合同类型
  2510. type: string
  2511. CreateTime:
  2512. description: 发起审批的时间
  2513. type: string
  2514. format: datetime
  2515. CreateTimeStr:
  2516. description: 发起审批的时间(字符串类型)
  2517. type: string
  2518. CreditCode:
  2519. description: 社会统一信用代码,长度64位
  2520. type: string
  2521. EndDate:
  2522. description: 合同结束日期
  2523. type: string
  2524. format: datetime
  2525. EndDateStr:
  2526. description: 合同结束日期(字符串类型)
  2527. type: string
  2528. FileUrl:
  2529. description: 合同下载地址
  2530. type: string
  2531. InvalidTime:
  2532. description: 作废时间
  2533. type: string
  2534. format: datetime
  2535. InvalidTimeStr:
  2536. description: 作废时间(字符串类型)
  2537. type: string
  2538. ModifyTime:
  2539. description: 最后一次修改的时间
  2540. type: string
  2541. format: datetime
  2542. ModifyTimeStr:
  2543. description: 最后一次修改的时间(字符串类型)
  2544. type: string
  2545. Price:
  2546. description: 合同金额
  2547. type: number
  2548. format: double
  2549. ProductId:
  2550. description: 产品id,1:ficc;2:权益
  2551. type: integer
  2552. format: int64
  2553. RescindTime:
  2554. description: 解约时间
  2555. type: string
  2556. format: datetime
  2557. RescindTimeStr:
  2558. description: 解约时间(字符串类型)
  2559. type: string
  2560. SellerId:
  2561. description: 销售id
  2562. type: integer
  2563. format: int64
  2564. SellerName:
  2565. description: 销售名称
  2566. type: string
  2567. StartDate:
  2568. description: 合同开始日期
  2569. type: string
  2570. format: datetime
  2571. StartDateStr:
  2572. description: 合同开始日期(字符串类型)
  2573. type: string
  2574. Status:
  2575. description: 合同状态,枚举值:待审批','已审批','已驳回','已撤回',默认待审批
  2576. type: string
  2577. contract_approval.SealApprovalList:
  2578. title: SealApprovalList
  2579. type: object
  2580. properties:
  2581. ApplyContent:
  2582. description: 待审内容
  2583. type: string
  2584. ApplyUserId:
  2585. description: 待审内容
  2586. type: integer
  2587. format: int64
  2588. ApplyUserName:
  2589. description: 待审内容
  2590. type: string
  2591. ApproveRemark:
  2592. description: 审核备注
  2593. type: string
  2594. ApproveTime:
  2595. description: 审批时间
  2596. type: string
  2597. format: datetime
  2598. ApproveTimeStr:
  2599. description: 审批时间(字符串类型)
  2600. type: string
  2601. CheckBackFileTime:
  2602. description: 签回用印附件时间
  2603. type: string
  2604. format: datetime
  2605. CompanyName:
  2606. description: 客户名称
  2607. type: string
  2608. ContractApprovalId:
  2609. description: 审批单id
  2610. type: integer
  2611. format: int64
  2612. ContractApprovalRecordId:
  2613. description: 审批流id
  2614. type: integer
  2615. format: int64
  2616. ContractCode:
  2617. description: 合同编号
  2618. type: string
  2619. ContractId:
  2620. description: 合同id
  2621. type: integer
  2622. format: int64
  2623. CreateTime:
  2624. description: 发起审批的时间
  2625. type: string
  2626. format: datetime
  2627. CreateTimeStr:
  2628. description: 发起审批的时间(字符串类型)
  2629. type: string
  2630. CurrNodeId:
  2631. description: 当前审批节点id
  2632. type: integer
  2633. format: int64
  2634. EndDateStr:
  2635. description: 合同结束日期(字符串类型)
  2636. type: string
  2637. FileUrl:
  2638. description: 合同下载地址
  2639. type: string
  2640. InvalidTime:
  2641. description: 作废时间
  2642. type: string
  2643. format: datetime
  2644. InvalidTimeStr:
  2645. description: 作废时间(字符串类型)
  2646. type: string
  2647. ModifyTime:
  2648. description: 最后一次修改的时间
  2649. type: string
  2650. format: datetime
  2651. ModifyTimeStr:
  2652. description: 最后一次修改的时间(字符串类型)
  2653. type: string
  2654. SealType:
  2655. description: 用印类型
  2656. type: string
  2657. StartDateStr:
  2658. description: 合同开始日期(字符串类型)
  2659. type: string
  2660. StartNodeId:
  2661. description: 开始审批节点id
  2662. type: integer
  2663. format: int64
  2664. Status:
  2665. description: 合同状态,枚举值:待审批','已审批','已驳回','已撤回','已签回',默认待审批
  2666. type: string
  2667. UserId:
  2668. description: 申请人id
  2669. type: integer
  2670. format: int64
  2671. UserName:
  2672. description: 申请人名称
  2673. type: string
  2674. contract_service_detail.ContractServiceDetail:
  2675. title: ContractServiceDetail
  2676. type: object
  2677. properties:
  2678. Col1:
  2679. description: 第1列数据
  2680. type: string
  2681. Col2:
  2682. description: 第2列数据
  2683. type: string
  2684. Col3:
  2685. description: 第3列数据
  2686. type: string
  2687. Col4:
  2688. description: 第4列数据
  2689. type: string
  2690. Col5:
  2691. description: 第5列数据
  2692. type: string
  2693. Col6:
  2694. description: 第6列数据
  2695. type: string
  2696. Col7:
  2697. description: 第7列数据
  2698. type: string
  2699. ContractId:
  2700. description: 合同id
  2701. type: integer
  2702. format: int64
  2703. ContractServiceId:
  2704. description: 合同服务id
  2705. type: integer
  2706. format: int64
  2707. CreateTime:
  2708. description: 数据添加时间
  2709. type: string
  2710. format: datetime
  2711. Id:
  2712. type: integer
  2713. format: int64
  2714. ServiceTemplateId:
  2715. description: 服务模板id
  2716. type: integer
  2717. format: int64
  2718. message.CompanyApprovalMessageListResp:
  2719. title: CompanyApprovalMessageListResp
  2720. type: object
  2721. properties:
  2722. List:
  2723. type: array
  2724. items:
  2725. $ref: '#/definitions/company_approval_message.CompanyApprovalMessageList'
  2726. Total:
  2727. description: 总数据条数
  2728. type: integer
  2729. format: int64
  2730. message.SummaryMessage:
  2731. title: SummaryMessage
  2732. type: object
  2733. properties:
  2734. Message:
  2735. description: 消息
  2736. type: string
  2737. SourceType:
  2738. description: 消息来源类型,1:客户,2:合同,3:用印
  2739. type: integer
  2740. format: int64
  2741. Total:
  2742. description: 未读数据数
  2743. type: integer
  2744. format: int64
  2745. models.ImageResponse:
  2746. title: ImageResponse
  2747. type: object
  2748. paging.PagingItem:
  2749. title: PagingItem
  2750. type: object
  2751. roadshow.CalendarDetailResp:
  2752. title: CalendarDetailResp
  2753. type: object
  2754. properties:
  2755. CompanyDetail:
  2756. $ref: '#/definitions/roadshow.CompanyDetailView'
  2757. RsCalendarItem:
  2758. $ref: '#/definitions/roadshow.RsCalendar'
  2759. RsCalendarResearcherItem:
  2760. $ref: '#/definitions/roadshow.RsCalendarResearcher'
  2761. roadshow.CompanyDetailView:
  2762. title: CompanyDetailView
  2763. type: object
  2764. properties:
  2765. CompanyId:
  2766. type: integer
  2767. format: int64
  2768. CompanyName:
  2769. description: 客户名称
  2770. type: string
  2771. IndustryId:
  2772. description: 行业id
  2773. type: integer
  2774. format: int64
  2775. IndustryName:
  2776. description: 行业名称
  2777. type: string
  2778. PermissionName:
  2779. description: 开通品种
  2780. type: string
  2781. ReportReadTotal:
  2782. description: 累计阅读次数
  2783. type: integer
  2784. format: int64
  2785. Status:
  2786. description: 客户状态
  2787. type: string
  2788. roadshow.RsCalendar:
  2789. title: RsCalendar
  2790. type: object
  2791. properties:
  2792. ActivityCategory:
  2793. description: 活动类别
  2794. type: string
  2795. ActivityType:
  2796. description: 活动类型
  2797. type: string
  2798. City:
  2799. description: 市
  2800. type: string
  2801. CityCode:
  2802. description: 市编码
  2803. type: string
  2804. CompanyId:
  2805. description: 客户id
  2806. type: integer
  2807. format: int64
  2808. CompanyName:
  2809. description: 客户名称
  2810. type: string
  2811. CooperationName:
  2812. description: 合作方名称
  2813. type: string
  2814. CreateTime:
  2815. type: string
  2816. format: datetime
  2817. IsSynced:
  2818. description: 是否与上海同步 0:未同步 1:已同步
  2819. type: integer
  2820. format: int64
  2821. ModifyTime:
  2822. type: string
  2823. format: datetime
  2824. Province:
  2825. description: 省
  2826. type: string
  2827. ProvinceCode:
  2828. description: 省编码
  2829. type: string
  2830. RoadshowPlatform:
  2831. description: 路演平台
  2832. type: string
  2833. RoadshowType:
  2834. description: 路演形式
  2835. type: string
  2836. RsCalendarId:
  2837. type: integer
  2838. format: int64
  2839. Source:
  2840. description: 来源,0:自系统,1:上海方的
  2841. type: integer
  2842. format: int32
  2843. SysUserId:
  2844. description: 创建人id
  2845. type: integer
  2846. format: int64
  2847. SysUserRealName:
  2848. description: 创建人名称
  2849. type: string
  2850. Theme:
  2851. description: 会议主题
  2852. type: string
  2853. Title:
  2854. description: 展示在日历的标题
  2855. type: string
  2856. roadshow.RsCalendarResearcher:
  2857. title: RsCalendarResearcher
  2858. type: object
  2859. properties:
  2860. ApproveTime:
  2861. description: 接受时间
  2862. type: string
  2863. format: datetime
  2864. CreateTime:
  2865. type: string
  2866. format: datetime
  2867. DeleteReason:
  2868. description: 删除理由
  2869. type: string
  2870. DeleteTime:
  2871. description: 删除时间
  2872. type: string
  2873. format: datetime
  2874. EndDate:
  2875. description: 结束日期
  2876. type: string
  2877. EndTime:
  2878. description: 结束时间
  2879. type: string
  2880. EndWeek:
  2881. description: 结束日期对应周
  2882. type: string
  2883. IsSynced:
  2884. description: 是否与上海同步 0:未同步 1:已同步
  2885. type: integer
  2886. format: int64
  2887. ModifyTime:
  2888. type: string
  2889. format: datetime
  2890. RefuseReason:
  2891. description: 拒绝理由
  2892. type: string
  2893. RefuseTime:
  2894. description: 拒绝时间
  2895. type: string
  2896. format: datetime
  2897. ResearcherId:
  2898. description: 研究员id
  2899. type: integer
  2900. format: int64
  2901. ResearcherName:
  2902. description: 研究员名称
  2903. type: string
  2904. ResearcherSort:
  2905. description: 研究员新增排序
  2906. type: integer
  2907. format: int64
  2908. RsCalendarId:
  2909. description: 日历活动id
  2910. type: integer
  2911. format: int64
  2912. RsCalendarResearcherId:
  2913. type: integer
  2914. format: int64
  2915. StartDate:
  2916. description: 开始日期
  2917. type: string
  2918. StartTime:
  2919. description: 开始时间
  2920. type: string
  2921. StartWeek:
  2922. description: 开始日期对应周
  2923. type: string
  2924. Status:
  2925. description: 状态:1:待接受,2:已接受,3:已拒绝,4:已删除,5:已撤回,6:已结束
  2926. type: integer
  2927. format: int64
  2928. rs.AcceptReq:
  2929. title: AcceptReq
  2930. type: object
  2931. rs.AddActivityReq:
  2932. title: AddActivityReq
  2933. type: object
  2934. rs.AddMattersReq:
  2935. title: AddMattersReq
  2936. type: object
  2937. rs.CalendarDetailResp:
  2938. title: CalendarDetailResp
  2939. type: object
  2940. rs.CalendarListResp:
  2941. title: CalendarListResp
  2942. type: object
  2943. rs.CompanyDetailView:
  2944. title: CompanyDetailView
  2945. type: object
  2946. rs.DeleteMattersReq:
  2947. title: DeleteMattersReq
  2948. type: object
  2949. rs.DeleteReq:
  2950. title: DeleteReq
  2951. type: object
  2952. rs.EditActivityReq:
  2953. title: EditActivityReq
  2954. type: object
  2955. rs.MattersListResp:
  2956. title: MattersListResp
  2957. type: object
  2958. rs.RefuseReq:
  2959. title: RefuseReq
  2960. type: object
  2961. rs.ResearcherGroup:
  2962. title: ResearcherGroup
  2963. type: object
  2964. rs.UpdateMattersReq:
  2965. title: UpdateMattersReq
  2966. type: object
  2967. seal.AddReq:
  2968. title: AddReq
  2969. type: object
  2970. properties:
  2971. CompanyName:
  2972. description: 客户名称,甲方名称,长度32位
  2973. type: string
  2974. ContractId:
  2975. description: 系统合同id
  2976. type: integer
  2977. format: int64
  2978. CreditCode:
  2979. description: 社会统一信用代码,长度64位
  2980. type: string
  2981. FileNum:
  2982. description: 文件份数
  2983. type: integer
  2984. format: int64
  2985. FileUrl:
  2986. description: 文件附件地址
  2987. type: string
  2988. Remark:
  2989. description: 备注,长度255位
  2990. type: string
  2991. SealType:
  2992. description: 加盖印章类型,枚举值:'合同章', '公章', '法人章';默认:合同章
  2993. type: string
  2994. ServiceType:
  2995. description: 业务类型,枚举值:'新签合同','续约合同','补充协议';默认:新签合同
  2996. type: string
  2997. Use:
  2998. description: 用印用途,枚举值:'销售合同', '渠道合同', '付款通知函', '招投标', '战略合作协议';默认:销售合同
  2999. type: string
  3000. UseCompanyName:
  3001. description: 实际适用方客户名称,长度32位
  3002. type: string
  3003. seal.AddSealResp:
  3004. title: AddSealResp
  3005. type: object
  3006. properties:
  3007. SealId:
  3008. description: 用印id
  3009. type: integer
  3010. format: int64
  3011. seal.ApprovedReq:
  3012. title: ApprovedReq
  3013. type: object
  3014. properties:
  3015. Remark:
  3016. description: 驳回理由
  3017. type: string
  3018. SealId:
  3019. description: 用印id
  3020. type: integer
  3021. format: int64
  3022. seal.CheckEditReq:
  3023. title: CheckEditReq
  3024. type: object
  3025. properties:
  3026. FileNum:
  3027. description: 文件份数
  3028. type: integer
  3029. format: int64
  3030. FileUrl:
  3031. description: 文件附件地址
  3032. type: string
  3033. Remark:
  3034. description: 备注,长度255位
  3035. type: string
  3036. SealId:
  3037. description: 用印单id
  3038. type: integer
  3039. format: int64
  3040. SealType:
  3041. description: 加盖印章类型,枚举值:'合同章', '公章', '法人章';默认:合同章
  3042. type: string
  3043. Use:
  3044. description: 用印用途,枚举值:'销售合同', '渠道合同', '付款通知函', '招投标', '战略合作协议';默认:销售合同
  3045. type: string
  3046. seal.EditReq:
  3047. title: EditReq
  3048. type: object
  3049. properties:
  3050. CompanyName:
  3051. description: 客户名称,甲方名称,长度32位
  3052. type: string
  3053. ContractId:
  3054. description: 系统合同id
  3055. type: integer
  3056. format: int64
  3057. CreditCode:
  3058. description: 社会统一信用代码,长度64位
  3059. type: string
  3060. FileNum:
  3061. description: 文件份数
  3062. type: integer
  3063. format: int64
  3064. FileUrl:
  3065. description: 文件附件地址
  3066. type: string
  3067. Remark:
  3068. description: 备注,长度255位
  3069. type: string
  3070. SealId:
  3071. description: 用印id
  3072. type: integer
  3073. format: int64
  3074. SealType:
  3075. description: 加盖印章类型,枚举值:'合同章', '公章', '法人章';默认:合同章
  3076. type: string
  3077. ServiceType:
  3078. description: 业务类型,枚举值:'新签合同','续约合同','补充协议';默认:新签合同
  3079. type: string
  3080. Use:
  3081. description: 用印用途,枚举值:'销售合同', '渠道合同', '付款通知函', '招投标', '战略合作协议';默认:销售合同
  3082. type: string
  3083. UseCompanyName:
  3084. description: 实际适用方客户名称,长度32位
  3085. type: string
  3086. seal.InvalidReq:
  3087. title: InvalidReq
  3088. type: object
  3089. properties:
  3090. IsInvalidContract:
  3091. description: 是否同步作废合同,默认:false
  3092. type: boolean
  3093. SealId:
  3094. description: 用印id
  3095. type: integer
  3096. format: int64
  3097. seal.OpButton:
  3098. title: OpButton
  3099. type: object
  3100. properties:
  3101. Approval:
  3102. description: 是否有审批权限
  3103. type: boolean
  3104. Cancel:
  3105. description: 是否有撤回用印权限
  3106. type: boolean
  3107. CheckEdit:
  3108. description: 审核状态下是否有编辑用印权限
  3109. type: boolean
  3110. Edit:
  3111. description: 是否有编辑用印权限
  3112. type: boolean
  3113. Invalid:
  3114. description: 是否有作废用印权限
  3115. type: boolean
  3116. UploadFile:
  3117. description: 是否有上传签回文件权限
  3118. type: boolean
  3119. seal.RejectReq:
  3120. title: RejectReq
  3121. type: object
  3122. properties:
  3123. Remark:
  3124. description: 备注字段
  3125. type: string
  3126. SealId:
  3127. description: 用印id
  3128. type: integer
  3129. format: int64
  3130. seal.Seal:
  3131. title: Seal
  3132. type: object
  3133. properties:
  3134. ApprovalRemark:
  3135. description: 审核备注
  3136. type: string
  3137. ApproveTime:
  3138. description: 审批时间
  3139. type: string
  3140. format: datetime
  3141. CheckBackFileTime:
  3142. description: 签回用印附件时间
  3143. type: string
  3144. format: datetime
  3145. CheckBackFileUrl:
  3146. description: 已签回的文件地址
  3147. type: string
  3148. Code:
  3149. description: 用印编号,长度32位
  3150. type: string
  3151. CompanyName:
  3152. description: 客户名称,甲方名称,长度32位
  3153. type: string
  3154. ContractId:
  3155. description: 系统合同id
  3156. type: integer
  3157. format: int64
  3158. CreateTime:
  3159. description: 添加时间
  3160. type: string
  3161. format: datetime
  3162. CreditCode:
  3163. description: 社会统一信用代码,长度64位
  3164. type: string
  3165. FileNum:
  3166. description: 文件附件份数
  3167. type: integer
  3168. format: int64
  3169. FileUrl:
  3170. description: 文件附件地址
  3171. type: string
  3172. InvalidTime:
  3173. description: 作废时间
  3174. type: string
  3175. format: datetime
  3176. ModifyTime:
  3177. description: 最近一次修改时间
  3178. type: string
  3179. format: datetime
  3180. Remark:
  3181. description: 补充内容,长度255位
  3182. type: string
  3183. SealId:
  3184. type: integer
  3185. format: int64
  3186. SealType:
  3187. description: 加盖印章类型,枚举值:'合同章', '公章', '法人章';默认:合同章
  3188. type: string
  3189. ServiceType:
  3190. description: 业务类型,枚举值:'新签合同','续约合同','补充协议';默认:新签合同
  3191. type: string
  3192. Status:
  3193. description: 合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废','已签回'
  3194. type: string
  3195. Use:
  3196. description: 用印用途,枚举值:'销售合同', '渠道合同', '付款通知函', '招投标', '战略合作协议';默认:销售合同
  3197. type: string
  3198. UseCompanyName:
  3199. description: 实际使用方客户名称,长度32位
  3200. type: string
  3201. UserId:
  3202. description: 申请人id
  3203. type: integer
  3204. format: int64
  3205. UserName:
  3206. description: 申请人名称
  3207. type: string
  3208. seal.SealApprovalListResp:
  3209. title: SealApprovalListResp
  3210. type: object
  3211. properties:
  3212. List:
  3213. description: 列表数据
  3214. type: array
  3215. items:
  3216. $ref: '#/definitions/contract_approval.SealApprovalList'
  3217. Paging:
  3218. $ref: '#/definitions/paging.PagingItem'
  3219. seal.SealDetailResp:
  3220. title: SealDetailResp
  3221. type: object
  3222. properties:
  3223. FlowNodeList:
  3224. description: 审批流
  3225. type: array
  3226. items:
  3227. $ref: '#/definitions/722.<nil>.0xc0007acf18'
  3228. OpButton:
  3229. $ref: '#/definitions/seal.OpButton'
  3230. description: 操作权限
  3231. SealDetail:
  3232. $ref: '#/definitions/seal.Seal'
  3233. description: 审批单详情
  3234. seal.UploadCheckBackFileReq:
  3235. title: UploadCheckBackFileReq
  3236. type: object
  3237. properties:
  3238. FileUrl:
  3239. description: 签回用印url
  3240. type: string
  3241. SealId:
  3242. description: 用印id
  3243. type: integer
  3244. format: int64
  3245. wechat.WxLoginResp:
  3246. title: WxLoginResp
  3247. type: object
  3248. properties:
  3249. AdminId:
  3250. type: integer
  3251. format: int64
  3252. Authorization:
  3253. type: string
  3254. Code:
  3255. type: integer
  3256. format: int64
  3257. Expires:
  3258. type: string
  3259. format: datetime
  3260. Headimgurl:
  3261. description: 用户头像
  3262. type: string
  3263. RealName:
  3264. description: 用户名称
  3265. type: string
  3266. UserInfo:
  3267. $ref: '#/definitions/admin.LoginResp'
  3268. description: 用户信息
  3269. tags:
  3270. - name: approval
  3271. description: |
  3272. 客户审批列表
  3273. - name: message
  3274. description: |
  3275. 消息模块
  3276. - name: company_contract
  3277. description: |
  3278. 客户合同模块
  3279. - name: contract
  3280. description: |
  3281. 合同模块
  3282. - name: contract_approval
  3283. description: |
  3284. 合同审批模块
  3285. - name: seal
  3286. description: |
  3287. SealCommon
  3288. 用印模块
  3289. - name: seal_approval
  3290. description: |
  3291. SealApprovalCommon 用印审批模块
  3292. - name: resource
  3293. description: |
  3294. 资源管理-图片上传,合同上传等
  3295. - name: roadshow
  3296. description: |
  3297. 日历