pay.ts 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746
  1. export default {
  2. /** 按日查询毛利估算(元) */
  3. profit_day: {
  4. realUrl: '/pay/data/profit_day',
  5. reqType: {} as 优惠运营分析查询参数实体类,
  6. resType: {} as Array<长城毛利返回的实体类日统计>,
  7. },
  8. /** 按月查询毛利估算(元) */
  9. profit_month: {
  10. realUrl: '/pay/data/profit_month',
  11. reqType: {} as 优惠运营分析查询参数实体类,
  12. resType: {} as Array<长城毛利返回的实体类日统计>,
  13. },
  14. /** 按日查询优惠金额(元) */
  15. rebate_amount_day: {
  16. realUrl: '/pay/data/rebate_amount_day',
  17. reqType: {} as 优惠运营分析查询参数实体类,
  18. resType: {} as Array<优惠金额_元_返回的实体类日统计>,
  19. },
  20. /** 按月查询优惠金额(元) */
  21. rebate_amount_month: {
  22. realUrl: '/pay/data/rebate_amount_month',
  23. reqType: {} as 优惠运营分析查询参数实体类,
  24. resType: {} as Array<优惠金额_元_返回的实体类月统计>,
  25. },
  26. /** 按日查询优惠平均差价(元/公斤) */
  27. rebate_price_day: {
  28. realUrl: '/pay/data/rebate_price_day',
  29. reqType: {} as 优惠运营分析查询参数实体类,
  30. resType: {} as Array<优惠平均差价返回的实体类月统计日统计>,
  31. },
  32. /** 按月查询优惠平均差价(元/公斤) */
  33. rebate_price_month: {
  34. realUrl: '/pay/data/rebate_price_month',
  35. reqType: {} as 优惠运营分析查询参数实体类,
  36. resType: {} as Array<优惠平均差价返回的实体类月统计日统计>,
  37. },
  38. /** 按日查询销量优惠分布(公斤) */
  39. rebate_qty_day: {
  40. realUrl: '/pay/data/rebate_qty_day',
  41. reqType: {} as 优惠运营分析查询参数实体类,
  42. resType: {} as Array<销量优惠分布返回的实体类日统计>,
  43. },
  44. /** 按月查询销量优惠分布(公斤) */
  45. rebate_qty_month: {
  46. realUrl: '/pay/data/rebate_qty_month',
  47. reqType: {} as 优惠运营分析查询参数实体类,
  48. resType: {} as Array<销量优惠分布返回的实体类日统计>,
  49. },
  50. /** 创建加气订单 */
  51. add: {
  52. realUrl: '/pay/gas_order/add',
  53. reqType: {} as GasOrder对象,
  54. resType: {} as any,
  55. },
  56. /** 创建加气订单 */
  57. add_v2: {
  58. realUrl: '/pay/gas_order/add_v2',
  59. reqType: {} as GasOrder对象,
  60. resType: {} as any,
  61. },
  62. /** 取消订单for收银员 */
  63. cancel_forcashier: {
  64. realUrl: '/pay/gas_order/cancel_forcashier',
  65. reqType: {} as GasOrder对象,
  66. resType: {} as any,
  67. },
  68. /** 物流客户订单查询接口,带时间 */
  69. list_withtime: {
  70. realUrl: '/pay/gas_order/carrier/list_withtime',
  71. reqType: {} as IPageParams<GasOrderListParam>,
  72. resType: {} as any,
  73. },
  74. /** 物流公司专享优惠订单查询接口,带时间 */
  75. list_withtime_1: {
  76. realUrl: '/pay/gas_order/carrier_rebate/list_withtime',
  77. reqType: {} as IPageParams<GasOrderListParam>,
  78. resType: {} as any,
  79. },
  80. /** 创建加气订单(不保存) */
  81. create: {
  82. realUrl: '/pay/gas_order/create',
  83. reqType: {} as GasOrder对象,
  84. resType: {} as any,
  85. },
  86. /** 查询指定司机是否有待支付的订单 */
  87. driver_order_check: {
  88. realUrl: '/pay/gas_order/driver_order_check',
  89. reqType: {} as 通用id参数,
  90. resType: {} as boolean,
  91. },
  92. /** 导出订单列表 */
  93. export: {
  94. realUrl: '/pay/gas_order/export',
  95. reqType: {} as ExcelExportParam,
  96. },
  97. /** 查找gas_order */
  98. find: {
  99. realUrl: '/pay/gas_order/find',
  100. resType: {} as any,
  101. },
  102. /** 统计日物流公司订单数 */
  103. find_carrier_order_total: {
  104. realUrl: '/pay/gas_order/find_carrier_order_total',
  105. reqType: {} as SumOrgOrderNumParam,
  106. resType: {} as any,
  107. },
  108. /** 查询加气站待支付订单数量,今日的 */
  109. find_gasstation_nopayorder_number: {
  110. realUrl: '/pay/gas_order/find_gasstation_nopayorder_number',
  111. reqType: {} as GasstationIdParam,
  112. resType: {} as any,
  113. },
  114. /** 统计日加气站订单数 */
  115. find_gasstation_order_total: {
  116. realUrl: '/pay/gas_order/find_gasstation_order_total',
  117. reqType: {} as SumOrgOrderNumParam,
  118. resType: {} as any,
  119. },
  120. /** 查找最新的一条订单for司机 */
  121. find_latest: {
  122. realUrl: '/pay/gas_order/find_latest',
  123. reqType: {} as FindLatestParam,
  124. resType: {} as any,
  125. },
  126. /** 待支付订单详情for司机 */
  127. find_nopayfordriver: {
  128. realUrl: '/pay/gas_order/find_nopayfordriver',
  129. reqType: {} as Record<any, any>,
  130. resType: {} as any,
  131. },
  132. /** 待支付订单详情for卡车 */
  133. find_nopayfordrivertruck: {
  134. realUrl: '/pay/gas_order/find_nopayfordrivertruck',
  135. resType: {} as any,
  136. },
  137. /** 待支付订单详情for司机 */
  138. find_unpayfordriver: {
  139. realUrl: '/pay/gas_order/find_unpayfordriver',
  140. resType: {} as GasOrder对象,
  141. },
  142. /** 根据司机id查询当前司机是否首次下单支付完成 */
  143. first_finished_order_check: {
  144. realUrl: '/pay/gas_order/first_finished_order_check',
  145. reqType: {} as 通用id参数,
  146. resType: {} as boolean,
  147. },
  148. /** 加气站订单查询接口,带时间 */
  149. list_withtime_2: {
  150. realUrl: '/pay/gas_order/gas/list_withtime',
  151. reqType: {} as IPageParams<GasOrderListParam>,
  152. resType: {} as any,
  153. },
  154. /** 查询加气站日订单数 */
  155. get_gasstation_order_total: {
  156. realUrl: '/pay/gas_order/get_gasstation_order_total',
  157. reqType: {} as SumGasstationOrderNumParam,
  158. resType: {} as any,
  159. },
  160. /** 查询订单列表 */
  161. get_order_list: {
  162. realUrl: '/pay/gas_order/get_order_list',
  163. reqType: {} as IPageParams<GasOrderListParam>,
  164. resType: {} as GasOrderRes,
  165. },
  166. /** 查询订单优惠列表 */
  167. get_order_rebates: {
  168. realUrl: '/pay/gas_order/get_order_rebates',
  169. reqType: {} as 通用id参数,
  170. resType: {} as Array<GasOrderRebate对象>,
  171. },
  172. /** 查询订单 */
  173. get_orders: {
  174. realUrl: '/pay/gas_order/get_orders',
  175. reqType: {} as IPageParams<订单查询参数实体类>,
  176. resType: {} as any,
  177. },
  178. /** 获取gas_order列表 */
  179. list: {
  180. realUrl: '/pay/gas_order/list',
  181. reqType: {} as IPageParams<GasOrder对象>,
  182. resType: {} as any,
  183. },
  184. /** 收银员管理端-查询加气订单 */
  185. list_for_gasstation: {
  186. realUrl: '/pay/gas_order/list_for_gasstation',
  187. reqType: {} as IPageParams<GasOrderListParam>,
  188. resType: {} as any,
  189. },
  190. /** 通用订单查询接口,带时间 */
  191. list_withtime_3: {
  192. realUrl: '/pay/gas_order/list_withtime',
  193. reqType: {} as IPageParams<GasOrderListParam>,
  194. resType: {} as any,
  195. },
  196. /** 查询指定车辆是否有待支付的订单 */
  197. truck_order_check: {
  198. realUrl: '/pay/gas_order/truck_order_check',
  199. reqType: {} as 通用id参数,
  200. resType: {} as boolean,
  201. },
  202. /** 修改gas_order */
  203. update: {
  204. realUrl: '/pay/gas_order/update',
  205. reqType: {} as GasOrder对象,
  206. resType: {} as any,
  207. },
  208. /** 司机创建气瓶检测预约订单 */
  209. add_1: {
  210. realUrl: '/pay/gct_order/add',
  211. reqType: {} as 气瓶检测订单查询参数,
  212. resType: {} as GctOrder对象,
  213. },
  214. /** 根据id取消气瓶检测订单 */
  215. cancel: {
  216. realUrl: '/pay/gct_order/cancel',
  217. reqType: {} as GctOrder对象,
  218. resType: {} as boolean,
  219. },
  220. /** 根据id查询气瓶检测订单详情 */
  221. get_by_id: {
  222. realUrl: '/pay/gct_order/get_by_id',
  223. reqType: {} as 通用id参数,
  224. resType: {} as GctOrder对象,
  225. },
  226. /** getDriverOrders */
  227. get_driver_appointed_order: {
  228. realUrl: '/pay/gct_order/get_driver_appointed_order',
  229. reqType: {} as 司机预约检测订单查询参数,
  230. resType: {} as Array<GctOrder对象>,
  231. },
  232. /** 运营管理后台气瓶检测订单分页查询 */
  233. page_list: {
  234. realUrl: '/pay/gct_order/page_list',
  235. reqType: {} as IPageParams<气瓶检测订单查询参数>,
  236. resType: {} as IPage<GctOrder对象>,
  237. },
  238. /** 分页查询司机自己的气瓶检测订单 */
  239. page_list_for_driver: {
  240. realUrl: '/pay/gct_order/page_list_for_driver',
  241. reqType: {} as IPageParams<气瓶检测订单查询参数>,
  242. resType: {} as IPage<GctOrder对象>,
  243. },
  244. /** 加气站的气瓶检测订单分页查询 */
  245. page_list_for_gasstation: {
  246. realUrl: '/pay/gct_order/page_list_for_gasstation',
  247. reqType: {} as IPageParams<气瓶检测订单查询参数>,
  248. resType: {} as IPage<GctOrder对象>,
  249. },
  250. /** 加气站确认返还资料 */
  251. confirm_returned: {
  252. realUrl: '/pay/gct_order_attach/confirm_returned',
  253. reqType: {} as 气瓶检测订单附件信息,
  254. resType: {} as boolean,
  255. },
  256. /** 加气站确认签收资料 */
  257. confirm_signed: {
  258. realUrl: '/pay/gct_order_attach/confirm_signed',
  259. reqType: {} as 气瓶检测订单附件信息,
  260. resType: {} as boolean,
  261. },
  262. /** 根据订单id查询订单所有的资料 */
  263. list_1: {
  264. realUrl: '/pay/gct_order_attach/list',
  265. reqType: {} as 通用id参数,
  266. resType: {} as Array<GctOrderAttach对象>,
  267. },
  268. /** 修改加气订单价格信息 */
  269. ch_order_createdate: {
  270. realUrl: '/pay/handle/ch_order_createdate',
  271. reqType: {} as GasOrder对象,
  272. resType: {} as any,
  273. },
  274. /** 请求绑定银行卡 */
  275. bind_bankCard: {
  276. realUrl: '/pay/member/bind_bankCard',
  277. reqType: {} as BindCardParam,
  278. resType: {} as any,
  279. },
  280. /** 绑定手机 */
  281. bind_phone: {
  282. realUrl: '/pay/member/bind_phone',
  283. reqType: {} as BindPhoneParam,
  284. resType: {} as any,
  285. },
  286. /** childFillerAutoAuth */
  287. child_filler_auto_auth: {
  288. realUrl: '/pay/member/child_filler_auto_auth',
  289. reqType: {} as Org,
  290. resType: {} as boolean,
  291. },
  292. /** getBankCardBin */
  293. get_bankCardBin: {
  294. realUrl: '/pay/member/get_bankCardBin',
  295. reqType: {} as GetBankCardBinParam,
  296. resType: {} as any,
  297. },
  298. /** getMemberInfo */
  299. get_memberInfo: {
  300. realUrl: '/pay/member/get_memberInfo',
  301. reqType: {} as GetMemberInfoParam,
  302. resType: {} as any,
  303. },
  304. /** 获取企业认证相关状态 */
  305. get_org_auth_info: {
  306. realUrl: '/pay/member/get_org_auth_info',
  307. resType: {} as any,
  308. },
  309. /** idcard */
  310. idcard: {
  311. realUrl: '/pay/member/idcard',
  312. reqType: {} as 身份证二要素认证参数,
  313. resType: {} as boolean,
  314. },
  315. /** 渠道开户 */
  316. open_account: {
  317. realUrl: '/pay/member/open_account',
  318. reqType: {} as OpenAccountParam,
  319. resType: {} as any,
  320. },
  321. /** 查询绑定银行卡状态 */
  322. query_bankCard: {
  323. realUrl: '/pay/member/query_bankCard',
  324. reqType: {} as QueryBankCardParam,
  325. resType: {} as any,
  326. },
  327. /** 提现协议查询 */
  328. query_withdraw_protocol: {
  329. realUrl: '/pay/member/query_withdraw_protocol',
  330. reqType: {} as QuerySignContractParam,
  331. resType: {} as any,
  332. },
  333. /** 发送验证码 */
  334. send_sms_code: {
  335. realUrl: '/pay/member/send_sms_code',
  336. reqType: {} as SendVerificationCodeParam,
  337. resType: {} as any,
  338. },
  339. /** 转账授权 */
  340. sign_balance_protocol: {
  341. realUrl: '/pay/member/sign_balance_protocol',
  342. reqType: {} as SignBalanceProtocolParam,
  343. resType: {} as any,
  344. },
  345. /** 提现授权 */
  346. sign_withdraw_protocol: {
  347. realUrl: '/pay/member/sign_withdraw_protocol',
  348. reqType: {} as SignContractProtocolParam,
  349. resType: {} as any,
  350. },
  351. /** 解除绑定银行卡 */
  352. unbind_bankCard: {
  353. realUrl: '/pay/member/unbind_bankCard',
  354. reqType: {} as UnbindBankCardParam,
  355. resType: {} as any,
  356. },
  357. /** 解除绑定手机 */
  358. unbind_phone: {
  359. realUrl: '/pay/member/unbind_phone',
  360. reqType: {} as UnBindPhoneParam,
  361. resType: {} as any,
  362. },
  363. /** 上传企业营业执照、身份证图片到通联 */
  364. upload_org_pic: {
  365. realUrl: '/pay/member/upload_org_pic',
  366. reqType: {} as IdcardCollectParam,
  367. resType: {} as any,
  368. },
  369. /** idcardAuth */
  370. idcard_auth: {
  371. realUrl: '/pay/member/vehicle_owner/idcard_auth',
  372. reqType: {} as 身份证二要素认证参数,
  373. resType: {} as boolean,
  374. },
  375. /** 物流公司B2B充值 */
  376. deposit_apply: {
  377. realUrl: '/pay/pay/deposit_apply',
  378. reqType: {} as B2BDepositParam,
  379. resType: {} as any,
  380. },
  381. /** 物流公司B2B充值,弹出银联页面 */
  382. deposit_apply_confirm: {
  383. realUrl: '/pay/pay/deposit_apply_confirm',
  384. reqType: {} as B2BDepositConfirmParam,
  385. resType: {} as any,
  386. },
  387. /** 气瓶检测微信支付 */
  388. gct_wxpay: {
  389. realUrl: '/pay/pay/gct_wxpay',
  390. reqType: {} as 气瓶检测订单微信支付参数,
  391. resType: {} as any,
  392. },
  393. /** 长城奥扬代物流公司B2B充值(直销) */
  394. gway_deposit_apply: {
  395. realUrl: '/pay/pay/gway_deposit_apply',
  396. reqType: {} as B2BDepositParam,
  397. resType: {} as any,
  398. },
  399. /** 长城奥扬发起向物流公司B2B充值(直销) */
  400. gway_deposit_start: {
  401. realUrl: '/pay/pay/gway_deposit_start',
  402. reqType: {} as B2BDepositParam,
  403. resType: {} as any,
  404. },
  405. /** 小程序支付 */
  406. minapay: {
  407. realUrl: '/pay/pay/minapay',
  408. reqType: {} as WxpayParam,
  409. resType: {} as any,
  410. },
  411. /** 订单支付 */
  412. order_pay: {
  413. realUrl: '/pay/pay/order_pay',
  414. reqType: {} as OrderPayParam,
  415. resType: {} as any,
  416. },
  417. /** 查询账户收支明细 */
  418. query_bankIn_expDetail: {
  419. realUrl: '/pay/pay/query_bankIn_expDetail',
  420. reqType: {} as QueryBankInExpDetailParam,
  421. resType: {} as any,
  422. },
  423. /** 查询账户资金流水分页列表 */
  424. query_cash_flow: {
  425. realUrl: '/pay/pay/query_cash_flow',
  426. reqType: {} as IPageParams<QueryCashFlowParam>,
  427. resType: {} as any,
  428. },
  429. /** 挂靠车消费 */
  430. rely_consume: {
  431. realUrl: '/pay/pay/rely_consume',
  432. reqType: {} as SelfConsumeParam,
  433. resType: {} as any,
  434. },
  435. /** 自营车消费 */
  436. self_consume: {
  437. realUrl: '/pay/pay/self_consume',
  438. reqType: {} as SelfConsumeParam,
  439. resType: {} as any,
  440. },
  441. /** 待支付订单支付 */
  442. wait_order_pay: {
  443. realUrl: '/pay/pay/wait_order_pay',
  444. reqType: {} as OrderPayParam,
  445. resType: {} as any,
  446. },
  447. /** 提现申请 */
  448. withdraw_apply: {
  449. realUrl: '/pay/pay/withdraw_apply',
  450. reqType: {} as WithdrawParam,
  451. resType: {} as any,
  452. },
  453. /** 微信支付 */
  454. wxpay: {
  455. realUrl: '/pay/pay/wxpay',
  456. reqType: {} as WxpayParam,
  457. resType: {} as any,
  458. },
  459. /** 根据渠道id获取渠道信息 */
  460. find_1: {
  461. realUrl: '/pay/pay_channel/find',
  462. reqType: {} as PayChannel对象,
  463. resType: {} as any,
  464. },
  465. /** 新增充值订单(物流商充值) */
  466. add_2: {
  467. realUrl: '/pay/recharge_order/add',
  468. reqType: {} as RechargeOrder对象,
  469. resType: {} as any,
  470. },
  471. /** 查找recharge_order */
  472. find_2: {
  473. realUrl: '/pay/recharge_order/find',
  474. resType: {} as any,
  475. },
  476. /** 根据车牌号查询该车辆的充值流水 */
  477. find_by_car_number: {
  478. realUrl: '/pay/recharge_order/find_by_car_number',
  479. reqType: {} as IPageParams<RechargeOrderParam>,
  480. resType: {} as any,
  481. },
  482. /** 获取recharge_order列表 */
  483. list_2: {
  484. realUrl: '/pay/recharge_order/list',
  485. reqType: {} as IPageParams<RechargeOrderParam>,
  486. resType: {} as any,
  487. },
  488. /** 根据日期获取recharge_order列表 */
  489. list_withtime_4: {
  490. realUrl: '/pay/recharge_order/list_withtime',
  491. reqType: {} as IPageParams<RechargeOrderParam>,
  492. resType: {} as any,
  493. },
  494. /** 添加register_log */
  495. add_3: {
  496. realUrl: '/pay/register_log/add',
  497. reqType: {} as RegisterLog对象,
  498. resType: {} as any,
  499. },
  500. /** 最新一条-异步回调审核结果 */
  501. find_failReason: {
  502. realUrl: '/pay/register_log/find_failReason',
  503. reqType: {} as RegisterLog对象,
  504. resType: {} as any,
  505. },
  506. /** 最新一条-异步回调返回信息日志详情 */
  507. find_latest_1: {
  508. realUrl: '/pay/register_log/find_latest',
  509. reqType: {} as RegisterLog对象,
  510. resType: {} as any,
  511. },
  512. /** 获取register_log列表 */
  513. list_3: {
  514. realUrl: '/pay/register_log/list',
  515. reqType: {} as IPageParams<RegisterLog对象>,
  516. resType: {} as any,
  517. },
  518. /** 修改register_log */
  519. update_1: {
  520. realUrl: '/pay/register_log/update',
  521. reqType: {} as RegisterLog对象,
  522. resType: {} as any,
  523. },
  524. /** 创建加气订单 */
  525. add_gasorder: {
  526. realUrl: '/pay/third_party/add_gasorder',
  527. reqType: {} as TpGasOrderParam,
  528. resType: {} as any,
  529. },
  530. /** 取消订单 */
  531. cancel_gasorder: {
  532. realUrl: '/pay/third_party/cancel_gasorder',
  533. reqType: {} as TpGasOrderParam,
  534. resType: {} as any,
  535. },
  536. /** 加气订单消费接口 */
  537. consume: {
  538. realUrl: '/pay/third_party/consume',
  539. reqType: {} as TpGasOrderParam,
  540. resType: {} as any,
  541. },
  542. /** 物流司机信息分页查询接口 */
  543. page_driver: {
  544. realUrl: '/pay/third_party/page_driver',
  545. reqType: {} as IPageParams<成丰对接_站全量查询参数>,
  546. resType: {} as any,
  547. },
  548. /** 物流订单信息分页查询接口 */
  549. page_gasorder: {
  550. realUrl: '/pay/third_party/page_gasorder',
  551. reqType: {} as IPageParams<成丰对接_站全量查询参数>,
  552. resType: {} as any,
  553. },
  554. /** 查找gas_order */
  555. qry_gasorder: {
  556. realUrl: '/pay/third_party/qry_gasorder',
  557. reqType: {} as TpGasOrderParam,
  558. resType: {} as 外部对接加气订单VO,
  559. },
  560. /** 提现审核,通过:status=1,驳回:status=5 */
  561. check: {
  562. realUrl: '/pay/withdraw_check_log/check',
  563. reqType: {} as WithdrawCheckLog对象,
  564. resType: {} as any,
  565. },
  566. /** 通过withdraw_order_id,查询最新的审核记录 */
  567. find_3: {
  568. realUrl: '/pay/withdraw_check_log/find',
  569. reqType: {} as WithdrawCheckLog对象,
  570. resType: {} as any,
  571. },
  572. /** 查询审核记录日志 */
  573. list_4: {
  574. realUrl: '/pay/withdraw_check_log/list',
  575. reqType: {} as IPageParams<WithdrawCheckLog对象>,
  576. resType: {} as any,
  577. },
  578. /** 添加 */
  579. add_4: {
  580. realUrl: '/pay/withdraw_config/add',
  581. reqType: {} as WithdrawConfig对象,
  582. resType: {} as any,
  583. },
  584. /** 批量添加 */
  585. batch_add: {
  586. realUrl: '/pay/withdraw_config/batch_add',
  587. resType: {} as any,
  588. },
  589. /** 根据组织名称+限制状态,获取withdraw_config列表 */
  590. list_by_param: {
  591. realUrl: '/pay/withdraw_config/list_by_param',
  592. reqType: {} as IPageParams<WithdrawConfig对象>,
  593. resType: {} as any,
  594. },
  595. /** 修改限制状态 */
  596. update_limitstatus: {
  597. realUrl: '/pay/withdraw_config/update_limitstatus',
  598. reqType: {} as WithdrawConfig对象,
  599. resType: {} as any,
  600. },
  601. /** 添加withdraw_order */
  602. add_5: {
  603. realUrl: '/pay/withdraw_order/add',
  604. reqType: {} as WithdrawOrder对象,
  605. resType: {} as any,
  606. },
  607. /** 获取待审核列表,status=0 */
  608. check_list: {
  609. realUrl: '/pay/withdraw_order/check_list',
  610. reqType: {} as IPageParams<WithdrawOrder对象>,
  611. resType: {} as any,
  612. },
  613. /** 提现电子回单下载 */
  614. eleReceiptDownload: {
  615. realUrl: '/pay/withdraw_order/eleReceiptDownload',
  616. reqType: {} as WithdrawOrder对象,
  617. resType: {} as any,
  618. },
  619. /** 根据订单号查询订单 */
  620. find_4: {
  621. realUrl: '/pay/withdraw_order/find',
  622. reqType: {} as WithdrawOrder对象,
  623. resType: {} as any,
  624. },
  625. /** 获取机构提现总金额 */
  626. find_total_amount: {
  627. realUrl: '/pay/withdraw_order/find_total_amount',
  628. reqType: {} as WithdrawOrderParam,
  629. resType: {} as any,
  630. },
  631. /** 获取提现列表 */
  632. list_5: {
  633. realUrl: '/pay/withdraw_order/list',
  634. reqType: {} as IPageParams<WithdrawOrderListParam>,
  635. resType: {} as any,
  636. },
  637. /** 修改withdraw_order */
  638. update_2: {
  639. realUrl: '/pay/withdraw_order/update',
  640. reqType: {} as WithdrawOrder对象,
  641. resType: {} as any,
  642. },
  643. /** 添加withdraw_order_log */
  644. add_6: {
  645. realUrl: '/pay/withdraw_order_log/add',
  646. reqType: {} as WithdrawOrderLog对象,
  647. resType: {} as any,
  648. },
  649. /** 根据提现订单id查询订单日志 */
  650. get: {
  651. realUrl: '/pay/withdraw_order_log/get',
  652. reqType: {} as WithdrawOrderLogParam,
  653. resType: {} as any,
  654. },
  655. /** 获取withdraw_order_log列表 */
  656. list_6: {
  657. realUrl: '/pay/withdraw_order_log/list',
  658. reqType: {} as IPageParams<WithdrawOrderLog对象>,
  659. resType: {} as any,
  660. },
  661. /** 修改withdraw_order_log */
  662. update_3: {
  663. realUrl: '/pay/withdraw_order_log/update',
  664. reqType: {} as WithdrawOrderLog对象,
  665. resType: {} as any,
  666. },
  667. /** 添加 */
  668. add_7: {
  669. realUrl: '/pay/withdraw_quota_config/add',
  670. reqType: {} as WithdrawQuotaConfig对象,
  671. resType: {} as any,
  672. },
  673. /** 根据ID查找余额限定 */
  674. find_5: {
  675. realUrl: '/pay/withdraw_quota_config/find',
  676. reqType: {} as WithdrawQuotaConfig对象,
  677. resType: {} as any,
  678. },
  679. /** 根据账户类型查询余额限定 */
  680. find_by_orgType: {
  681. realUrl: '/pay/withdraw_quota_config/find_by_orgType',
  682. reqType: {} as WithdrawQuotaConfig对象,
  683. resType: {} as any,
  684. },
  685. /** 获取账户余额限定列表 */
  686. list_7: {
  687. realUrl: '/pay/withdraw_quota_config/list',
  688. reqType: {} as IPageParams<WithdrawQuotaConfig对象>,
  689. resType: {} as any,
  690. },
  691. /** 修改账户余额限定 */
  692. update_4: {
  693. realUrl: '/pay/withdraw_quota_config/update',
  694. reqType: {} as 修改提现账户余额限定参数,
  695. resType: {} as any,
  696. },
  697. /** 根据账户类型获取账户余额限定修改记录列表 */
  698. list_by_orgType: {
  699. realUrl: '/pay/withdraw_quota_log/list_by_orgType',
  700. reqType: {} as IPageParams<WithdrawQuotaLog对象>,
  701. resType: {} as any,
  702. },
  703. /** 获取微信AccessToken */
  704. access_token: {
  705. realUrl: '/pay/wx/access_token',
  706. resType: {} as string,
  707. },
  708. /** 获取微信openid */
  709. get_open_id: {
  710. realUrl: '/pay/wx/get_open_id',
  711. reqType: {} as WxpayParam,
  712. resType: {} as string,
  713. },
  714. /** 获取jsapi签名 */
  715. js_sign: {
  716. realUrl: '/pay/wx/js_sign',
  717. reqType: {} as JsSignParam,
  718. resType: {} as any,
  719. },
  720. /** 获取微信小程序用户信息 */
  721. mini_user_info: {
  722. realUrl: '/pay/wx/mini_user_info',
  723. reqType: {} as WxpayParam,
  724. resType: {} as User对象,
  725. },
  726. /** 获取并更新微信openid */
  727. open_id: {
  728. realUrl: '/pay/wx/open_id',
  729. reqType: {} as WxpayParam,
  730. resType: {} as string,
  731. },
  732. /** 获取微信用户信息 */
  733. user_info: {
  734. realUrl: '/pay/wx/user_info',
  735. reqType: {} as WxpayParam,
  736. resType: {} as User对象,
  737. },
  738. }