url.js 104 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726
  1. import common from './common'
  2. const ctx = common.ctx //'/finapi'// common.ctx;// "/api"//测试环境 http://192.168.1.250:8890
  3. const ctxForm = common.ctxForm //'/ms'//common.ctxForm;//"/ms"
  4. const urls = {
  5. handshake: ctx + '/auth/handshake',
  6. login: ctx + '/auth/token',
  7. loginMOA: ctx + '/smap/auth/token',
  8. getMenu: ctx + '/auth/routers',
  9. cleantoken: ctx + '/auth/cleantoken',
  10. menu: {
  11. getList: ctx + '/routers'
  12. },
  13. //新需求申请单工作流接口
  14. formList: {
  15. startWork: ctxForm + '/startProcess', //开始工作流
  16. startWorkList: ctxForm + '/batchStartProcess', //开始工作流多人
  17. nextWork: ctxForm + '/complateTask', //工作流next流转
  18. getWorkId: ctxForm + '/getRunningProcessInstance', // 获取工作流任务id
  19. transferTask: ctxForm + '/process/transferTask/',//转派工作流接口
  20. todoTask: ctxForm + '/todoTask',
  21. getCommentsByProcessId: ctxForm + '/his/getHistoricTaskInstanceList',
  22. getCommentsByProcessIds:ctxForm + '/getCommentsByProcessId/',
  23. getReadList:ctxForm+'/complateReadTask',
  24. getLastName:ctxForm+'/lastMan',
  25. getNewTransferTask:ctxForm+"/process/transferTaskMuti/",
  26. getQueryMultiTaskId:ctxForm + "/queryMultiTaskId",
  27. getComplateLastMan:ctxForm + "/complateLastMan"
  28. },
  29. distribute: {
  30. sendMsg: ctx + '/api/distribute/create', //创建分发
  31. findMyComment: ctx + '/api/comment/findMyComment', //查询
  32. findMyNotComment: ctx + '/api/comment/findMyNotComment', //(待阅)
  33. findMyHaveComment: ctx + '/api/comment/findMyHaveComment', //(已阅)
  34. find: ctx + '/api/distribute/find', //我的分发
  35. update: ctx + '/api/comment/update', //点击查阅
  36. findCommnetDetails: ctx + '/api/comment/findCommnetDetails' //评阅详情
  37. },
  38. thawQuota: '/api/frozenQuotaService/thawQuota',
  39. message: {
  40. getList: ctx + '/api/notification/findNotification', //查询列表
  41. edit: ctx + '/api/notification/updateNotification', //编辑
  42. editAll: ctx + '/api/notification/updateALLNotification' //编辑所有
  43. },
  44. document: {
  45. upload: ctx + '/api/document/upload',
  46. download: ctx + '/api/document/download',
  47. find: ctx + '/api/document/fileInformation',
  48. parsePDF: ctx + '/api/document/parsePDFAsMatrix'
  49. },
  50. EIfile: {
  51. add: ctx + '/api/financeFileCode/create',
  52. del: ctx + '/api/financeFileCode/update'
  53. },
  54. email: {
  55. getList: ctx + '/api/messageEmailConfigService/find',
  56. getById: ctx + '/api/messageEmailConfigService/findById',
  57. del: ctx + '/api/messageEmailConfigService/delete',
  58. edit: ctx + '/api/messageEmailConfigService/update', //编辑
  59. add: ctx + '/api/messageEmailConfigService/create', //增加
  60. all: ctx + '/api/messageEmailConfigService/find',
  61. test: ctx + '/api/messageEmailConfigService/sendTestEmail'
  62. },
  63. schedule: {
  64. find: ctx + '/api/quartzJob/find',
  65. findByName: ctx + '/api/quartzJob/findByName',
  66. delete: ctx + '/api/quartzJob/delete',
  67. update: ctx + '/api/quartzJob/update', //编辑
  68. create: ctx + '/api/quartzJob/create', //增加
  69. findAll: ctx + '/api/quartzJob/findAll',
  70. triggerNow: ctx + '/api/quartzJob/triggerNow',
  71. pause: ctx + '/api/quartzJob/pause',
  72. resume: ctx + '/api/quartzJob/resume',
  73. unschedule: ctx + '/api/quartzJob/unschedule',
  74. startAll: ctx + '/api/quartzJob/startAll',
  75. stopAll: ctx + '/api/quartzJob/stopAll'
  76. },
  77. workflowdef: {
  78. getList: ctxForm + '/getMadelByPage',
  79. getById: ctxForm + '/getModelById',
  80. copyById: ctxForm + '/copyModelById',
  81. edit: ctxForm + '/user/update.do', //编辑
  82. add: ctxForm + '/create', //增加
  83. del: ctxForm + '/deleteModel',
  84. deploy: ctxForm + '/deploy',
  85. modeler: ctxForm + '/modeler.html?modelId=',
  86. deleteModelById: ctxForm + '/deleteModelById',
  87. getruns: ctxForm + '/getRunningProcessInstance',
  88. getHistoricTaskInstanceList: ctxForm + '/his/getHistoricTaskInstanceList' //获取表格评分阶段
  89. },
  90. //流程短信接收人管理
  91. processSendMessage: {
  92. find: ctx + '/api/processSendMessage/find',//页面初始化查询
  93. findByProcesstype: ctx + '/api/processSendMessage/findByProcesstype',//编辑时查询
  94. add: ctx + '/api/processSendMessage/create',//增加
  95. update: ctx + '/api/processSendMessage/update',//编辑
  96. delete: ctx + '/api/processSendMessage/delete',//编辑
  97. findAllUser: ctx + '/api/processSendMessage/findAllUser',//查找所有用户
  98. },
  99. //操作代码配置管理
  100. productCodeConfiguration: {
  101. findAll: ctx + '/api/processSendMessage/findAll',//页面初始化查询
  102. find: ctx + '/api/processSendMessage/findCode',//编辑时查询
  103. add: ctx + '/api/processSendMessage/createCode',//增加
  104. update: ctx + '/api/processSendMessage/updateCode',//编辑
  105. delete: ctx + '/api/processSendMessage/deleteCode',//逻辑删除
  106. },
  107. activeti: {
  108. //getRole:ctxForm+'/permission/getFirstUserTask',//启动时过去角色
  109. getRole: ctx + '/api/processService/getNextTaskGroup', //获取审核人
  110. getUsersByRoleId: ctx + '/api/userService/getUsersByRoleId', //获取用户
  111. getUsersByRoleIds: ctx + '/api/userService/getUsersByRoleIds', //获取用户
  112. getTodoTask: ctx + '/api/processService/getTodoTask', //获取待办评价
  113. getCommentsByTaskId: ctx + '/api/processService/getCommentsByTaskId', //流程taskid获取历史评论
  114. getCommentsByProcinstid: ctx + '/api/processService/getCommentsByProcinstid', //流程实例id获取历史评论
  115. // getCommentsByProcinstid:ctx+'/api/processService/getCommentsByProcinstids',//流程实例id获取历史评论 二次审核修改
  116. getProcinstid: ctx + '/api/programmeService/getProcinstidHistoryByProgrammecode', //二次审核 先调这个
  117. finish: ctx + '/api/processService/findFinishedTaskInstances', //获取已办
  118. getDoneTask: ctx + '/api/processService/getDoneTask', //我的已办
  119. getIInitiatedTask: ctx + '/api/processService/getIInitiatedTask', //我的在途申请
  120. recallProcess: ctx + '/api/${service}/recallProcess',
  121. getMessageReceiveList: ctx + '/api/processService/getMessageReceiveList', //获取流程短信接收人
  122. },
  123. leave: {
  124. start: '/startProcess', //发起
  125. todoTask: '/todoTask',
  126. complateTask: '/complateTask'
  127. },
  128. processinst: {
  129. //流程列表
  130. getList: ctxForm + '/getProcessIntanceByPage',
  131. view: ctxForm + '/process-definition',
  132. webPage: ctxForm + '/form/getFormKey',
  133. getUserTaskList: ctxForm + '/permission/getUserTaskList',
  134. loadSingleBpmn: ctxForm + '/permission/loadSingleBpmn',
  135. setPermission: ctxForm + '/permission/setPermission',
  136. showDiagramByPi: ctxForm + '/showDiagramByPi',
  137. showDiagramByTask: ctxForm + '/showDiagramByTask',
  138. // 导出流程
  139. getExportFile: ctxForm + '/exportBPMNByProDefinitionId',
  140. // 导入流程
  141. exportFile: ctxForm + '/importBPMN',
  142. /** 重发待办 */
  143. // 根据流程定义key获取流程环节权限列表
  144. getUserTask: ctxForm + '/permission/getUserTask',
  145. // 设置流程环节权限
  146. setPermission1: ctxForm + '/setTaskUser',
  147. /**召回流程 */
  148. recall: ctx + '/api/processRecallService/recall'
  149. },
  150. formManag: {
  151. //
  152. getList: ctxForm + '/form/getList',
  153. getById: ctxForm + '/form/getDataById',
  154. edit: ctxForm + '/form/edit', //编辑
  155. add: ctxForm + '/form/add', //增加
  156. del: ctxForm + '/deleteModel',
  157. getByCode: ctxForm + '/form/getDataByCode',
  158. idCode: ctxForm + '/form/getStartFormKey/' //要加id
  159. },
  160. menuManag: {
  161. //菜单管理
  162. getList: ctx + '/api/router/find', //查询列表
  163. getById: ctx + '/api/router/findById', //id查询
  164. del: ctx + '/api/router/delete', //停用
  165. edit: ctx + '/api/router/update', //编辑
  166. add: ctx + '/api/router/create', //增加
  167. // findTree: ctx + "/api/router/findTree",
  168. findAll: ctx + '/api/router/findAll', //查找路由所有
  169. findMobileTree: ctx + '/api/router/findMobileTree', //查找短信配置
  170. findByParentId: ctx + '/api/router/findByParentId', //
  171. findAuthorized: ctx + '/api/router/findAuthorized' //
  172. },
  173. roleManag: {
  174. //角色管理
  175. // getList: ctx + '/api/role/find', //查询列表
  176. getList: ctx + '/sysmgr/sys/settings/sysRoleFlowInfos/queryRoleFlow', //查询列表
  177. getById: ctx + '/api/role/findById', //id查询
  178. del: ctx + '/api/role/delete', //停用
  179. edit: ctx + '/api/role/update', //编辑
  180. add: ctx + '/api/role/create', //增加
  181. addAprove: ctx + '/api/role/addProgrammeApproval', //发起审核
  182. aprove: ctx + '/api/role/approveProcess', //审核
  183. findAll: ctx + '/api/role/findAll',
  184. updatePermission: ctx + '/api/role/updatePermission', //
  185. findResourcePermission: ctx + '/api/role/findResourcePermission' //
  186. },
  187. selectList: {
  188. //下拉框的数据
  189. menu: ctx + '/api/router/findTree' //上级路由
  190. },
  191. resourceManag: {
  192. getList: ctx + '/api/resource/find', //查询列表
  193. getById: ctx + '/api/resource/findById', //id查询
  194. del: ctx + '/api/resource/delete', //停用
  195. edit: ctx + '/api/resource/update', //编辑
  196. add: ctx + '/api/resource/create', //增加
  197. findAll: ctx + '/api/resource/findAllAvailable', //
  198. findAuthor: ctx + '/api/resource/findAuthorizedByUserId', //
  199. findByRouterId: ctx + '/api/resource/findByRouterId',
  200. findPermissionByUserId: ctx + '/api/resource/findPermissionByUserId',
  201. findPermission: ctx + '/api/resource/findPermission',
  202. findPermissionCodeByUserId: ctx + '/api/resource/findPermissionCodeByUserId'
  203. },
  204. userManag: {
  205. //
  206. getList: ctx + '/api/user/find', //查询列表
  207. findByOrganizationIdList: ctx + '/api/user/findByOrganizationIdList', //查询列表
  208. getById: ctx + '/api/user/findById', //id查询
  209. del: ctx + '/api/user/delete', //停用
  210. edit: ctx + '/api/user/update', //编辑
  211. add: ctx + '/api/user/create', //增加
  212. updateCurrentUser: ctx + '/api/user/updateCurrentUser',
  213. findByLoginName: ctx + '/api/user/findByLoginName', //
  214. updatePassword: ctx + '/api/user/updatePassword', //重置密码接口
  215. updateCurrentPassword: ctx + '/api/user/updateCurrentPassword', //修改自己密码接口
  216. me: ctx + '/api/user/me', //
  217. addAprove: ctx + '/api/user/addProgrammeApproval', //发起审核
  218. aprove: ctx + '/api/user/approveProcess' //审核
  219. },
  220. organizationManag: {
  221. //
  222. getList: ctx + '/api/organization/find', //查询列表
  223. getById: ctx + '/api/organization/findById', //id查询
  224. del: ctx + '/api/organization/delete', //停用
  225. edit: ctx + '/api/organization/update', //编辑
  226. add: ctx + '/api/organization/create', //增加
  227. findAll: ctx + '/api/organization/findAll',
  228. findTree: ctx + '/api/organization/findTree' //
  229. },
  230. financialData: {
  231. // 参考基准利率
  232. findLatest1: ctx + '/api/windDepositRate/findLatest', //存款存款利率
  233. findLatest2: ctx + '/api/windShibor/findLatest', //上海银行间同业拆放利率
  234. getName: ctx + '/api/bankAccountService/getShortName', //资金转出账户 列表
  235. findByCode: ctx + '/api/dictionaryService/findByCode' //资金转出账户 列表
  236. },
  237. bankAccount: {
  238. // 活期类账户
  239. getList: ctx + '/api/bankAccount/find', //查询列表
  240. sync: ctx + '/api/bankAccount/sync', //id查询
  241. insert: ctx+ '/api/bankAccount/insert',
  242. find: ctx+ '/api/bankAccount/findById',
  243. update: ctx+ '/api/bankAccount/update'
  244. },
  245. entrusterBankAccount: {
  246. // 委托方资金账户
  247. getList: ctx + '/api/entrusterBankAccountService/find', //查询列表
  248. getListAll: ctx + '/api/entrusterBankAccount/findAll', //查询列表
  249. sync: ctx + '/api/entrusterBankAccount/sync', //id查询
  250. getById: ctx + '/api/entrusterBankAccount/findById',
  251. getNewSize: ctx + '/api/entrusterBankAccountService/flushEntrusterBankAccount',
  252. getNewAccout: ctx + '/api/entrusterBankAccountService/newEntrusterBankAccount',
  253. getNewAccout2: ctx + '/api/commissionFrameworkAgreementService/newAgreementList',
  254. changeName: ctx + '/api/entrusterBankAccountService/update',
  255. changeName2: ctx + '/api/commissionFrameworkAgreementService/updateShortName'
  256. },
  257. systemLog: {
  258. getList: ctx + '/api/systemLog/find', //查询列表
  259. getListBusuness: ctx + '/api/universalityBusunessService/find', //通用交易接口调用结果页面查询列表
  260. update: ctx + '/api/universalityBusunessService/update', //通用交易接口调用结果页面修改状态
  261. },
  262. counterparty: {
  263. // 交易对手
  264. getList: ctx + '/api/counterparty/find', //查询列表
  265. getById: ctx + '/api/counterparty/findById', //id查询
  266. del: ctx + '/api/counterparty/delete', //停用
  267. edit: ctx + '/api/counterparty/update', //编辑
  268. add: ctx + '/api/counterparty/create', //增加
  269. findAll: ctx + '/api/counterparty/findAll',
  270. findAllBankaccounts: ctx + '/api/counterparty/findAllBankaccounts'//资金转出、入行(账户)(最新)
  271. },
  272. counterpartyContact: {
  273. // 联络人管理
  274. getList: ctx + '/api/counterpartyContact/find', //查询列表
  275. getById: ctx + '/api/counterpartyContact/findById', //id查询
  276. del: ctx + '/api/counterpartyContact/delete', //停用
  277. edit: ctx + '/api/counterpartyContact/update', //编辑
  278. add: ctx + '/api/counterpartyContact/create', //增加
  279. findAll: ctx + '/api/counterpartyContact/findAll'
  280. },
  281. dictionary: {
  282. // 数据字典
  283. getList: ctx + '/api/dictionary/find', //查询全部列表
  284. getList1: ctx + '/api/dictionary/findProcessType', //查询模型名称
  285. getList2: ctx + '/api/dictionary/findProcessName', //查询模型名称
  286. // getList: ctx + '/api/dictionary/findEffect', //根据状态查询列表
  287. getById: ctx + '/api/dictionary/findById', //id查询
  288. del: ctx + '/api/dictionary/delete', //停用
  289. edit: ctx + '/api/dictionary/update', //编辑
  290. add: ctx + '/api/dictionary/create', //增加
  291. findAll: ctx + '/api/dictionary/findAll',
  292. findTree: ctx + '/api/dictionary/findTree', //
  293. findLatest3: ctx + '/api/dictionary/findshibor1', //参考银行间质押式回购市场利率(%)
  294. },
  295. systemWarnning: {
  296. // 日志系统个报错
  297. getList: ctx + '/api/systemWarnning/find' //查询列表 旧的
  298. // getList: ctx + "/api/systemWarnning/findById", //查询列表 冯璐修改后
  299. },
  300. systemPeripheral: {
  301. getList: ctx + '/api/sendLogsIcbcService/find', //查询列表 旧的
  302. findByid: ctx + '/api/sendLogsIcbcService/findByid' //{id:1 日志数据的id}
  303. },
  304. superviseQuota: {
  305. //额度管理
  306. getList1: ctx + '/api/superviseQuota/getSuperviseQuota', //监管额度占用查询
  307. checkQuota: ctx + '/api/superviseQuota/checkQuota', //接口校验
  308. getList2: ctx + '/api/creditGrantingQuota/getSuperviseQuota', //授信额度占用查询z
  309. getList_new: ctx + '/api/counterCreditGrantingQuota/findSuperviseQuotaByType' //授信额度占用查询 带子公司得
  310. },
  311. pledgeBonds: {
  312. // 质押券价值监控
  313. getList: ctx + '/api/pledgeProductAccountService/monitorPledge', //查询列表
  314. getById: ctx + '/api/pledgeProductAccountService/queryPledgeDetail', //id查询
  315. findByTradeDate: ctx + '/api/windBond/findByTradeDate' //获取中债估值
  316. },
  317. groupLines: {
  318. // 集团额度占用情况
  319. getList: ctx + '/api/counterPartyBlocService/findAll', //查询列表
  320. getList1: ctx + '/api/counterPartyBlocService/find', //查询列表
  321. edit: ctx + '/api/counterPartyBlocService/update' //修改
  322. // getById: ctx + "/api/pledgeProductAccountService/queryPledgeDetail", //id查询
  323. },
  324. specialPurpose: {
  325. // 特殊目的载体占比监控
  326. getList: ctx + '/api/specialPurposeEntityService/findSupervise' //查询列表
  327. },
  328. quotaOccupationWatch: {
  329. // 监管额度占用情况监控
  330. getList: ctx + '/api/superviseEmployQuotaService/getSuperviseQuota' //查询列表
  331. },
  332. credititemBank: {
  333. // 授信题库
  334. getByTreeId: ctx + '/api/creditAssessmentSubjects/find', //id查询
  335. getById: ctx + '/api/creditAssessmentSubjects/findById', //id查询
  336. del: ctx + '/api/dictionary/delete', //停用
  337. edit: ctx + '/api/creditAssessmentMenu/update', //编辑
  338. add: ctx + '/api/creditAssessmentMenu/create', //增加
  339. edit1: ctx + '/api/creditAssessmentSubjects/update', //编辑
  340. add1: ctx + '/api/creditAssessmentSubjects/create',
  341. findTree: ctx + '/api/creditAssessmentMenu/findTree' //
  342. },
  343. counterPartyCredits: {
  344. // 交易对手评定
  345. getList: ctx + '/api/counterPartyCredits/find', //查询列表
  346. getById: ctx + '/api/creditAssessmentDetails/find', //id查询
  347. getById2: ctx + '/api/counterPartyCredits/findById', //id查其他信息
  348. add: ctx + '/api/creditAssessmentDetails/create', //增加
  349. edit: ctx + '/api/creditAssessmentDetails/update', //
  350. addAprove: ctx + '/api/counterPartyCredits/addProgrammeApproval', //添加审核
  351. getPrade: ctx + '/api/calculationFormula/caculateScoreByCounterpartyIdAndSubjectId', //根据交易对手查初评分
  352. getLimit: ctx + '/api/calculationFormula/creditBySubjectId', //根据等级查授信额度
  353. findList: ctx + '/api/counterpartyService/findList', //证券公司 设置合并监管评级子公司名单
  354. preservation: ctx + '/api/creditAssessmentDetails/preservation', //保存数据
  355. batchAudit: ctx + '/api/creditAssessmentDetails/addSubmission' //批量审批
  356. },
  357. counterPartyCreditsAprove: {
  358. aprove: ctx + '/api/counterPartyCredits/approveProcess' //增加
  359. },
  360. creditassessmentstandards: {
  361. // 授信规则标准列表
  362. // getList: ctx + "/api/creditassessmentstandards/find", //查询列表
  363. getById: ctx + '/api/industryregulationlimits/find', //id查询
  364. add: ctx + '/api/creditAssessmentsModule/create', //增加
  365. findAll: ctx + '/api/creditassessmentstandards/findAll',
  366. keep: ctx + '/api/industryregulationlimits/create',
  367. keep2: ctx + '/api/blocWhiteListService/create',
  368. getById2: ctx + '/api/creditAssessmentsModule/find',
  369. aprove: ctx + '/api/creditassessmentstandards/addProgrammeApproval',
  370. getById3: ctx + '/api/blocWhiteListService/find' //規則列表查詢集团监控额度标准和白名单
  371. },
  372. creditassessmentstandardsApp: {
  373. aprove: ctx + '/api/creditassessmentstandards/approveProcess'
  374. },
  375. priceInquiry: {
  376. // 询价管理
  377. getListBF: ctx + '/api/priceInquiry/findBankFinancing', //银行理财查询
  378. getListID: ctx + '/api/priceInquiry/findInterBankDeposit', //同业查询列表
  379. getListEI: ctx + '/api/priceInquiry/findEntrusterBankFinancing', //委托投资查询列表
  380. getListGM: ctx + '/api/priceInquiryService/findBlocBankFinancing', //集团查询列表
  381. getListPub: ctx + '/api/priceInquiryService/find', //通用询价
  382. getById: ctx + '/api/priceInquiry/findById', //id查询
  383. getByPub: ctx + '/api/priceInquiryService/findByPriceInquiryId', //通用id查询
  384. addBF: ctx + '/api/priceInquiry/createBankFinancing', //增加
  385. addID: ctx + '/api/priceInquiry/createInterBankDeposit', //增加
  386. addEI: ctx + '/api/priceInquiry/createEntrusterBankFinancing', //增加
  387. addGM: ctx + '/api/priceInquiryService/createBlocBankFinancing', //集团增加
  388. addPub: ctx + '/api/priceInquiryService/createGeneralInquiry', //通用新增
  389. editPub: ctx + '/api/priceInquiryService/updateInquiry ', //通用修改
  390. sendEmail: ctx + '/api/priceInquiry/sendEmail', //
  391. sendPriceEmail: ctx + '/api/priceInquiry/sendPriceEmail', //
  392. sendSms: ctx + '/api/priceInquiry/sendSms',
  393. viewById: ctx + '/api/priceInquiry/viewById',
  394. viewById2: ctx + '/api/priceQuoteIBD/findById',
  395. exportSummary: ctx + '/api/priceInquiry/exportSummary',
  396. findLatest: ctx + '/api/priceInquiry/findLatest',
  397. keep: ctx + '/api/priceInquiryService/save' //保存
  398. // /api/priceQuoteFinance/find
  399. // /api/priceQuoteIBD/find
  400. },
  401. priceQuoteFinance: {
  402. //报价
  403. getById: ctx + '/api/priceQuoteFinance/findAll', //id查询
  404. getById2: ctx + '/api/priceQuoteIBD/findAll', //id查询
  405. getByidEd: ctx + '/api/priceQuoteFinance/findAllQuoted', //id查询
  406. getByidEd2: ctx + '/api/priceQuoteIBD/findAllQuoted', //id查询
  407. exportSummary: ctx + '/api/priceInquiry/exportSummary' //导出报价
  408. },
  409. inquiryTemplat: {
  410. //模板管理
  411. getList: ctx + '/api/priceInquiryTemplateService/findAll', //查询列表
  412. getById: ctx + '/api/priceInquiryTemplateService/findById', //id查询
  413. del: ctx + '/api/priceInquiryTemplateService/delete', //停用
  414. edit: ctx + '/api/priceInquiryTemplateService/update', //编辑
  415. add: ctx + '/api/priceInquiryTemplateService/create', //增加
  416. byType: ctx + '/api/priceInquiryTemplateService/findByType'
  417. },
  418. BFbusinessPlanManag: {
  419. //业务方案管理
  420. getList: ctx + '/api/programmeService/find', //查询列表
  421. getById: ctx + '/api/programmeService/getByid', //id查询
  422. getByIdList: ctx + '/api/productService/getProductPageByProgrammeId',
  423. del: ctx + '/api/productService/delete', //停用
  424. edit: ctx + '/api/programmeService/edit', //编辑
  425. add: ctx + '/api/programmeService/create', //增加
  426. getProgrammeSerialNo: ctx + '/api/programmeService/getProgrammeSerialNo', //获取方案编号
  427. getByid2: ctx + '/api/productService/findByproductid', //获取产品详情
  428. edit2: ctx + '/api/productService/update', //编辑产品
  429. sizeTrue: ctx + '/api/programmeService/updateQuotaCheck', //额度校验
  430. // sizeTrue: ctx + '/api/investmentRiskClassifyService/getSurplusQuota', //额度校验
  431. aprove: ctx + '/api/programmeService/addProgrammeApproval', //审核
  432. editResolution: ctx + '/api/programmeService/update', //修改上会状态
  433. findMeetinginfo: ctx + '/api/programmeService/findMeetinginfo', //查会议纪要和上会状态
  434. parseFile: ctx + '/api/programmeService/saveMeetinginfo', //上传会议纪要
  435. delMeetingFile: ctx + '/api/programmeService/deleteMeetinginfo', //删除会议纪要
  436. submitNext: ctx + '/api/programmeService/submitNext' //跟新生成审批表状态
  437. },
  438. BFbusinessPlanApproval: {
  439. aprove: ctx + '/api/programmeService/approveProcess' //流程
  440. },
  441. BFbusinessOperation: {
  442. getList: ctx + '/api/programmeBusiService/find', //查询列表
  443. getById: ctx + '/api/productBusiService/getProductPageByProgrammeId', //id查询
  444. getByIdList: ctx + '/api/programmeBusiService/getProductPageByProgrammeId',
  445. del: ctx + '/api/programmeBusiService/delete', //停用
  446. edit: ctx + '/api/productBusiService/update', //编辑
  447. add: ctx + '/api/programmeBusiService/create', //增加
  448. findByproductid: ctx + '/api/productBusiService/findByproductid', //获取方案编号
  449. aprove: ctx + '/api/programmeBusiService/addProgrammeApproval' //审核
  450. },
  451. businessOperationApproval: {
  452. aprove: ctx + '/api/programmeBusiService/approveProcess' //流程
  453. },
  454. BFaccountManag: {
  455. //台账
  456. getList: ctx + '/api/productAccountService/find', //查询列表
  457. getById: ctx + '/api/productAccountService/findByproductid', //id查询
  458. getByIdSon: ctx + '/api/productAccountService/findLedgerdetail', //id查询
  459. getByIdList: ctx + '/api/productAccountService/getProductPageByProgrammeId',
  460. edit: ctx + '/api/productAccountService/update', //编辑
  461. // productAccountService/update
  462. aprove: ctx + '/api/programmeAccountService/addProgrammeApproval', //审核
  463. history: ctx + '/api/productAccountService/findHistorydetail'
  464. },
  465. BFaccountManagApproval: {
  466. aprove: ctx + '/api/programmeAccountService/approveProcess' //审核
  467. },
  468. BFfindLedgerCount: {
  469. getList: ctx + '/api/productAccountService/findLedgerCount' //查询列表
  470. },
  471. // ILbusinessPlanManag: {
  472. // //同业拆借
  473. // getList: ctx + '/api/borrowProgrammeService/find', //查询列表
  474. // getById: ctx + '/api/borrowProgrammeService/getByid', //id查询
  475. // getByIdList: ctx + '/api/borrowProductService/getProductPageByProgrammeId',
  476. // del: ctx + '/api/borrowProductService/delete', //停用
  477. // edit: ctx + '/api/borrowProgrammeService/edit', //编辑
  478. // add: ctx + '/api/borrowProgrammeService/create', //增加
  479. // getProgrammeSerialNo: ctx + '/api/borrowProgrammeService/getProgrammeSerialNo', //获取方案编号
  480. // getByid2: ctx + '/api/borrowProductService/findByproductid', //获取产品详情
  481. // edit2: ctx + '/api/borrowProductService/update', //编辑产品
  482. // sizeTrue: ctx + '/api/borrowProgrammeService/updateQuotaCheck', //额度校验
  483. // aprove: ctx + '/api/borrowProgrammeService/addProgrammeApproval', //审核
  484. // editResolution: ctx + '/api/borrowProgrammeService/update', //修改上会状态
  485. // findMeetinginfo: ctx + '/api/borrowProgrammeService/findMeetinginfo', //查会议纪要和上会状态
  486. // parseFile: ctx + '/api/borrowProgrammeService/saveMeetinginfo', //上传会议纪要
  487. // delMeetingFile: ctx + '/api/borrowProgrammeService/deleteMeetinginfo', //删除会议
  488. // submitNext: ctx + '/api/borrowProgrammeService/submitNext', //跟新生成审批表状态
  489. // checkOnceRule: ctx + '/api/borrowProgrammeService/checkOnceRule' //单次校验接口 新增数据后 下一步前先校验下 再去定是否进行下一步
  490. // },
  491. ILbusinessPlanApproval: {
  492. aprove: ctx + '/api/borrowProgrammeService/approveProcess' //流程
  493. },
  494. ILbusinessOperation: {
  495. //业务操作
  496. getList: ctx + '/api/borrowProgrammeBusiService/find', //查询列表
  497. getByIdList: ctx + '/api/borrowProgrammeBusiService/getProductPageByProgrammeId',
  498. del: ctx + '/api/borrowProgrammeBusiService/delete', //停用
  499. add: ctx + '/api/borrowProgrammeBusiService/create', //增加
  500. aprove: ctx + '/api/borrowProgrammeBusiService/addProgrammeApproval', //审核
  501. findByproductid: ctx + '/api/borrowProductBusiService/findByproductid', //获取方案编号
  502. getById: ctx + '/api/borrowProductBusiService/getProductPageByProgrammeId', //id查询
  503. edit: ctx + '/api/borrowProductBusiService/update', //编辑
  504. getPDF: ctx + '/api/borrowProgrammeService/parse', //读取pdf
  505. isTrueCheckFile: ctx + '/api/borrowProductBusiService/isTrueCheckFile' //检验数据 同业拆借-业务操作-编辑-上传文件后
  506. },
  507. ILbusinessOperationApproval: {
  508. aprove: ctx + '/api/borrowProgrammeBusiService/approveProcess' //流程
  509. },
  510. ILaccountManag: {
  511. //台账
  512. getList: ctx + '/api/borrowProductAccountService/find', //查询列表
  513. getById: ctx + '/api/borrowProductAccountService/findByproductid', //id查询
  514. getByIdList: ctx + '/api/borrowProductAccountService/getProductPageByProgrammeId',
  515. edit: ctx + '/api/borrowProductAccountService/update', //编辑
  516. aprove: ctx + '/api/borrowProgrammeAccountService/addProgrammeApproval' //审核
  517. },
  518. ILaccountManagApproval: {
  519. aprove: ctx + '/api/borrowProgrammeAccountService/approveProcess' //审核
  520. },
  521. ILstatisticsOfAccount: {
  522. getList: 'api/borrowProductAccountService/findLedgerCount'
  523. },
  524. BBbusinessPlanManag: {
  525. //债券业务
  526. getList: ctx + '/api/bondProgrammeService/find', //查询列表
  527. getById: ctx + '/api/bondProgrammeService/getByid', //id查询
  528. getByIdList: ctx + '/api/bondProductService/getProductPageByProgrammeId',
  529. del: ctx + '/api/bondProductService/delete', //停用
  530. edit: ctx + '/api/bondProgrammeService/edit', //编辑
  531. add: ctx + '/api/bondProgrammeService/create', //增加
  532. getProgrammeSerialNo: ctx + '/api/bondProgrammeService/getProgrammeSerialNo', //获取方案编号
  533. getByid2: ctx + '/api/bondProductService/findByproductid', //获取产品详情
  534. edit2: ctx + '/api/bondProductService/update', //编辑产品
  535. sizeTrue: ctx + '/api/bondProgrammeService/updateQuotaCheck', //额度校验
  536. aprove: ctx + '/api/bondProgrammeService/addProgrammeApproval', //审核
  537. editResolution: ctx + '/api/bondProgrammeService/update', //修改上会状态
  538. findMeetinginfo: ctx + '/api/bondProgrammeService/findMeetinginfo', //查会议纪要和上会状态
  539. parseFile: ctx + '/api/bondProgrammeService/saveMeetinginfo', //上传会议
  540. delMeetingFile: ctx + '/api/bondProgrammeService/deleteMeetinginfo', //删除会议
  541. submitNext: ctx + '/api/bondProgrammeService/submitNext' //跟新生成审批表状态
  542. },
  543. BBbusinessPlanApproval: {
  544. aprove: ctx + '/api/bondProgrammeService/approveProcess' //流程
  545. },
  546. BBbusinessOperation: {
  547. //业务操作
  548. getList: ctx + '/api/bondProgrammeBusiService/find', //查询列表
  549. getById: ctx + '/api/bondProductBusiService/getProductPageByProgrammeId', //id查询
  550. getByIdList: ctx + '/api/bondProgrammeService/getProductPageByProgrammeId',
  551. del: ctx + '/api/bondProgrammeService/delete', //停用
  552. edit: ctx + '/api/bondProductBusiService/update', //编辑
  553. add: ctx + '/api/bondProgrammeService/create', //增加
  554. findByproductid: ctx + '/api/bondProductBusiService/findByproductid', //获取方案编号
  555. aprove: ctx + '/api/bondProgrammeBusiService/addProgrammeApproval' //审核
  556. },
  557. BBbusinessOperationApproval: {
  558. aprove: ctx + '/api/bondProgrammeBusiService/approveProcess' //流程
  559. },
  560. BBaccountManag: {
  561. //台账
  562. getList: ctx + '/api/bondProductAccountService/find', //查询列表
  563. getById: ctx + '/api/bondProductAccountService/findByproductid', //id查询
  564. getByIdList: ctx + '/api/bondProgrammeAccountService/getProductPageByProgrammeId',
  565. edit: ctx + '/api/bondProductAccountService/update', //编辑
  566. aprove: ctx + '/api/bondProgrammeAccountService/addProgrammeApproval' //审核
  567. },
  568. BBaccountManagApproval: {
  569. aprove: ctx + '/api/bondProgrammeAccountService/approveProcess' //审核
  570. },
  571. // IDbusinessPlanManag: {
  572. // //同业存款
  573. // getList: ctx + '/api/depositProgrammeService/find', //查询列表
  574. // getById: ctx + '/api/depositProgrammeService/getByid', //id查询
  575. // getByIdList: ctx + '/api/depositProductService/getProductPageByProgrammeId',
  576. // del: ctx + '/api/depositProductService/delete', //停用
  577. // edit: ctx + '/api/depositProgrammeService/edit', //编辑
  578. // add: ctx + '/api/depositProgrammeService/create', //增加
  579. // getProgrammeSerialNo: ctx + '/api/depositProgrammeService/getProgrammeSerialNo', //获取方案编号
  580. // getByid2: ctx + '/api/depositProductService/findByproductid', //获取产品详情
  581. // edit2: ctx + '/api/depositProductService/update', //编辑产品
  582. // sizeTrue: ctx + '/api/depositProgrammeService/updateQuotaCheck', //额度校验
  583. // aprove: ctx + '/api/depositProgrammeService/addProgrammeApproval', //审核
  584. // editResolution: ctx + '/api/depositProgrammeService/update', //修改上会状态
  585. // findMeetinginfo: ctx + '/api/depositProgrammeService/findMeetinginfo', //查会议纪要和上会状态
  586. // parseFile: ctx + '/api/depositProgrammeService/saveMeetinginfo', //上传会议
  587. // delMeetingFile: ctx + '/api/depositProgrammeService/deleteMeetinginfo', //删除会议
  588. // submitNext: ctx + '/api/depositProgrammeService/submitNext', //跟新生成审批表状态
  589. // findMyPriceInquiry: ctx + '/api/priceInquiry/findMyPriceInquiry', //导入报价数据列表
  590. // findByPriceinquiryId: ctx + '/api/depositProgrammeService/findByPriceinquiryId', //导入报价数据
  591. // getInvestenddate: ctx + '/api/depositProgrammeService/getInvestenddate' //导入报价数据后 下一步需要调的接口
  592. // },
  593. shibor: {
  594. getList: ctx + '/api/windShibor/findLatest'
  595. },
  596. IDbusinessPlanApproval: {
  597. aprove: ctx + '/api/depositProgrammeService/approveProcess' //流程
  598. },
  599. IDbusinessOperation: {
  600. //业务操作
  601. getList: ctx + '/api/depositProgrammeBusiService/find', //查询列表
  602. getByIdList: ctx + '/api/depositProgrammeBusiService/getProductPageByProgrammeId',
  603. del: ctx + '/api/depositProgrammeBusiService/delete', //停用
  604. add: ctx + '/api/depositProgrammeBusiService/create', //增加
  605. aprove: ctx + '/api/depositProgrammeBusiService/addProgrammeApproval', //审核
  606. findByproductid: ctx + '/api/depositProductBusiService/findByproductid', //获取方案编号
  607. getById: ctx + '/api/depositProductBusiService/getProductPageByProgrammeId', //id查询
  608. edit: ctx + '/api/depositProductBusiService/update', //编辑
  609. },
  610. IDbusinessOperationApproval: {
  611. aprove: ctx + '/api/depositProgrammeBusiService/approveProcess' //流程
  612. },
  613. IDaccountManag: {
  614. //台账
  615. getList: ctx + '/api/depositProductAccountService/find', //查询列表
  616. getById: ctx + '/api/depositProductAccountService/findByproductid', //id查询
  617. getByIdList: ctx + '/api/depositProductAccountService/getProductPageByProgrammeId',
  618. edit: ctx + '/api/depositProductAccountService/update', //编辑
  619. aprove: ctx + '/api/depositProgrammeAccountService/addProgrammeApproval' //审核
  620. },
  621. IDaccountManagApproval: {
  622. aprove: ctx + '/api/depositProgrammeAccountService/approveProcess' //审核
  623. },
  624. IDstatisticsOfAccount: {
  625. getList: ctx + '/api/depositProductAccountService/findByDateBetween' //统计
  626. },
  627. // PRRbusinessPlanManag: {
  628. // //质押式逆回购
  629. // getList: ctx + '/api/pledgeProgrammeService/find', //查询列表
  630. // getById: ctx + '/api/pledgeProgrammeService/getByid', //id查询
  631. // getByIdList: ctx + '/api/pledgeProductService/getProductPageByProgrammeId',
  632. // del: ctx + '/api/pledgeProductService/delete', //停用
  633. // edit: ctx + '/api/pledgeProgrammeService/edit', //编辑
  634. // add: ctx + '/api/pledgeProgrammeService/create', //增加
  635. // getProgrammeSerialNo: ctx + '/api/pledgeProgrammeService/getProgrammeSerialNo', //获取方案编号
  636. // getByid2: ctx + '/api/pledgeProductService/findByproductid', //获取产品详情
  637. // edit2: ctx + '/api/pledgeProductService/update', //编辑产品
  638. // sizeTrue: ctx + '/api/pledgeProgrammeService/updateQuotaCheck', //额度校验
  639. // aprove: ctx + '/api/pledgeProgrammeService/addProgrammeApproval', //审核
  640. // editResolution: ctx + '/api/pledgeProgrammeService/update', //修改上会状态
  641. // findMeetinginfo: ctx + '/api/pledgeProgrammeService/findMeetinginfo', //查会议纪要和上会状态
  642. // parseFile: ctx + '/api/pledgeProgrammeService/saveMeetinginfo', //上传会议
  643. // delMeetingFile: ctx + '/api/pledgeProgrammeService/deleteMeetinginfo', //删除会议
  644. // submitNext: ctx + '/api/pledgeProgrammeService/submitNext', //跟新生成审批表状态
  645. // checkOnceRule: ctx + '/api/pledgeProgrammeService/checkOnceRule' //单次校验接口 新增数据后 下一步前先校验下 再去定是否进行下一步
  646. // },
  647. PRRbusinessPlanApproval: {
  648. aprove: ctx + '/api/pledgeProgrammeService/approveProcess' //流程
  649. },
  650. PRRbusinessOperation: {
  651. //业务操作
  652. getList: ctx + '/api/pledgeProgrammeBusiService/find', //查询列表
  653. getByIdList: ctx + '/api/pledgeProgrammeBusiService/getProductPageByProgrammeId',
  654. del: ctx + '/api/pledgeProgrammeBusiService/delete', //停用
  655. add: ctx + '/api/pledgeProgrammeBusiService/create', //增加
  656. aprove: ctx + '/api/pledgeProgrammeBusiService/addProgrammeApproval', //审核
  657. findByproductid: ctx + '/api/pledgeProductBusiService/findByproductid', //获取方案编号
  658. getById: ctx + '/api/pledgeProductBusiService/getProductPageByProgrammeId', //id查询
  659. edit: ctx + '/api/pledgeProductBusiService/update', //编辑
  660. getPDF: ctx + '/api/pledgeProgrammeService/parse',
  661. isTrueCheckFile: ctx + '/api/pledgeProductBusiService/isTrueCheckFile' //检验数据 同业拆借-业务操作-编辑-上传文件后
  662. },
  663. PRRbusinessOperationApproval: {
  664. aprove: ctx + '/api/pledgeProgrammeBusiService/approveProcess' //流程
  665. },
  666. PRRaccountManag: {
  667. //台账
  668. getList: ctx + '/api/pledgeProductAccountService/find', //查询列表
  669. getById: ctx + '/api/pledgeProductAccountService/findByproductid', //id查询
  670. getByIdList: ctx + '/api/pledgeProductAccountService/getProductPageByProgrammeId',
  671. edit: ctx + '/api/pledgeProductAccountService/update', //编辑
  672. aprove: ctx + '/api/pledgeProgrammeAccountService/addProgrammeApproval' ,//审核
  673. uploadFile: ctx + '/api/importLedgerFrameworkService/uploadFile', //批量新增 上传
  674. // getTodoTask: ctx + '/api/processService/getTodoTask', //批量新增 下载
  675. importData: ctx + '/api/pledgeProductAccountService/importData' //批量新增 下一步
  676. },
  677. PRRaccountManagApproval: {
  678. aprove: ctx + '/api/pledgeProgrammeAccountService/approveProcess' //审核
  679. },
  680. // PRRstatisticsOfAccount:{
  681. // getList:'api/pledgProductAccountService/findLedgerCount'
  682. // },
  683. PRRstatisticsOfAccount: {
  684. getList: 'api/pledgeProductAccountService/findLedgerCount'
  685. },
  686. // CODbusinessPlanManag: {
  687. // //同业存单
  688. // getList: ctx + '/api/ticketProgrammeService/find', //查询列表
  689. // getById: ctx + '/api/ticketProgrammeService/getByid', //id查询
  690. // getByIdList: ctx + '/api/ticketProductService/getProductPageByProgrammeId',
  691. // del: ctx + '/api/ticketProductService/delete', //停用
  692. // edit: ctx + '/api/ticketProgrammeService/edit', //编辑
  693. // add: ctx + '/api/ticketProgrammeService/create', //增加
  694. // getProgrammeSerialNo: ctx + '/api/ticketProgrammeService/getProgrammeSerialNo', //获取方案编号
  695. // getByid2: ctx + '/api/ticketProductService/findByproductid', //获取产品详情
  696. // edit2: ctx + '/api/ticketProductService/update', //编辑产品
  697. // sizeTrue: ctx + '/api/ticketProgrammeService/updateQuotaCheck', //额度校验
  698. // aprove: ctx + '/api/ticketProgrammeService/addProgrammeApproval', //审核
  699. // editResolution: ctx + '/api/ticketProgrammeService/update', //修改上会状态
  700. // findMeetinginfo: ctx + '/api/ticketProgrammeService/findMeetinginfo', //查会议纪要和上会状态
  701. // parseFile: ctx + '/api/ticketProgrammeService/saveMeetinginfo', //上传会议
  702. // delMeetingFile: ctx + '/api/ticketProgrammeService/deleteMeetinginfo', //删除会议
  703. // submitNext: ctx + '/api/ticketProgrammeService/submitNext' //跟新生成审批表状态
  704. // },
  705. CODbusinessPlanApproval: {
  706. aprove: ctx + '/api/ticketProgrammeService/approveProcess' //流程
  707. },
  708. CODbusinessOperation: {
  709. //业务操作
  710. getList: ctx + '/api/ticketProgrammeBusiService/find', //查询列表
  711. getById: ctx + '/api/ticketProductBusiService/getProductPageByProgrammeId', //id查询
  712. getByIdList: ctx + '/api/ticketProgrammeService/getProductPageByProgrammeId',
  713. del: ctx + '/api/ticketProgrammeService/delete', //停用
  714. edit: ctx + '/api/ticketProductBusiService/update', //编辑
  715. add: ctx + '/api/ticketProgrammeService/create', //增加
  716. getPDF: ctx + '/api/ticketProgrammeService/parse',
  717. findByproductid: ctx + '/api/ticketProductBusiService/findByproductid', //获取方案编号
  718. aprove: ctx + '/api/ticketProgrammeBusiService/addProgrammeApproval' //审核
  719. },
  720. CODbusinessOperationApproval: {
  721. aprove: ctx + '/api/ticketProgrammeBusiService/approveProcess' //流程
  722. },
  723. CODaccountManag: {
  724. //台账
  725. getList: ctx + '/api/ticketProductAccountService/find', //查询列表
  726. getById: ctx + '/api/ticketProductAccountService/findByproductid', //id查询
  727. getByIdList: ctx + '/api/ticketProgrammeAccountService/getProductPageByProgrammeId',
  728. edit: ctx + '/api/ticketProductAccountService/update', //编辑
  729. aprove: ctx + '/api/ticketProgrammeAccountService/addProgrammeApproval' //审核
  730. },
  731. CODaccountManagApproval: {
  732. aprove: ctx + '/api/ticketProgrammeAccountService/approveProcess' //审核
  733. },
  734. CODbusinessoperationaccount: {
  735. getList: ctx + '/api/ticketProductAccountService/findLedgerCount', //查询列表
  736. getAvg: ctx + '/api/ticketProductAccountService/findLedgerTicketAvg' //获取avg
  737. },
  738. // 业务规则管理
  739. Businessrulemanagement: {
  740. find: ctx + '/api/businessRuleService/find', //查询列表
  741. create: ctx + '/api/businessRuleService/create', //新增
  742. delete: ctx + '/api/businessRuleService/delete', //删除
  743. update: ctx + '/api/businessRuleService/update', //修改
  744. findById: ctx + '/api/businessRuleService/findById' //查看详情
  745. },
  746. FIbusinessPlanManag: {
  747. //基金投资
  748. getList: ctx + '/api/fundProgrammeService/find', //查询列表
  749. getById: ctx + '/api/fundProgrammeService/getByid', //id查询
  750. getByIdList: ctx + '/api/fundProductService/getProductPageByProgrammeId',
  751. del: ctx + '/api/fundProductService/delete', //停用
  752. edit: ctx + '/api/fundProgrammeService/edit', //编辑
  753. add: ctx + '/api/fundProgrammeService/create', //增加
  754. getProgrammeSerialNo: ctx + '/api/fundProgrammeService/getProgrammeSerialNo', //获取方案编号
  755. getByid2: ctx + '/api/fundProductService/findByproductid', //获取产品详情
  756. edit2: ctx + '/api/fundProductService/update', //编辑产品
  757. sizeTrue: ctx + '/api/fundProgrammeService/updateQuotaCheck', //额度校验
  758. aprove: ctx + '/api/fundProgrammeService/addProgrammeApproval', //审核
  759. editResolution: ctx + '/api/fundProgrammeService/update', //修改上会状态
  760. findMeetinginfo: ctx + '/api/fundProgrammeService/findMeetinginfo', //查会议纪要和上会状态
  761. parseFile: ctx + '/api/fundProgrammeService/saveMeetinginfo', //上传会
  762. delMeetingFile: ctx + '/api/fundProgrammeService/deleteMeetinginfo', //删除会议
  763. submitNext: ctx + '/api/fundProgrammeService/submitNext' //跟新生成审批表状态
  764. },
  765. FIbusinessPlanApproval: {
  766. aprove: ctx + '/api/fundProgrammeService/approveProcess' //流程
  767. },
  768. FIbusinessOperation: {
  769. //业务操作
  770. getList: ctx + '/api/fundProgrammeBusiService/find', //查询列表
  771. getById: ctx + '/api/fundProductBusiService/getProductPageByProgrammeId', //id查询
  772. getByIdList: ctx + '/api/fundProgrammeService/getProductPageByProgrammeId',
  773. del: ctx + '/api/fundProgrammeService/delete', //停用
  774. edit: ctx + '/api/fundProductBusiService/update', //编辑
  775. add: ctx + '/api/fundProgrammeService/create', //增加
  776. findByproductid: ctx + '/api/fundProductBusiService/findByproductid', //获取方案编号
  777. aprove: ctx + '/api/fundProgrammeBusiService/addProgrammeApproval' //审核
  778. },
  779. FIbusinessOperationApproval: {
  780. aprove: ctx + '/api/fundProgrammeBusiService/approveProcess' //流程
  781. },
  782. FIaccountManag: {
  783. //台账
  784. getList: ctx + '/api/fundProductAccountService/find', //查询列表
  785. getById: ctx + '/api/fundProductAccountService/findByproductid', //id查询
  786. getByIdList: ctx + '/api/fundProgrammeAccountService/getProductPageByProgrammeId',
  787. edit: ctx + '/api/fundProductAccountService/update', //编辑
  788. aprove: ctx + '/api/fundProgrammeAccountService/addProgrammeApproval' //审核
  789. },
  790. FIaccountManagApproval: {
  791. aprove: ctx + '/api/fundProgrammeAccountService/approveProcess' //审核
  792. },
  793. FIcapitalReconciliation: {
  794. //资金对账
  795. getList: ctx + '/api/fundProductAccountService/findCountByName', //查询列表
  796. add: ctx + '/api/fundProductAccountService/createCountReport',
  797. getListP: ctx + '/api/fundProductAccountService/findLedgerCount',
  798. type: ctx + '/api/fundProductAccountService/findReportName',
  799. getDate: ctx + '/api/fundProductAccountService/findDatadatePurchase'
  800. },
  801. EIbusinessPlanManag: {
  802. //委托投资
  803. getList: ctx + '/api/commissionBusinessManager/find', //查询列表
  804. // getById: ctx + "/api/commissionBusinessManagerDetail/findById", //id查询
  805. getByIdList: ctx + '/api/commissionBusinessManagerDetail/findAll',
  806. del: ctx + '/api/commissionBusinessManagerDetail/delete', //停用
  807. // edit: ctx + "/api/commissionBusinessManager/create", //编辑
  808. add: ctx + '/api/commissionBusinessManager/create', //增加
  809. add2: ctx + '/api/commissionBusinessManagerDetail/create',
  810. // getProgrammeSerialNo: ctx + "/api/fundProgrammeService/getProgrammeSerialNo", //获取方案编号
  811. getByid2: ctx + '/api/commissionBusinessManagerDetail/findById', //获取产品详情
  812. edit2: ctx + '/api/commissionBusinessManagerDetail/update', //编辑产品
  813. sizeTrue: ctx + '/api/commissioBusinessOperating/checkBalance', //额度校验
  814. aprove: ctx + '/api/commissionBusinessManager/addProgrammeApproval', //审核
  815. makeNumber: ctx + '/api/commissionBusinessManager/makeNumber', //生成编码
  816. editResolution: ctx + '/api/commissionBusinessManager/update', //修改上会状态
  817. findMeetinginfo: ctx + '/api/commissionBusinessManager/findById', //查会议纪要和上会状态/api/commissionBusinessManager/findById
  818. parseFile: ctx + '/api/commissionBusinessManager/update', //上传会
  819. delMeetingFile: ctx + '/api/commissionBusinessManager/deleteMeetinginfo' //删除会议
  820. },
  821. EIbusinessPlanApproval: {
  822. aprove: ctx + '/api/commissionBusinessManager/approveProcess' //流程
  823. },
  824. EIbusinessOperation: {
  825. //业务操作
  826. getList: ctx + '/api/commissioBusinessOperating/find', //查询列表
  827. getById: ctx + '/api/commissioBusinessOperatingDetail/findAll', //id查询
  828. // getByIdList:ctx+'/api/commissioBusinessOperatingDetail/findAll',
  829. // del: ctx + "/api/fundProgrammeService/delet", //停用
  830. edit: ctx + '/api/commissioBusinessOperatingDetail/update', //编辑
  831. // add: ctx + "/api/fundProgrammeService/create", //增加
  832. findByproductid: ctx + '/api/commissioBusinessOperatingDetail/findById',
  833. aprove: ctx + '/api/commissioBusinessOperating/addProgrammeApproval', //审核
  834. isCheck: ctx + '/api/entrusterBankAccountService/checkQuate',
  835. accout: ctx + '/api/entrusterBankAccountService/find', //查询所有账户
  836. protocolContract: ctx + '/api/commissioBusinessOperatingDetailService/findprotocolNumberChildAndContract' //根据协议查合同
  837. },
  838. EIbusinessOperationApproval: {
  839. aprove: ctx + '/api/commissioBusinessOperating/approveProcess' //流程
  840. },
  841. EIaccountManag: {
  842. //台账
  843. getList: ctx + '/api/commissionAccount/find', //查询列表
  844. getById: ctx + '/api/commissionAccount/findById', //id查询
  845. // getByIdList:ctx+'/api/fundProgrammeAccountService/getProductPageByProgrammeId',
  846. edit: ctx + '/api/commissionAccount/update', //编辑
  847. aprove: ctx + '/api/commissionAccount/addProgrammeApproval' //审核
  848. },
  849. EIaccountManagApproval: {
  850. aprove: ctx + '/api/commissionAccount/approveProcess' //审核
  851. },
  852. EIinterestSupplement: {
  853. //投资补息业务
  854. getList: ctx + '/api/commissionInvestmentSupplement/find', //查询列表
  855. getById: ctx + '/api/commissionInvestmentSupplement/findById', //id查询
  856. upList: ctx + '/api/commissionInvestmentSupplement/update',
  857. seadMsg: ctx + '/api/commissionInvestmentSupplementService/sendSupplementData' //查询列表
  858. },
  859. EIfundSplitAccount: {
  860. //投资到期
  861. getList: ctx + '/api/commissionInvestmentExpire/find', //查询列表
  862. getById: ctx + '/api/commissionInvestmentExpire/findById', //id查询
  863. edit: ctx + '/api/commissionInvestmentExpire/update', //更新
  864. fundsRegistration: ctx + '/api/commissionInvestmentExpire/fundsRegistration', //资金登记
  865. fundsInfomation: ctx + '/api/commissionInvestmentExpire/fundsInfomation', //资金详情
  866. findAll: ctx + '/api/commissionInvestmentExpireDetailService/findAll', //投资到期列表findAll
  867. find: ctx + '/api/commissionInvestmentExpireDetailService/find', //投资到期补息业务find
  868. getById2: ctx + '/api/commissionInvestmentExpireDetailService/findById', //根据从表明细主键查询
  869. edit2: ctx + '/api/commissionInvestmentExpireDetailService/update', //从表更新
  870. aprove: ctx + '/api/commissionInvestmentExpire/addProgrammeApproval' //审核
  871. },
  872. EIfundSplitAccountApproval: {
  873. aprove: ctx + '/api/commissionInvestmentExpire/approveProcess' //审核
  874. }, //
  875. EIaccountingForFunds: {
  876. //资金入账
  877. aprove: ctx + '/api/commissionInvestmentAccountService/addProgrammeApproval' //添加审核
  878. },
  879. EIaccountingForFundsApproval: {
  880. //资金入账审核
  881. aprove: ctx + '/api/commissionInvestmentAccountService/approveProcess' //添加审核
  882. },
  883. EIcapitalReconciliation: {
  884. //资金对账
  885. getList: ctx + '/api/financeReconciliationService/find', //查询列表
  886. reconciliation: ctx + '/api/financeReconciliationService/reconciliation'
  887. },
  888. EIinterestAtMaturity: {
  889. //到期补息
  890. getList: ctx + '/api/commissionInvestmentExpireDetailService/find', //查询列表
  891. getById: ctx + '/api/commissionInvestmentExpireDetailService/findById',
  892. seadMsg: ctx + '/api/commissionInvestmentExpireDetailService/sendExpireData' //查询列表
  893. },
  894. protocolnumber: {
  895. //协议编号
  896. getList: ctx + '/api/commissionBusinessManagerDetailService/findByProgramNumber', //查询列表 新需求 LSY
  897. getList2: ctx + '/api/commissionProtocolNumber/find', //查询列表
  898. getById: ctx + '/api/commissionProtocolNumber/findById', //id查询
  899. edit: ctx + '/api/commissionProtocolNumber/update', //编辑
  900. add: ctx + '/api/commissionProtocolNumber/create', //增加
  901. type: ctx + '/api/commissionBusinessManagerDetail/findCommissionShortName', //根据业务查询未有协议编号的委托方名称
  902. addAprove: ctx + '/api/commissionProtocolNumber/addProgrammeApproval', //审核
  903. aprove: ctx + '/api/commissionProtocolNumber/approveProcess', //审核
  904. findCommissionNameAndCode: ctx + '/api/commissionFrameworkAgreementService/find', // 查询委投方编号和委投全称
  905. // findCommissionNameAndCode: ctx +'/api/commissionFrameworkAgreementService/findCommissionNameAndCode', // 查询委投方编号和委投全称
  906. findByAccountAndClassification: ctx + '/api/entrusterBankAccountService/findByAccountAndClassification', //查询账户
  907. frameworkAgreementNumber: ctx + '/api/commissionFrameworkAgreementService/find',
  908. findNumber: ctx + '/api/commissionBusinessManagerService/find', //
  909. commissionAll: ctx + '/api/commissionBusinessManagerDetailService/findAll', //
  910. commissionFind: ctx + '/api/commissionBusinessManagerDetailService/findCommissionBusinessManagerId', //查询对相应的方案编号
  911. xieyiNum: ctx + '/api/commissionProtocolNumberService/find', //查询所有的协议编号
  912. xieByid: ctx + '/api/commissionProtocolNumberService/findById', //查询协议编号的详细信息
  913. connext: ctx + '/api/commissionProtocolNumberService/findProtocolJoinProduct', //关联产品合同commissionProtocolNumberService
  914. contract: ctx + '/api/financeBusinessProduct/findByprogramNumberAndCounterparty', //关联产品协议
  915. agreement: ctx + '/api/commissionProtocolNumberService/findByShortName', //协议
  916. addProgrammeApproval: ctx + 'api/commissionProtocolNumber/addProgrammeApproval', //生成协议子编号 提交
  917. addAprove_new: ctx + '/api/commissionProtocolNumberService/addProgrammeApproval', //新换子协议编号 提交按钮
  918. aprove_new: ctx + '/api/commissionProtocolNumberService/approveProcess', //新换子协议编号 提交按钮
  919. updateIAmount: ctx + '/api/commissionProtocolNumberService/updateInvestmentAmount', //协议子协议编号提交
  920. noApprove: ctx + '/api/commissionProtocolNumberService/noApproval',
  921. amend_Deal: ctx + '/api/commissionProtocolNumberService/create' //修改协议接口
  922. },
  923. frameworkagreement: {
  924. //协议框架
  925. getList: ctx + '/api/commissionFrameworkAgreement/find', //查询列表
  926. getById: ctx + '/api/commissionFrameworkAgreement/findById', //id查询
  927. edit: ctx + '/api/commissionFrameworkAgreement/update', //编辑
  928. add: ctx + '/api/commissionFrameworkAgreement/create', //增加
  929. type: ctx + '/api/entrusterBankAccountService/findAccountAndName', //增加
  930. addAprove: ctx + '/api/commissionFrameworkAgreement/addProgrammeApproval', //发起审核
  931. aprove: ctx + '/api/commissionFrameworkAgreement/approveProcess' //审核
  932. },
  933. financeBusinessProduct: {
  934. //委投的产品信息
  935. getList: ctx + '/api/financeBusinessProduct/find', //查询列表
  936. getById: ctx + '/api/financeBusinessProduct/findById', //id查询
  937. edit: ctx + '/api/financeBusinessProduct/update', //编辑
  938. add: ctx + '/api/financeBusinessProduct/create' //增加
  939. },
  940. productManag: {
  941. //产品合同管理
  942. getList: ctx + '/api/financeBusinessProduct/find', //查询列表
  943. getById: ctx + '/api/financeBusinessProduct/findById', //id查询
  944. edit: ctx + '/api/financeBusinessProduct/update', //编辑
  945. add: ctx + '/api/financeBusinessProduct/create', //增加
  946. isTrue: ctx + '/api/productBusiService/findContractCode', //增加
  947. amend_Contract: ctx + '/api/financeBusinessProduct/update' //修改合同接口
  948. },
  949. findAdvice: {
  950. //审核意见常用
  951. getList: ctx + '/api/bondProgrammeService/findAdvice', //查询列表
  952. add: ctx + '/api/bondProgrammeService/addAdvice' //增加
  953. },
  954. // 同业划拨
  955. sameIndustry: {
  956. create: ctx + '/api/interbankFundTransferSuggestService/create', //新增划拨
  957. delete: ctx + '/api/interbankFundTransferSuggestService/delete', //删除划拨
  958. find: ctx + '/api/interbankFundTransferSuggestService/find', //查询划拨
  959. update: ctx + '/api/interbankFundTransferSuggestService/update', //修改划拨
  960. findById: ctx + '/api/interbankFundTransferSuggestService/findById', //修改划拨
  961. fundTransferList: ctx + '/api/interbankFundTransferSuggestService/saveRemarks', //保存备注
  962. createData: ctx + '/api/interbankFundTransferSuggestService/createByprogrammeParams' //根据资金业务建议创建划拨数据
  963. },
  964. // 资金划拨
  965. // 企业资金划拨
  966. enterprise: {
  967. getList: ctx + '/api/capitalOperateCompanyService/find', //列表查询
  968. addList: ctx + '/api/capitalOperateCompanyService/create', //创建划拨
  969. capitalFind: ctx + '/api/fundTransferCompanyService/find', //划拨查询
  970. delList: ctx + '/api/fundTransferCompanyService/delete', //划拨删除
  971. findById: ctx + '/api/fundTransferCompanyService/findById', //划拨查询单条
  972. update: ctx + '/api/fundTransferCompanyService/update', //编辑划拨
  973. nextEvevt: ctx + '/api/capitalOperateCompanyService/generateApprovalcode', //下一步事件
  974. updateById: ctx + '/api/capitalOperateCompanyService/updateById', // 修改审批方式
  975. addProgramme: ctx + '/api/capitalOperateCompanyService/addProgrammeApproval', //资金操作提交审批
  976. parseFile: ctx + '/api/capitalOperateCompanyService/saveMeetinginfo', //上传附件
  977. deleteMeetinginfo: ctx + '/api/capitalOperateCompanyService/deleteMeetinginfo', //附件删除
  978. approveProgramme: ctx + '/api/capitalOperateCompanyService/approveProcess', //资金操作提交 复审
  979. getTodoTask: ctx + '/api/processService/getTodoTask', //审批页 未处理
  980. finish: ctx + '/api/processService/findFinishedTaskInstances', //审批页 已处理
  981. logFind: ctx + '/api/investmentproductOperatingLogService/find', //划拨查询 记录
  982. detailFind: ctx + '/api/processService/getCommentsByProcinstid', //划拨查询 审批详情
  983. getProcessIntanceByPage: ctxForm + '/getProcessIntanceByPage', //
  984. delete: ctx + '/api/capitalOperateCompanyService/delete', //方案删除
  985. // 导出
  986. export: ctx + '/api/capitalOperateCompanyService/exportData'
  987. },
  988. // 同业资金划拨
  989. interBank: {
  990. find: ctx + '/api/capitalOperateTradeService/find', //列表查询
  991. Tradecreate: ctx + '/api/capitalOperateTradeService/create', //创建
  992. Tradedelete: ctx + '/api/fundTransferTradeService/delete', //删除
  993. TradeFind: ctx + '/api/fundTransferTradeService/find', //划拨查询
  994. updateById: ctx + '/api/capitalOperateTradeService/updateById', //x修改
  995. findById: ctx + '/api/fundTransferTradeService/findById', //划拨查询单条
  996. update: ctx + '/api/fundTransferTradeService/update', //编辑划拨
  997. logFind: ctx + '/api/investmentproductOperatingLogService/find', //划拨查询 记录
  998. detailFind: ctx + '/api/processService/getCommentsByProcinstid', //划拨查询 审批详情
  999. parseFile: ctx + '/api/capitalOperateTradeService/saveMeetinginfo', //上传附件
  1000. deleteMeetinginfo: ctx + '/api/capitalOperateTradeService/deleteMeetinginfo', //附件删除
  1001. generateNumbering: ctx + '/api/capitalOperateTradeService/generateApprovalcode', //生成审批编号
  1002. getProcessIntanceByPage: ctxForm + '/getProcessIntanceByPage', //
  1003. interBankAddApproval: ctx + '/api/capitalOperateTradeService/addProgrammeApproval', //审批 add
  1004. interBankApproval: ctx + '/api/capitalOperateTradeService/approveProcess', //审批 复评
  1005. getTodoTask: ctx + '/api/processService/getTodoTask', //审批页 未处理
  1006. finish: ctx + '/api/processService/findFinishedTaskInstances', //审批页 已处理
  1007. delete: ctx + '/api/capitalOperateTradeService/delete', //方案删除
  1008. aprove: ctx + '/api/programmeAccountService/addProgrammeApproval', //审核
  1009. history: ctx + '/api/productAccountService/findHistorydetail',
  1010. // 导出
  1011. export: ctx + '/api/capitalOperateTradeService/exportData'
  1012. },
  1013. ILbusinessPlanManag: {
  1014. //同业拆借
  1015. getList: ctx + '/api/borrowProgrammeService/find', //查询列表
  1016. delete: ctx + '/api/fundProgrammeService/delete', //删除方案 终止方案 注销方案
  1017. getById: ctx + '/api/borrowProgrammeService/getByid', //id查询
  1018. getByIdList: ctx + '/api/borrowProductService/getProductPageByProgrammeId',
  1019. del: ctx + '/api/borrowProductService/delete', //停用
  1020. edit: ctx + '/api/borrowProgrammeService/edit', //编辑
  1021. add: ctx + '/api/borrowProgrammeService/create', //增加
  1022. getProgrammeSerialNo: ctx + '/api/borrowProgrammeService/getProgrammeSerialNo', //获取方案编号
  1023. getByid2: ctx + '/api/borrowProductService/findByproductid', //获取产品详情
  1024. edit2: ctx + '/api/borrowProductService/update', //编辑产品
  1025. sizeTrue: ctx + '/api/borrowProgrammeService/updateQuotaCheck', //额度校验
  1026. aprove: ctx + '/api/borrowProgrammeService/addProgrammeApproval', //审核
  1027. editResolution: ctx + '/api/borrowProgrammeService/update', //修改上会状态
  1028. findMeetinginfo: ctx + '/api/borrowProgrammeService/findMeetinginfo', //查会议纪要和上会状态
  1029. parseFile: ctx + '/api/borrowProgrammeService/saveMeetinginfo', //上传会议纪要
  1030. delMeetingFile: ctx + '/api/borrowProgrammeService/deleteMeetinginfo', //删除会议
  1031. submitNext: ctx + '/api/borrowProgrammeService/submitNext', //跟新生成审批表状态
  1032. checkOnceRule: ctx + '/api/borrowProgrammeService/checkOnceRule' //单次校验接口 新增数据后 下一步前先校验下 再去定是否进行下一步
  1033. },
  1034. IDbusinessPlanManag: {
  1035. //同业存款
  1036. getList: ctx + '/api/depositProgrammeService/find', //查询列表
  1037. delete: ctx + '/api/fundProgrammeService/delete', //删除方案 终止方案 注销方案
  1038. getById: ctx + '/api/depositProgrammeService/getByid', //id查询
  1039. getByIdList: ctx + '/api/depositProductService/getProductPageByProgrammeId',
  1040. del: ctx + '/api/depositProductService/delete', //停用
  1041. edit: ctx + '/api/depositProgrammeService/edit', //编辑
  1042. add: ctx + '/api/depositProgrammeService/create', //增加
  1043. getProgrammeSerialNo: ctx + '/api/depositProgrammeService/getProgrammeSerialNo', //获取方案编号
  1044. getByid2: ctx + '/api/depositProductService/findByproductid', //获取产品详情
  1045. edit2: ctx + '/api/depositProductService/update', //编辑产品
  1046. sizeTrue: ctx + '/api/depositProgrammeService/updateQuotaCheck', //额度校验
  1047. aprove: ctx + '/api/depositProgrammeService/addProgrammeApproval', //审核
  1048. editResolution: ctx + '/api/depositProgrammeService/update', //修改上会状态
  1049. findMeetinginfo: ctx + '/api/depositProgrammeService/findMeetinginfo', //查会议纪要和上会状态
  1050. parseFile: ctx + '/api/depositProgrammeService/saveMeetinginfo', //上传会议
  1051. delMeetingFile: ctx + '/api/depositProgrammeService/deleteMeetinginfo', //删除会议
  1052. submitNext: ctx + '/api/depositProgrammeService/submitNext', //跟新生成审批表状态
  1053. findMyPriceInquiry: ctx + '/api/priceInquiry/findMyPriceInquiry', //导入报价数据列表
  1054. findByPriceinquiryId: ctx + '/api/depositProgrammeService/findByPriceinquiryId', //导入报价数据
  1055. getInvestenddate: ctx + '/api/depositProgrammeService/getInvestenddate', //导入报价数据后 下一步需要调的接口
  1056. checkOnceRule: ctx + '/api/depositProgrammeService/checkOnceRule', //单次校验接口 新增数据后 下一步前先校验下 再去定是否进行下一步
  1057. deleteByProgramme: ctx + '/api/interbankFundTransferSuggestService/deleteByProgrammeid' // 删除所有划拨数据
  1058. },
  1059. PRRbusinessPlanManag: {
  1060. //质押式逆回购
  1061. getList: ctx + '/api/pledgeProgrammeService/find', //查询列表
  1062. delete: ctx + '/api/fundProgrammeService/delete', //删除方案 终止方案 注销方案
  1063. getById: ctx + '/api/pledgeProgrammeService/getByid', //id查询
  1064. getByIdList: ctx + '/api/pledgeProductService/getProductPageByProgrammeId',
  1065. del: ctx + '/api/pledgeProductService/delete', //停用
  1066. edit: ctx + '/api/pledgeProgrammeService/edit', //编辑
  1067. add: ctx + '/api/pledgeProgrammeService/create', //增加
  1068. getProgrammeSerialNo: ctx + '/api/pledgeProgrammeService/getProgrammeSerialNo', //获取方案编号
  1069. getByid2: ctx + '/api/pledgeProductService/findByproductid', //获取产品详情
  1070. edit2: ctx + '/api/pledgeProductService/update', //编辑产品
  1071. sizeTrue: ctx + '/api/pledgeProgrammeService/updateQuotaCheck', //额度校验
  1072. aprove: ctx + '/api/pledgeProgrammeService/addProgrammeApproval', //审核
  1073. editResolution: ctx + '/api/pledgeProgrammeService/update', //修改上会状态
  1074. findMeetinginfo: ctx + '/api/pledgeProgrammeService/findMeetinginfo', //查会议纪要和上会状态
  1075. parseFile: ctx + '/api/pledgeProgrammeService/saveMeetinginfo', //上传会议
  1076. delMeetingFile: ctx + '/api/pledgeProgrammeService/deleteMeetinginfo', //删除会议
  1077. submitNext: ctx + '/api/pledgeProgrammeService/submitNext', //跟新生成审批表状态
  1078. checkOnceRule: ctx + '/api/pledgeProgrammeService/checkOnceRule' //单次校验接口 新增数据后 下一步前先校验下 再去定是否进行下一步
  1079. },
  1080. // 交易所质押式报价回购
  1081. PQRbusinessPlanManag: {
  1082. getList: ctx + '/api/exchangePledgeQuoteProgrammeService/find', //查询列表
  1083. delete: ctx + '/api/fundProgrammeService/delete', //删除方案 终止方案 注销方案
  1084. getById: ctx + '/api/exchangePledgeQuoteProgrammeService/getByid', //id查询
  1085. getByIdList: ctx + '/api/exchangePledgeQuoteProductService/getProductPageByProgrammeId',
  1086. del: ctx + '/api/exchangePledgeQuoteProductService/delete', //停用
  1087. edit: ctx + '/api/exchangePledgeQuoteProgrammeService/edit', //编辑
  1088. add: ctx + '/api/exchangePledgeQuoteProgrammeService/create', //增加
  1089. getProgrammeSerialNo: ctx + '/api/exchangePledgeQuoteProgrammeService/getProgrammeSerialNo', //获取方案编号
  1090. getByid2: ctx + '/api/exchangePledgeQuoteProductService/findByproductid', //获取产品详情
  1091. edit2: ctx + '/api/exchangePledgeQuoteProductService/update', //编辑产品
  1092. sizeTrue: ctx + '/api/exchangePledgeQuoteProgrammeService/updateQuotaCheck', //额度校验
  1093. aprove: ctx + '/api/exchangePledgeQuoteProgrammeService/addProgrammeApproval', //审核
  1094. editResolution: ctx + '/api/exchangePledgeQuoteProgrammeService/update', //修改上会状态
  1095. findMeetinginfo: ctx + '/api/exchangePledgeQuoteProgrammeService/findMeetinginfo', //查会议纪要和上会状态
  1096. parseFile: ctx + '/api/exchangePledgeQuoteProgrammeService/saveMeetinginfo', //上传会议
  1097. delMeetingFile: ctx + '/api/exchangePledgeQuoteProgrammeService/deleteMeetinginfo', //删除会议
  1098. submitNext: ctx + '/api/exchangePledgeQuoteProgrammeService/submitNext', //跟新生成审批表状态
  1099. checkOnceRule: ctx + '/api/exchangePledgeQuoteProgrammeService/checkOnceRule' //单次校验接口 新增数据后 下一步前先校验下 再去定是否进行下一步
  1100. },
  1101. PQRbusinessPlanApproval: {
  1102. aprove: ctx + '/api/exchangePledgeQuoteProgrammeService/approveProcess' //流程
  1103. },
  1104. PQRbusinessOperation: {
  1105. //业务操作
  1106. getList: ctx + '/api/exchangePledgeQuoteProgrammeBusiService/find', //查询列表
  1107. getByIdList: ctx + '/api/exchangePledgeQuoteProgrammeBusiService/getProductPageByProgrammeId',
  1108. del: ctx + '/api/exchangePledgeQuoteProgrammeBusiService/delete', //停用
  1109. add: ctx + '/api/exchangePledgeQuoteProgrammeBusiService/create', //增加
  1110. aprove: ctx + '/api/exchangePledgeQuoteProgrammeBusiService/addProgrammeApproval', //审核
  1111. findByproductid: ctx + '/api/exchangePledgeQuoteProductBusiService/findByproductid', //获取方案编号
  1112. getById: ctx + '/api/exchangePledgeQuoteProductBusiService/getProductPageByProgrammeId', //id查询
  1113. edit: ctx + '/api/exchangePledgeQuoteProductBusiService/update', //编辑
  1114. getPDF: ctx + '/api/exchangePledgeQuoteProgrammeService/parse',
  1115. isTrueCheckFile: ctx + '/api/exchangePledgeQuoteProductBusiService/isTrueCheckFile', //检验数据 同业拆借-业务操作-编辑-上传文件后
  1116. logFind: ctx + '/api/investmentproductOperatingLogService/find', //操作日志记录查询
  1117. logApprove: ctx + '/api/processService/getCommentsByProcinstid', //审批详情记录查询
  1118. },
  1119. PQRbusinessOperationApproval: {
  1120. aprove: ctx + '/api/exchangePledgeQuoteProgrammeBusiService/approveProcess' //流程
  1121. },
  1122. PQRaccountManag: {
  1123. //台账
  1124. getList: ctx + '/api/exchangePledgeQuoteProductAccountService/find', //查询列表
  1125. getById: ctx + '/api/exchangePledgeQuoteProductAccountService/findByproductid', //id查询
  1126. getByIdList: ctx + '/api/exchangePledgeQuoteProductAccountService/getProductPageByProgrammeId',
  1127. create: ctx + '/api/exchangePledgeQuoteProductAccountService/create', //编辑
  1128. edit: ctx + '/api/exchangePledgeQuoteProductAccountService/update', //编辑
  1129. aprove: ctx + '/api/exchangePledgeQuoteProgrammeAccountService/addProgrammeApproval' ,//审核
  1130. findFormwork: ctx + '/api/importLedgerFrameworkService/findNewestFormwork', // 批量新增 查询模板
  1131. uploadFile: ctx + '/api/importLedgerFrameworkService/uploadFile', //批量新增 上传
  1132. importData: ctx + '/api/exchangePledgeQuoteProductAccountService/importData', //批量新增 下一步
  1133. delete: ctx + '/api/exchangePledgeQuoteProductAccountService/delete'// 台账作废
  1134. },
  1135. PQRaccountManagApproval: {
  1136. aprove: ctx + '/api/exchangePledgeQuoteProgrammeAccountService/approveProcess' //审核
  1137. },
  1138. PQRstatisticsOfAccount: {
  1139. getList: 'api/exchangePledgeQuoteProductAccountService/findLedgerCount'
  1140. },
  1141. CODbusinessPlanManag: {
  1142. //同业存单
  1143. getList: ctx + '/api/ticketProgrammeService/find', //查询列表
  1144. delete: ctx + '/api/fundProgrammeService/delete', //删除方案 终止方案 注销方案
  1145. getById: ctx + '/api/ticketProgrammeService/getByid', //id查询
  1146. getByIdList: ctx + '/api/ticketProductService/getProductPageByProgrammeId',
  1147. del: ctx + '/api/ticketProductService/delete', //停用
  1148. edit: ctx + '/api/ticketProgrammeService/edit', //编辑
  1149. add: ctx + '/api/ticketProgrammeService/create', //增加
  1150. getProgrammeSerialNo: ctx + '/api/ticketProgrammeService/getProgrammeSerialNo', //获取方案编号
  1151. getByid2: ctx + '/api/ticketProductService/findByproductid', //获取产品详情
  1152. edit2: ctx + '/api/ticketProductService/update', //编辑产品
  1153. sizeTrue: ctx + '/api/ticketProgrammeService/updateQuotaCheck', //额度校验
  1154. aprove: ctx + '/api/ticketProgrammeService/addProgrammeApproval', //审核
  1155. editResolution: ctx + '/api/ticketProgrammeService/update', //修改上会状态
  1156. findMeetinginfo: ctx + '/api/ticketProgrammeService/findMeetinginfo', //查会议纪要和上会状态
  1157. parseFile: ctx + '/api/ticketProgrammeService/saveMeetinginfo', //上传会议
  1158. delMeetingFile: ctx + '/api/ticketProgrammeService/deleteMeetinginfo', //删除会议
  1159. submitNext: ctx + '/api/ticketProgrammeService/submitNext', //跟新生成审批表状态
  1160. checkOnceRule: ctx + '/api/ticketProgrammeService/checkOnceRule' //单次校验接口 新增数据后 下一步前先校验下 再去定是否进行下一步
  1161. },
  1162. storageMeetingFile: {
  1163. add: ctx + '/api/meetingFileService/create' //添加会议纪要
  1164. },
  1165. //货币基金
  1166. moneyFund: {
  1167. find: ctx + '/api/fundProgrammeService/find', //查询数据
  1168. delete: ctx + '/api/fundProgrammeService/delete', //删除方案 终止方案 注销方案
  1169. createList: ctx + '/api/fundProgrammeService/create', //新增编号
  1170. aboutList: ctx + '/api/fundProductService/getProductPageByProgrammeId', //查询编号
  1171. findByproductid: ctx + '/api/fundProductService/findByproductid', //查看单条草案
  1172. updateList: ctx + '/api/fundProductService/update', //修改编号 提交
  1173. deleteFund: ctx + '/api/fundProductService/delete', //删除编号
  1174. getProgrammeSerialNo: ctx + '/api/fundProgrammeService/getProgrammeSerialNo', //生成方案编号
  1175. parseFile: ctx + '/api/programmeService/saveMeetinginfo', //上传会议纪要
  1176. updateQuotaCheck: ctx + '/api/fundProgrammeService/updateQuotaCheck', //额度校验
  1177. editResolution: ctx + '/api/fundProgrammeService/update', //修改上会状态
  1178. addContent: ctx + '/api/fundProgrammeService/updateResolution', //上传会议和富文本
  1179. projectaddApproval: ctx + '/api/fundProgrammeService/addProgrammeApproval', //业务方案审批 add
  1180. projectApproval: ctx + '/api/fundProgrammeService/approveProcess', //业务方案审批 复评
  1181. getFindById: ctx + '/api/fundProgrammeService/findById', //审批页 附件 是否上会纪要
  1182. moneylFind: ctx + '/api/capitalOperateService/find', //资金业务管理 查询
  1183. capitalCreate: ctx + '/api/capitalOperateService/create', //新增划拨 新建
  1184. capitalListDelete: ctx + '/api/capitalOperateService/delete', //新增划拨 删除
  1185. capitalDelete: ctx + '/api/fundTransferService/delete', //新增划拨 删除
  1186. capitalFind: ctx + '/api/fundTransferService/find', //新增划拨 查询
  1187. getProgrammeCodeList: ctx + '/api/programmeService/getProgrammeCodeList', //查询 货基 业务方案
  1188. capitaladdApproval: ctx + '/api/capitalOperateService/addProgrammeApproval', //资金业务审批 add
  1189. capitalApproval: ctx + '/api/capitalOperateService/approveProcess', //资金业务审批 复评
  1190. capitalSerialno: ctx + '/api/capitalOperateService/getProgrammeApprovalserialno', //生成资金业务编号
  1191. capitalLogFind: ctx + '/api/investmentproductOperatingLogService/find', //修改记录查询
  1192. logApprove: ctx + '/api/processService/getCommentsByProcinstid', //审批详情记录查询
  1193. operationList: ctx + '/api/fundProgrammeBusiService/find', //货基 业务操作 列表
  1194. dealList: ctx + '/api/fundProductBusiService/getProductPageByProgrammeId', //根据方案id查询货基信息
  1195. dealFindByproductid: ctx + '/api/fundProductBusiService/findByproductid', //货基 交易信息 单条查询
  1196. dealupdateByproductid: ctx + '/api/fundProductBusiService/update', //货基 交易信息 单条修改
  1197. operationaddApproval: ctx + '/api/fundProgrammeBusiService/addProgrammeApproval', //业务操作审批 add
  1198. operationApproval: ctx + '/api/fundProgrammeBusiService/approveProcess', //业务操作审批 复评
  1199. accountFindList: ctx + '/api/fundProductAccountService/find', //台账管理 列表
  1200. accountFindListdelete: ctx + '/api/fundProductAccountService/delete', //台账管理 列表作废
  1201. accountCreate: ctx + '/api/fundProductAccountService/create', //台账管理 新增
  1202. accountFindById: ctx + '/api/fundProductAccountService/findByproductid', //台账管理 单条 查询
  1203. accountUpdate: ctx + '/api/fundProductAccountService/update', //台账管理 修改
  1204. accountaddApproval: ctx + '/api/fundProgrammeAccountService/addProgrammeApproval', //台账管理 审批add
  1205. accountProcesslApproval: ctx + '/api/fundProgrammeAccountService/approveProcess', //台账管理 审批 复评
  1206. netWorthFind: ctx + '/api/netWorthService/find', //资产净值台账 查询
  1207. netWorthCreate: ctx + '/api/netWorthService/create', //资产净值台账 新增
  1208. netWorthfindById: ctx + '/api/netWorthService/findById', //资产净值台账 单条查询
  1209. findBySuperiorId: ctx + '/api/netWorthService/findBySuperiorId', //资产净值台账 审批查询
  1210. netWorthUpdate: ctx + '/api/netWorthService/update', //资产净值台账 修改
  1211. netWorthDelete: ctx + '/api/netWorthService/delete', //资产净值台账 删除
  1212. netWorthaddApproval: ctx + '/api/netWorthService/addProgrammeApproval', //资产净值台账 审批 add
  1213. netWorthApproval: ctx + '/api/netWorthService/approveProcess', //资产净值台账 审批 复评
  1214. getnetWorthServicno: ctx + '/api/netWorthService/getProgrammeApprovalserialno', //资产净值台账 生成编号
  1215. uploadDataFile: ctx + '/api/importLedgerFrameworkService/uploadFile', // 批量新增 上传文件
  1216. importData: ctx + '/api/fundProductAccountService/importData', // 批量新增 上传文件 下一步 货基台账
  1217. netWorthimportData: ctx + '/api/netWorthService/importData', // 批量新增 上传文件 下一步 净值台账
  1218. findFormwork: ctx + '/api/importLedgerFrameworkService/findNewestFormwork', // 批量新增 查询模板
  1219. findFundByCode: ctx + '/api/netWorthService/findFundByCode', //,输入基金代码,调用此接口
  1220. getTodoTask: ctx + '/api/processService/getTodoTask', //审批页 未审批数据
  1221. finish: ctx + '/api/processService/findFinishedTaskInstances', //审批页面 已审批数据
  1222. findByCodeAndName: ctx + '/api/windFundSurveyService/findByCodeAndName', //过去所有基金代码
  1223. thawQuota: ctx + '/api/frozenQuotaService/thawQuota', //解冻额度
  1224. windFind: ctx + '/api/windFundSurveyService/find', //wind数据
  1225. findFile: ctx + '/api/fundProgrammeService/findMeetingFileAndAdvice', //显示业务操作建议和会议纪要数据
  1226. checkOnceRule: ctx + '/api/fundProgrammeService/checkOnceRule', //单次校验接口 新增数据后 下一步前先校验下 再去定是否进行下一步
  1227. //同业拆借资金回收管理和审批
  1228. findRecycle: ctx + '/api/fundProgrammeAccountRecycleService/find', // 资金回收管理-查询
  1229. create: ctx + '/api/fundProgrammeAccountRecycleService/create', // 资金回收管理-新增回款-下一步
  1230. update: ctx + '/api/fundProgrammeAccountRecycleService/update', // 资金回收管理-新增回款-下一步
  1231. findById: ctx + '/api/fundProgrammeAccountRecycleService/findById', // 修改和查看页面初始化
  1232. addApprove: ctx + '/api/fundProgrammeAccountRecycleService/addProgrammeApproval ', // ADD首次 审批
  1233. approveProcess: ctx + '/api/fundProgrammeAccountRecycleService/approveProcess ', // 审批
  1234. deleteRecycle: ctx + '/api/fundProgrammeAccountRecycleService/delete' //资金回收管理-作废
  1235. },
  1236. // 交易所国债逆回购
  1237. nationalReverse: {
  1238. find: ctx + '/api/nationalbondProgrammeService/find', //查询数据
  1239. create: ctx + '/api/nationalbondProgrammeService/create', //新增数据
  1240. findProduct: ctx + '/api/nationalbondProductService/find', //查询草案
  1241. getQuotaCheck: ctx + '/api/nationalbondProgrammeService/findById', //查询获取额度校验
  1242. deleteProduct: ctx + '/api/nationalbondProductService/delete', //删除草案
  1243. findByIdProduct: ctx + '/api/nationalbondProductService/findById', //查看单条草案
  1244. updateProduct: ctx + '/api/nationalbondProductService/update', //修改草案 提交
  1245. updateQuotaCheck: ctx + '/api/nationalbondProgrammeService/updateQuotaCheck', //额度校验
  1246. createTransfer: ctx + '/api/interbankFundTransferSuggestService/create', //新增划拨
  1247. deleteTransfer: ctx + '/api/interbankFundTransferSuggestService/delete', //删除划拨
  1248. findTransfe: ctx + '/api/interbankFundTransferSuggestService/find', //查询划拨
  1249. checkOnceRule: ctx + '/api/nationalbondProgrammeService/checkOnceRule', //下一步 单次规则校验
  1250. generateProgrammecode: ctx + '/api/nationalbondProgrammeService/generateProgrammecode', //生成方案编号
  1251. getProgrammecodeById: ctx + '/api/nationalbondProgrammeService/getProgrammecodeById', //查看 方案编号 审批编号
  1252. sqlUpdate: ctx + '/api/nationalbondProgrammeService/update', //处理审批sql 报错问题
  1253. addProgrammeApproval: ctx + '/api/nationalbondProgrammeService/addProgrammeApproval', //提交审核
  1254. approveProcess: ctx + '/api/nationalbondProgrammeService/approveProcess', //复审
  1255. delete: ctx + '/api/fundProgrammeService/delete', //删除方案 终止方案 注销方案
  1256. logFind: ctx + '/api/investmentproductOperatingLogService/find', //操作日志记录查询
  1257. logApprove: ctx + '/api/processService/getCommentsByProcinstid', //审批详情记录查询
  1258. operationList: ctx + '/api/nationalbondProgrammeBusiService/find', //业务操作 列表
  1259. findByinvestId: ctx + '/api/meeingFileService/findByinvestId', //业务操作 查询对应方案下的 会议纪要
  1260. operationAdd: ctx + '/api/nationalbondProductBusiService/find', //业务操作 编辑
  1261. operationUpdate: ctx + '/api/nationalbondProductBusiService/update', //业务操作 编辑后提交
  1262. addBusiApproval: ctx + '/api/nationalbondProgrammeBusiService/addProgrammeApproval', //业务操作 审批add
  1263. approveBusiProcess: ctx + '/api/nationalbondProgrammeBusiService/approveProcess', //业务操作 审批复审
  1264. accountFind: ctx + '/api/nationalbondProductAccountService/find', //台账管理 查询
  1265. accountCreate: ctx + '/api/nationalbondProductAccountService/create', //台账管理 新增
  1266. accountFindById: ctx + '/api/nationalbondProductAccountService/findById', //台账管理 查看
  1267. accountUpdate: ctx + '/api/nationalbondProductAccountService/update', //台账管理 修改
  1268. // changeDataStatus: ctx + '/api/nationalbondProductAccountService/changeDataStatus', //台账管理 作废
  1269. changeDataDelete: ctx + '/api/nationalbondProductAccountService/delete', //台账管理 作废 新
  1270. accountAddApproval: ctx + '/api/nationalbondProgrammeAccountService/addProgrammeApproval', //台账管理 审批add
  1271. accountProcesslApproval: ctx + '/api/nationalbondProgrammeAccountService/approveProcess', //台账管理 审批复审
  1272. LogServiceFind: ctx + '/api/investmentproductOperatingLogService/find', //台账管理 修改记录
  1273. findFormwork: ctx + '/api/importLedgerFrameworkService/findNewestFormwork', // 批量新增 查询模板
  1274. uploadDataFile: ctx + '/api/importLedgerFrameworkService/uploadFile', // 批量新增 上传文件
  1275. saveFileinfo: ctx + '/api/nationalbondProgrammeService/saveFileinfo', // 上传成交单文件
  1276. importData: ctx + '/api/nationalbondProductAccountService/importData', // 批量新增 上传文件 下一步
  1277. getTodoTask: ctx + '/api/processService/getTodoTask', //审批页面 未审批数据
  1278. finish: ctx + '/api/processService/findFinishedTaskInstances', //审批页面 已审批数据
  1279. thawQuota: ctx + '/api/frozenQuotaService/thawQuota', //解冻额度
  1280. getServiceCharge: ctx + '/api/nationalbondProgrammeService/getServiceCharge' //查询费率
  1281. },
  1282. //会议纪要管理
  1283. meetingManagement: {
  1284. create: ctx + '/api/meetingFileService/create', //新增数据
  1285. findAll: ctx + '/api/meetingFileService/findAll', //查询所有数据
  1286. findById: ctx + '/api/meetingFileService/findById', //根据id查询数据
  1287. update: ctx + '/api/meetingFileService/update', //修改数据
  1288. delete: ctx + '/api/meetingFileService/delete', //删除数据
  1289. getProgrammeCodeList: ctx + '/api/programmeService/getProgrammeCodeList' //新增数据 前先调这个 查业务方案
  1290. },
  1291. // 同业业务
  1292. InterbankLending: {
  1293. // 同业拆借
  1294. findAll: ctx + '/api/borrowProductBusiService/settlementBusiness', //查询所有数据
  1295. // 质押式回购
  1296. collateralisedRepo: ctx + '/api/pledgeProductBusiService/settlementBusiness', //查询所有数据
  1297. // 同业存单
  1298. interbankDepositCertificate: ctx + '/api/ticketProductBusiService/settlementBusiness', //查询所有数据
  1299. // 交易所回购
  1300. bondRepurchase: ctx + '/api/nationalbondProductAccountService/find', //查询所有数据
  1301. // 存放同业
  1302. depositWithPeers: ctx + '/api/depositProductBusiService/settlementBusiness' //查询所有数据
  1303. },
  1304. // 自营投资
  1305. selfInvestmentMg: {
  1306. // 银行理财
  1307. bankFinancing: ctx + '/api/productBusiService/settlementBusiness', //查询所有数据
  1308. // 货币基金
  1309. monetaryFund: ctx + '/api/fundProductAccountService/find' //查询所有数据
  1310. },
  1311. // 基准利率管理
  1312. benchmarkInterestRateMg: {
  1313. getInterestRate: ctx + '/api/windDepositRateService/findFinanceCompanyRate', //查询财务公司存款利率
  1314. // 保存修改数据
  1315. preservationData: ctx + '/api/windDepositRateService/updateFinanceCompanyRate',
  1316. // 查询历史记录
  1317. historicalRecord: ctx + '/api/investmentproductOperatingLogService/find'
  1318. },
  1319. // 常用模板管理
  1320. templateManagement: {
  1321. getList: ctx + '/api/importLedgerFramework/find',
  1322. // 添加导入模板
  1323. addTemplate: ctx + '/api/importLedgerFrameworkService/create',
  1324. // 删除
  1325. delTemplate: ctx + '/api/importLedgerFrameworkService/delete',
  1326. // 获取历史数据
  1327. oldUpdate: ctx + '/api/investmentproductOperatingLogService/find'
  1328. },
  1329. // 手动维护
  1330. manualMaintenanceMg: {
  1331. // 金融获取数据列表
  1332. getList: ctx + '/api/financialQuotaManualService/findFinancialProduct',
  1333. // 金融新增额度
  1334. addFinanceList: ctx + '/api/financialQuotaManualService/createFinancialProduct',
  1335. // 金融根据id查询
  1336. findByProductQuotaId: ctx + '/api/financialQuotaManualService/findByProductQuotaId',
  1337. // 修改金融产品
  1338. editByProduct: ctx + '/api/financialQuotaManualService/updateFinancialProduct',
  1339. // 查询具体品种
  1340. findVarietiesList: ctx + '/api/investmentRiskClassifyService/findByInvestmentProjects',
  1341. // 删除金融产品
  1342. delByProduct: ctx + '/api/financialQuotaManualService/delete',
  1343. // 获取老的历史记录
  1344. oldProductList: ctx + '/api/investmentproductOperatingLogService/find',
  1345. // 交易对手新增额度占用
  1346. addList: ctx + '/api/financialQuotaManualService/createFinancialCounterparty',
  1347. // 交易对手根据id查询
  1348. findByCounterpartyQuotaId: ctx + '/api/financialQuotaManualService/findByCounterpartyQuotaId',
  1349. // 查询交易对手列表
  1350. findCounterpartyList: ctx + '/api/financialQuotaManualService/findFinancialCounterparty',
  1351. // 修改交易对手
  1352. editCounterpartyInfo: ctx + '/api/financialQuotaManualService/updateFinancialCounterparty'
  1353. },
  1354. // 监管规则标准设定
  1355. regulationRules: {
  1356. //** 特殊目的载体 */
  1357. // 获取特殊目的载体列表
  1358. getSpecialPurposeList: ctx + '/api/specialPurposeEntityService/find',
  1359. // 创建特殊目的载体
  1360. create: ctx + '/api/specialPurposeEntityService/create',
  1361. // 查询特殊目的载体
  1362. findById: ctx + '/api/specialPurposeEntityService/findById',
  1363. // 修改特殊目载体
  1364. updateByid: ctx + '/api/specialPurposeEntityService/update',
  1365. // 删除特殊目的载体
  1366. delete: ctx + '/api/specialPurposeEntityService/delete',
  1367. // 查询修改记录
  1368. findOldData: ctx + '/api/investmentproductOperatingLogService/find'
  1369. },
  1370. // 投资风险限额分类设定 Investment risk limit setting
  1371. investmentSetting: {
  1372. find: ctx + '/api/investmentRiskClassifyService/find', // 列表页查询
  1373. delete: ctx + '/api/investmentRiskClassifyService/delete', // 删除
  1374. create: ctx + '/api/investmentRiskClassifyService/create', // 新增
  1375. findById: ctx + '/api/investmentRiskClassifyService/findById', // 查看
  1376. update: ctx + '/api/investmentRiskClassifyService/update', // 更新
  1377. getVarieties: ctx + '/api/investmentRiskClassifyService/getVarieties', // 新增的时候,获取下面的产品的时候,调用的
  1378. findByInvestmentProjects: ctx + '/api/investmentRiskClassifyService/findByInvestmentProjects', // 根据产品查具体品种
  1379. findLog: ctx + '/api/investmentproductOperatingLogService/find' // 修改记录
  1380. },
  1381. // 监管额度设定 Regulatory limit setting
  1382. Regulatory: {
  1383. find: ctx + '/api/industryregulationlimitsService/find', // 列表页查询
  1384. logApprove: ctx + '/api/processService/getCommentsByProcinstid', //审批详情记录查询
  1385. delete: ctx + '/api/industryregulationlimitsService/delete', // 删除
  1386. addOne: ctx + '/api/industryregulationlimitsService/addOne', // 新增 单条
  1387. create: ctx + '/api/industryregulationlimitsService/create', // 新增
  1388. addProgrammeApproval: ctx + '/api/creditassessmentstandardsService/addProgrammeApproval', // 审批 add
  1389. approveProcess: ctx + '/api/creditassessmentstandardsService/approveProcess', // 审批 复评
  1390. getTodoTask: ctx + '/api/processService/getTodoTask', //审批页面 未审批数据
  1391. finish: ctx + '/api/processService/findFinishedTaskInstances', //审批页面 已审批数据
  1392. findById: ctx + '/api/industryregulationlimitsService/findById', // 查看
  1393. update: ctx + '/api/industryregulationlimitsService/update', // 更新
  1394. LogFind: ctx + '/api/investmentproductOperatingLogService/find' //修改记录
  1395. },
  1396. // 集团额度设定 Group quota setting
  1397. Groupquota: {
  1398. find: ctx + '/api/blocWhiteListService/find', // 列表页查询
  1399. logApprove: ctx + '/api/processService/getCommentsByProcinstid', //审批详情记录查询
  1400. delete: ctx + '/api/blocWhiteListService/delete', // 删除
  1401. addOne: ctx + '/api/blocWhiteListService/addBlocWhiteList', // 新增 单条
  1402. create: ctx + '/api/blocWhiteListService/create', // 新增
  1403. addProgrammeApproval: ctx + '/api/creditassessmentstandardsService/addProgrammeApproval', // 审批 add
  1404. approveProcess: ctx + '/api/creditassessmentstandardsService/approveProcess', // 审批 复评
  1405. getTodoTask: ctx + '/api/processService/getTodoTask', //审批页面 未审批数据
  1406. finish: ctx + '/api/processService/findFinishedTaskInstances', //审批页面 已审批数据
  1407. findById: ctx + '/api/blocWhiteListService/findById', // 查看
  1408. update: ctx + '/api/blocWhiteListService/update', // 更新
  1409. LogFind: ctx + '/api/investmentproductOperatingLogService/find' //修改记录
  1410. },
  1411. // 投资项目设定 Investment project setting
  1412. RegulatoryProject: {
  1413. find: ctx + '/api/investmentingService/find', // 列表页查询
  1414. delete: ctx + '/api/investmentingService/delete', // 删除
  1415. create: ctx + '/api/investmentingService/create', // 新增
  1416. findById: ctx + '/api/investmentingService/findById', // 查看
  1417. update: ctx + '/api/investmentingService/update', // 更新
  1418. findLog: ctx + '/api/investmentproductOperatingLogService/find' // 修改记录
  1419. },
  1420. /** 资产支持证券 */
  1421. // 台账管理
  1422. assetBackedSecurities_Ledger: {
  1423. find: ctx + '/api/assetsBackedSecurityLedgerService/find', // 列表页查询
  1424. create: ctx + '/api/assetsBackedSecurityLedgerService/create', // 新增
  1425. ledgerAddApproval: ctx + '/api/assetsBackedSecurityLedgerService/addProgrammeApproval', //首次审批
  1426. approveProcess: ctx + '/api/assetsBackedSecurityLedgerService/approveProcess', //审批
  1427. findLedgerInfo: ctx + '/api/assetsBackedSecurityLedgerService/findById', //查询台账详情
  1428. update: ctx + '/api/assetsBackedSecurityLedgerService/update', // 修改
  1429. delete: ctx + '/api/assetsBackedSecurityLedgerService/delete', // 修改
  1430. findProgramCodeAndProductCode: ctx + '/api/assetsBackedSecurityLedgerService/findProgramCodeAndProductCode', // 查询方案编号和产品编号
  1431. // 台账操作审批
  1432. operationApproval: ctx + '/api/assetsBackedSecurityLedgerService/approveProcess', //审批
  1433. getProcessIntanceByPage: ctxForm + '/getProcessIntanceByPage',
  1434. findNewestFormwork: ctx + '/api/importLedgerFrameworkService/findNewestFormwork', //批量新增 查询
  1435. uploadFile: ctx + '/api/importLedgerFrameworkService/uploadFile', //批量新增 上传
  1436. // getTodoTask: ctx + '/api/processService/getTodoTask', //批量新增 下载
  1437. importData: ctx + '/api/assetsBackedSecurityLedgerService/importData' //批量新增 下一步
  1438. },
  1439. // 资金回收
  1440. assetBackedSecurities_Recovery: {
  1441. find: ctx + '/api/assetsBackedSecurityRecycleService/find', // 列表页查询
  1442. create: ctx + '/api/assetsBackedSecurityRecycleService/create', // 新增
  1443. update: ctx + '/api/assetsBackedSecurityRecycleService/update', // 修改
  1444. findById: ctx + '/api/assetsBackedSecurityRecycleService/findById', // 修改
  1445. addApprove: ctx + '/api/assetsBackedSecurityRecycleService/addProgrammeApproval ', // ADD首次 审批
  1446. approveProcess: ctx + '/api/assetsBackedSecurityRecycleService/approveProcess ', // 审批
  1447. delete: ctx + '/api/assetsBackedSecurityRecycleService/delete' //删除
  1448. // 资金回收审批
  1449. },
  1450. /** 优先股 */
  1451. // 台账管理
  1452. preferredStockManage_Ledger: {
  1453. find: ctx + '/api/preferredStockLedgerService/find', // 列表页查询
  1454. findnew: ctx + '/api/preferredStockLedgerService/findProgramCodeAndProductCode', // 资金回收查询台账
  1455. create: ctx + '/api/preferredStockLedgerService/create', // 新增
  1456. update: ctx + '/api/preferredStockLedgerService/update', // 修改
  1457. findById: ctx + '/api/preferredStockLedgerService/findById', // 修改
  1458. addApprove: ctx + '/api/preferredStockLedgerService/addProgrammeApproval', // ADD首次 审批
  1459. approveProcess: ctx + '/api/preferredStockLedgerService/approveProcess', // 审批
  1460. delete: ctx + '/api/preferredStockLedgerService/delete', //删除
  1461. getProcessIntanceByPage: ctxForm + '/getProcessIntanceByPage',
  1462. findNewestFormwork: ctx + '/api/importLedgerFrameworkService/findNewestFormwork', //批量新增 查询
  1463. uploadFile: ctx + '/api/importLedgerFrameworkService/uploadFile', //批量新增 上传
  1464. // getTodoTask: ctx + '/api/processService/getTodoTask', //批量新增 下载
  1465. importData: ctx + '/api/preferredStockLedgerService/importData' //批量新增 下一步
  1466. },
  1467. preferredStockManage_Recovery: {
  1468. find: ctx + '/api/preferredStockRecycleService/find', // 列表页查询
  1469. create: ctx + '/api/preferredStockRecycleService/create', // 新增
  1470. update: ctx + '/api/preferredStockRecycleService/update', // 修改
  1471. findById: ctx + '/api/preferredStockRecycleService/findById', // 修改
  1472. addApprove: ctx + '/api/preferredStockRecycleService/addProgrammeApproval', // ADD首次 审批
  1473. approveProcess: ctx + '/api/preferredStockRecycleService/approveProcess', // 审批
  1474. delete: ctx + '/api/preferredStockRecycleService/delete' //删除
  1475. },
  1476. // 净值型理财
  1477. netWorthFinancing: {
  1478. /**
  1479. * 业务方案和业务操作开始
  1480. * */
  1481. businessCreate: ctx + '/api/networthbankProgramme/create', //新增业务
  1482. planFind: ctx + '/api/networthbankProgramme/find', //新增业务
  1483. productFind: ctx + '/api/networthbankProduct/getByProgrammeid', //列表页修改查询
  1484. findByproductid: ctx + '/api/networthbankProduct/findById', // 产品查询
  1485. updateList: ctx + '/api/networthbankProduct/update', //修改产品
  1486. deleteFund: ctx + '/api/networthbankProduct/delete', //删除产品
  1487. getProgrammeSerialNo: ctx + '/api/networthbankProgramme/generateProgrammecode', //生成方案编号
  1488. updateQuotaCheck: ctx + '/api/networthbankProgramme/updateQuotaCheck', //额度校验
  1489. findByType: ctx + '/api/priceInquiryTemplateService/findByType', //业务操作建议查询
  1490. parseFile: ctx + '/api/programmeService/saveMeetinginfo', //上传会议纪要
  1491. findMeetinginfo: ctx + '/api/programmeService/findMeetinginfo', // 查询附件
  1492. deleteMeetinginfo: ctx + '/api/programmeService/deleteMeetinginfo', //附件删除
  1493. meetinginfoUpdate: ctx + '/api/networthbankProgramme/update', // 修改业务操作
  1494. addProgrammeApproval: ctx + '/api/networthbankProgramme/addProgrammeApproval', // 方案审批add
  1495. approveProcess: ctx + '/api/networthbankProgramme/approveProcess', // 方案审批app
  1496. //业务操作
  1497. performFind: ctx + '/api/networthbankProgrammeBusi/find', //业务操作
  1498. editFind: ctx + '/api/networthbankProductBusi/getByProgrammeBusiId', // 修改查询
  1499. cancel: ctx + '/api/networthbankProductBusi/delete', // 作废
  1500. beRelated: ctx + '/api/networthbankProductBusi/update', //关联合同确定
  1501. deleteContract: ctx + '/api/networthbankProductBusi/deleteContract', //删除关联合同
  1502. addDetail: ctx + '/api/networthbankBusiDetails/create', //新增业务明细
  1503. getByContractcode: ctx + '/api/networthbankBusiDetails/getByContractcode', //根据合同编号获取关联的业务明细
  1504. updateDetail: ctx + '/api/networthbankBusiDetails/update', //修改明细
  1505. findByIdDetail: ctx + '/api/networthbankBusiDetails/findById', //查看明细
  1506. getContractcode: ctx + '/api/networthbankProgrammeBusi/getContractcode', //根据业务操作方案id获取其下所有的合同
  1507. deleteDetail: ctx + '/api/networthbankBusiDetails/delete', //删除明细
  1508. getAllDetail: ctx + '/api/networthbankBusiDetails/find', //查询和审批所有明细
  1509. addBusiApproval: ctx + '/api/networthbankProgrammeBusi/addProgrammeApproval', // 业务操作add
  1510. approveBusiProcess: ctx + '/api/networthbankProgrammeBusi/approveProcess', //业务操作app
  1511. findByContractCode: ctx + '/api/financeContract/findByContractCode', // 列表页查询
  1512. findByproductCode: ctx + '/api/financeProductService/findByproductCode', //查询产品信息
  1513. /**
  1514. * 结束
  1515. * */
  1516. find: ctx + '/api/networthbankLedgerService/find', // 列表页查询
  1517. create: ctx + '/api/networthbankLedgerService/create', //新增台账管理
  1518. contractNum: ctx + '/api/financeContractService/find', //交易对手改变事件 ,合同序列号
  1519. ledgerDelete: ctx + '/api/networthbankLedgerService/delete', //删除台账
  1520. ledgerFindById: ctx + '/api/networthbankLedgerService/findById', //台账详情
  1521. ledgeraddApproval: ctx + '/api/networthbankLedgerService/addProgrammeApproval', //台账审批ADD
  1522. ledgerApproval: ctx + '/api/networthbankLedgerService/approveProcess', //台账审批
  1523. ledgerApprovalFindById: ctx + '/api/networthbankLedgerService/findByprograemmeLedgerId', // ledgeAdd流程类型调 审批台账详情
  1524. ledgerUpdate: ctx + '/api/networthbankLedgerService/update', // 台账修改
  1525. capitalFind: ctx + '/api/networthbankCapitalRecoveryService/find', // 资金回收列表页查询
  1526. capitalCreate: ctx + '/api/networthbankCapitalRecoveryService/create', // 资金回收创建
  1527. capitalDelete: ctx + '/api/networthbankCapitalRecoveryService/delete', // 资金回收删除
  1528. capitalUpdate: ctx + '/api/networthbankCapitalRecoveryService/update', // 资金回收修改
  1529. capitalFindById: ctx + '/api/networthbankCapitalRecoveryService/findById', // 资金回收 详情
  1530. capitaladdApproval: ctx + '/api/networthbankCapitalRecoveryService/addProgrammeApproval', // 资金回收 审批add
  1531. capitalApproval: ctx + '/api/networthbankCapitalRecoveryService/approveProcess', // 资金回收 复核
  1532. logFind: ctx + '/api/investmentproductOperatingLogService/find', //修改记录
  1533. logApprove: ctx + '/api/processService/getCommentsByProcinstid', //审批详情记录查询
  1534. getTodoTask: ctx + '/api/processService/getTodoTask', //审批页面 未审批数据
  1535. finish: ctx + '/api/processService/findFinishedTaskInstances', //审批页面 已审批数据
  1536. findNewestFormwork: ctx + '/api/importLedgerFrameworkService/findNewestFormwork', //批量新增 查询
  1537. uploadFile: ctx + '/api/importLedgerFrameworkService/uploadFile', //批量新增 上传
  1538. // getTodoTask: ctx + '/api/processService/getTodoTask', //批量新增 下载
  1539. importData: ctx + '/api/networthbankLedgerService/importData', //批量新增 下一步
  1540. findNetworth: ctx + '/api/networthbankCapitalRecoveryService/findNetworthByDateAndContractCode' //查询确认日净值
  1541. },
  1542. // 净值型理财 理财产品
  1543. netWorthFinancingProducts: {
  1544. find: ctx + '/api/financeProductService/find', // 列表页查询 查询编码
  1545. create: ctx + '/api/financeProductService/create', // 新增
  1546. update: ctx + '/api/financeProductService/update', // 修改
  1547. findById: ctx + '/api/financeProductService/findById', // 查看详情
  1548. delete: ctx + '/api/financeProductService/delete', //删除
  1549. findNetworth: ctx + '/api/financeProductNetworthService/find', //查询历史净值
  1550. logFind: ctx + '/api/investmentproductOperatingLogService/find', //查询修改记录
  1551. bookFind: ctx + '/api/financeProductNetworthService/find', // 台账列表页查询
  1552. bookCreate: ctx + '/api/financeProductNetworthService/create', // 台账新增
  1553. bookDelete: ctx + '/api/financeProductNetworthService/delete', // 台账列表页删除
  1554. bookRealDelete: ctx + '/api/financeProductNetworthService/realDelete', // 台账单条删除
  1555. bookUpdate: ctx + '/api/financeProductNetworthService/update', // 台账修改
  1556. bookFindById: ctx + '/api/financeProductNetworthService/findById', // 台账查看详情
  1557. getProcessIntanceByPage: ctxForm + '/getProcessIntanceByPage', //
  1558. addApproval: ctx + '/api/financeProductNetworthService/addProgrammeApproval', // 台账审核 add
  1559. approval: ctx + '/api/financeProductNetworthService/approveProcess', // 台账复核
  1560. findByNetworthParentId: ctx + '/api/financeProductNetworthService/findByNetworthParentId', // 台账审批信息
  1561. getTodoTask: ctx + '/api/processService/getTodoTask', //审批页面 未审批数据
  1562. finish: ctx + '/api/processService/findFinishedTaskInstances', //审批页面 已审批数据
  1563. findNewestFormwork: ctx + '/api/importLedgerFrameworkService/findNewestFormwork', //批量新增 查询
  1564. uploadFile: ctx + '/api/importLedgerFrameworkService/uploadFile', //批量新增 上传
  1565. // getTodoTask: ctx + '/api/processService/getTodoTask', //批量新增 下载
  1566. importData: ctx + '/api/networthbankLedgerService/importData' //批量新增 下一步
  1567. },
  1568. // 净值型理财合同
  1569. netWorthFinancingContract: {
  1570. find: ctx + '/api/financeContract/find', // 列表页查询
  1571. create: ctx + '/api/financeContractService/create', // 新增
  1572. update: ctx + '/api/financeContractService/update', // 修改
  1573. findById: ctx + '/api/financeContractService/findById', // 查看详情
  1574. delete: ctx + '/api/financeContractService/delete', //删除
  1575. productCode: ctx + '/api/financeProductService/find', //查询编码
  1576. detailHistory: ctx + '/api/financeProductNetworthService/find', //历史净值明细
  1577. logFind: ctx + '/api/investmentproductOperatingLogService/find' //修改记录
  1578. },
  1579. // 存款准备金划拨
  1580. depositMoney: {
  1581. find: ctx + '/api/capitalOperateRequiredReservesService/find', //列表查询
  1582. Tradecreate: ctx + '/api/capitalOperateRequiredReservesService/create', //创建
  1583. Tradedelete: ctx + '/api/fundTransferRequiredReservesService/delete', //删除
  1584. TradeFind: ctx + '/api/fundTransferRequiredReservesService/find', //划拨查询
  1585. updateById: ctx + '/api/capitalOperateRequiredReservesService/updateById', //x修改
  1586. update: ctx + '/api/fundTransferRequiredReservesService/update', //编辑划拨
  1587. logFind: ctx + '/api/investmentproductOperatingLogService/find', //划拨查询 记录
  1588. detailFind: ctx + '/api/processService/getCommentsByProcinstid', //划拨查询 审批详情
  1589. findById: ctx + '/api/fundTransferRequiredReservesService/findById', //划拨查询单条
  1590. generateNumbering: ctx + '/api/capitalOperateRequiredReservesService/generateApprovalcode', //生成审批编号
  1591. getProcessIntanceByPage: ctxForm + '/getProcessIntanceByPage', //
  1592. interBankAddApproval: ctx + '/api/capitalOperateRequiredReservesService/addProgrammeApproval', //审批 add
  1593. interBankApproval: ctx + '/api/capitalOperateRequiredReservesService/approveProcess', //审批 复评
  1594. getTodoTask: ctx + '/api/processService/getTodoTask', //审批页 未处理
  1595. finish: ctx + '/api/processService/findFinishedTaskInstances', //审批页 已处理
  1596. delete: ctx + '/api/capitalOperateRequiredReservesService/delete', //方案删除
  1597. // 导出
  1598. export: ctx + '/api/capitalOperateRequiredReservesService/exportData'
  1599. },
  1600. // 台账管理导入
  1601. accountImport: {
  1602. networthImport: ctx + '/api/netWorthService/importData',
  1603. productImport: ctx + '/api/financeProductNetworthService/excelImport'
  1604. }
  1605. }
  1606. // }
  1607. export default urls