| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722 |
- export default {
- /** 按日查询毛利估算(元) */
- profit_day: {
- realUrl: '/pay/data/profit_day',
- reqType: {} as 优惠运营分析查询参数实体类,
- resType: {} as Array<长城毛利返回的实体类日统计>,
- },
- /** 按月查询毛利估算(元) */
- profit_month: {
- realUrl: '/pay/data/profit_month',
- reqType: {} as 优惠运营分析查询参数实体类,
- resType: {} as Array<长城毛利返回的实体类日统计>,
- },
- /** 按日查询优惠金额(元) */
- rebate_amount_day: {
- realUrl: '/pay/data/rebate_amount_day',
- reqType: {} as 优惠运营分析查询参数实体类,
- resType: {} as Array<优惠金额_元_返回的实体类日统计>,
- },
- /** 按月查询优惠金额(元) */
- rebate_amount_month: {
- realUrl: '/pay/data/rebate_amount_month',
- reqType: {} as 优惠运营分析查询参数实体类,
- resType: {} as Array<优惠金额_元_返回的实体类月统计>,
- },
- /** 按日查询优惠平均差价(元/公斤) */
- rebate_price_day: {
- realUrl: '/pay/data/rebate_price_day',
- reqType: {} as 优惠运营分析查询参数实体类,
- resType: {} as Array<优惠平均差价返回的实体类月统计日统计>,
- },
- /** 按月查询优惠平均差价(元/公斤) */
- rebate_price_month: {
- realUrl: '/pay/data/rebate_price_month',
- reqType: {} as 优惠运营分析查询参数实体类,
- resType: {} as Array<优惠平均差价返回的实体类月统计日统计>,
- },
- /** 按日查询销量优惠分布(公斤) */
- rebate_qty_day: {
- realUrl: '/pay/data/rebate_qty_day',
- reqType: {} as 优惠运营分析查询参数实体类,
- resType: {} as Array<销量优惠分布返回的实体类日统计>,
- },
- /** 按月查询销量优惠分布(公斤) */
- rebate_qty_month: {
- realUrl: '/pay/data/rebate_qty_month',
- reqType: {} as 优惠运营分析查询参数实体类,
- resType: {} as Array<销量优惠分布返回的实体类日统计>,
- },
- /** 创建加气订单 */
- add: {
- realUrl: '/pay/gas_order/add',
- reqType: {} as GasOrder对象,
- resType: {} as any,
- },
- /** 创建加气订单 */
- add_v2: {
- realUrl: '/pay/gas_order/add_v2',
- reqType: {} as GasOrder对象,
- resType: {} as any,
- },
- /** 取消订单for收银员 */
- cancel_forcashier: {
- realUrl: '/pay/gas_order/cancel_forcashier',
- reqType: {} as GasOrder对象,
- resType: {} as any,
- },
- /** 物流客户订单查询接口,带时间 */
- list_withtime: {
- realUrl: '/pay/gas_order/carrier/list_withtime',
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as any,
- },
- /** 物流公司专享优惠订单查询接口,带时间 */
- list_withtime_1: {
- realUrl: '/pay/gas_order/carrier_rebate/list_withtime',
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as any,
- },
- /** 查询指定司机是否有待支付的订单 */
- driver_order_check: {
- realUrl: '/pay/gas_order/driver_order_check',
- reqType: {} as 通用id参数,
- resType: {} as boolean,
- },
- /** 导出订单列表 */
- export: {
- realUrl: '/pay/gas_order/export',
- reqType: {} as ExcelExportParam,
- },
- /** 查找gas_order */
- find: {
- realUrl: '/pay/gas_order/find',
- resType: {} as any,
- },
- /** 统计日物流公司订单数 */
- find_carrier_order_total: {
- realUrl: '/pay/gas_order/find_carrier_order_total',
- reqType: {} as SumOrgOrderNumParam,
- resType: {} as any,
- },
- /** 查询加气站待支付订单数量,今日的 */
- find_gasstation_nopayorder_number: {
- realUrl: '/pay/gas_order/find_gasstation_nopayorder_number',
- reqType: {} as GasstationIdParam,
- resType: {} as any,
- },
- /** 统计日加气站订单数 */
- find_gasstation_order_total: {
- realUrl: '/pay/gas_order/find_gasstation_order_total',
- reqType: {} as SumOrgOrderNumParam,
- resType: {} as any,
- },
- /** 查找最新的一条订单for司机 */
- find_latest: {
- realUrl: '/pay/gas_order/find_latest',
- reqType: {} as FindLatestParam,
- resType: {} as any,
- },
- /** 待支付订单详情for司机 */
- find_nopayfordriver: {
- realUrl: '/pay/gas_order/find_nopayfordriver',
- reqType: {} as Record<any, any>,
- resType: {} as any,
- },
- /** 待支付订单详情for司机 */
- find_unpayfordriver: {
- realUrl: '/pay/gas_order/find_unpayfordriver',
- resType: {} as GasOrder对象,
- },
- /** 根据司机id查询当前司机是否首次下单支付完成 */
- first_finished_order_check: {
- realUrl: '/pay/gas_order/first_finished_order_check',
- reqType: {} as 通用id参数,
- resType: {} as boolean,
- },
- /** 加气站订单查询接口,带时间 */
- list_withtime_2: {
- realUrl: '/pay/gas_order/gas/list_withtime',
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as any,
- },
- /** 查询加气站日订单数 */
- get_gasstation_order_total: {
- realUrl: '/pay/gas_order/get_gasstation_order_total',
- reqType: {} as SumGasstationOrderNumParam,
- resType: {} as any,
- },
- /** 查询订单列表 */
- get_order_list: {
- realUrl: '/pay/gas_order/get_order_list',
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as GasOrderRes,
- },
- /** 查询订单优惠列表 */
- get_order_rebates: {
- realUrl: '/pay/gas_order/get_order_rebates',
- reqType: {} as 通用id参数,
- resType: {} as Array<GasOrderRebate对象>,
- },
- /** 查询订单 */
- get_orders: {
- realUrl: '/pay/gas_order/get_orders',
- reqType: {} as IPageParams<订单查询参数实体类>,
- resType: {} as any,
- },
- /** 获取gas_order列表 */
- list: {
- realUrl: '/pay/gas_order/list',
- reqType: {} as IPageParams<GasOrder对象>,
- resType: {} as any,
- },
- /** 收银员管理端-查询加气订单 */
- list_for_gasstation: {
- realUrl: '/pay/gas_order/list_for_gasstation',
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as any,
- },
- /** 通用订单查询接口,带时间 */
- list_withtime_3: {
- realUrl: '/pay/gas_order/list_withtime',
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as any,
- },
- /** 查询指定车辆是否有待支付的订单 */
- truck_order_check: {
- realUrl: '/pay/gas_order/truck_order_check',
- reqType: {} as 通用id参数,
- resType: {} as boolean,
- },
- /** 修改gas_order */
- update: {
- realUrl: '/pay/gas_order/update',
- reqType: {} as GasOrder对象,
- resType: {} as any,
- },
- /** 司机创建气瓶检测预约订单 */
- add_1: {
- realUrl: '/pay/gct_order/add',
- reqType: {} as 气瓶检测订单查询参数,
- resType: {} as GctOrder对象,
- },
- /** 根据id取消气瓶检测订单 */
- cancel: {
- realUrl: '/pay/gct_order/cancel',
- reqType: {} as GctOrder对象,
- resType: {} as boolean,
- },
- /** 根据id查询气瓶检测订单详情 */
- get_by_id: {
- realUrl: '/pay/gct_order/get_by_id',
- reqType: {} as 通用id参数,
- resType: {} as GctOrder对象,
- },
- /** getDriverOrders */
- get_driver_appointed_order: {
- realUrl: '/pay/gct_order/get_driver_appointed_order',
- reqType: {} as 司机预约检测订单查询参数,
- resType: {} as Array<GctOrder对象>,
- },
- /** 运营管理后台气瓶检测订单分页查询 */
- page_list: {
- realUrl: '/pay/gct_order/page_list',
- reqType: {} as IPageParams<气瓶检测订单查询参数>,
- resType: {} as IPage<GctOrder对象>,
- },
- /** 分页查询司机自己的气瓶检测订单 */
- page_list_for_driver: {
- realUrl: '/pay/gct_order/page_list_for_driver',
- reqType: {} as IPageParams<气瓶检测订单查询参数>,
- resType: {} as IPage<GctOrder对象>,
- },
- /** 加气站的气瓶检测订单分页查询 */
- page_list_for_gasstation: {
- realUrl: '/pay/gct_order/page_list_for_gasstation',
- reqType: {} as IPageParams<气瓶检测订单查询参数>,
- resType: {} as IPage<GctOrder对象>,
- },
- /** 加气站确认返还资料 */
- confirm_returned: {
- realUrl: '/pay/gct_order_attach/confirm_returned',
- reqType: {} as 气瓶检测订单附件信息,
- resType: {} as boolean,
- },
- /** 加气站确认签收资料 */
- confirm_signed: {
- realUrl: '/pay/gct_order_attach/confirm_signed',
- reqType: {} as 气瓶检测订单附件信息,
- resType: {} as boolean,
- },
- /** 根据订单id查询订单所有的资料 */
- list_1: {
- realUrl: '/pay/gct_order_attach/list',
- reqType: {} as 通用id参数,
- resType: {} as Array<GctOrderAttach对象>,
- },
- /** 请求绑定银行卡 */
- bind_bankCard: {
- realUrl: '/pay/member/bind_bankCard',
- reqType: {} as BindCardParam,
- resType: {} as any,
- },
- /** 绑定手机 */
- bind_phone: {
- realUrl: '/pay/member/bind_phone',
- reqType: {} as BindPhoneParam,
- resType: {} as any,
- },
- /** childFillerAutoAuth */
- child_filler_auto_auth: {
- realUrl: '/pay/member/child_filler_auto_auth',
- reqType: {} as Org,
- resType: {} as boolean,
- },
- /** getBankCardBin */
- get_bankCardBin: {
- realUrl: '/pay/member/get_bankCardBin',
- reqType: {} as GetBankCardBinParam,
- resType: {} as any,
- },
- /** getMemberInfo */
- get_memberInfo: {
- realUrl: '/pay/member/get_memberInfo',
- reqType: {} as GetMemberInfoParam,
- resType: {} as any,
- },
- /** 获取企业认证相关状态 */
- get_org_auth_info: {
- realUrl: '/pay/member/get_org_auth_info',
- resType: {} as any,
- },
- /** idcard */
- idcard: {
- realUrl: '/pay/member/idcard',
- reqType: {} as 身份证二要素认证参数,
- resType: {} as boolean,
- },
- /** 渠道开户 */
- open_account: {
- realUrl: '/pay/member/open_account',
- reqType: {} as OpenAccountParam,
- resType: {} as any,
- },
- /** 查询绑定银行卡状态 */
- query_bankCard: {
- realUrl: '/pay/member/query_bankCard',
- reqType: {} as QueryBankCardParam,
- resType: {} as any,
- },
- /** 提现协议查询 */
- query_withdraw_protocol: {
- realUrl: '/pay/member/query_withdraw_protocol',
- reqType: {} as QuerySignContractParam,
- resType: {} as any,
- },
- /** 发送验证码 */
- send_sms_code: {
- realUrl: '/pay/member/send_sms_code',
- reqType: {} as SendVerificationCodeParam,
- resType: {} as any,
- },
- /** 转账授权 */
- sign_balance_protocol: {
- realUrl: '/pay/member/sign_balance_protocol',
- reqType: {} as SignBalanceProtocolParam,
- resType: {} as any,
- },
- /** 提现授权 */
- sign_withdraw_protocol: {
- realUrl: '/pay/member/sign_withdraw_protocol',
- reqType: {} as SignContractProtocolParam,
- resType: {} as any,
- },
- /** 解除绑定银行卡 */
- unbind_bankCard: {
- realUrl: '/pay/member/unbind_bankCard',
- reqType: {} as UnbindBankCardParam,
- resType: {} as any,
- },
- /** 解除绑定手机 */
- unbind_phone: {
- realUrl: '/pay/member/unbind_phone',
- reqType: {} as UnBindPhoneParam,
- resType: {} as any,
- },
- /** 上传企业营业执照、身份证图片到通联 */
- upload_org_pic: {
- realUrl: '/pay/member/upload_org_pic',
- reqType: {} as IdcardCollectParam,
- resType: {} as any,
- },
- /** idcardAuth */
- idcard_auth: {
- realUrl: '/pay/member/vehicle_owner/idcard_auth',
- reqType: {} as 身份证二要素认证参数,
- resType: {} as boolean,
- },
- /** 物流公司B2B充值 */
- deposit_apply: {
- realUrl: '/pay/pay/deposit_apply',
- reqType: {} as B2BDepositParam,
- resType: {} as any,
- },
- /** 物流公司B2B充值,弹出银联页面 */
- deposit_apply_confirm: {
- realUrl: '/pay/pay/deposit_apply_confirm',
- reqType: {} as B2BDepositConfirmParam,
- resType: {} as any,
- },
- /** 气瓶检测微信支付 */
- gct_wxpay: {
- realUrl: '/pay/pay/gct_wxpay',
- reqType: {} as 气瓶检测订单微信支付参数,
- resType: {} as any,
- },
- /** 长城奥扬代物流公司B2B充值(直销) */
- gway_deposit_apply: {
- realUrl: '/pay/pay/gway_deposit_apply',
- reqType: {} as B2BDepositParam,
- resType: {} as any,
- },
- /** 长城奥扬发起向物流公司B2B充值(直销) */
- gway_deposit_start: {
- realUrl: '/pay/pay/gway_deposit_start',
- reqType: {} as B2BDepositParam,
- resType: {} as any,
- },
- /** 小程序支付 */
- minapay: {
- realUrl: '/pay/pay/minapay',
- reqType: {} as WxpayParam,
- resType: {} as any,
- },
- /** 订单支付 */
- order_pay: {
- realUrl: '/pay/pay/order_pay',
- reqType: {} as OrderPayParam,
- resType: {} as any,
- },
- /** 查询账户收支明细 */
- query_bankIn_expDetail: {
- realUrl: '/pay/pay/query_bankIn_expDetail',
- reqType: {} as QueryBankInExpDetailParam,
- resType: {} as any,
- },
- /** 查询账户资金流水分页列表 */
- query_cash_flow: {
- realUrl: '/pay/pay/query_cash_flow',
- reqType: {} as IPageParams<QueryCashFlowParam>,
- resType: {} as any,
- },
- /** 挂靠车消费 */
- rely_consume: {
- realUrl: '/pay/pay/rely_consume',
- reqType: {} as SelfConsumeParam,
- resType: {} as any,
- },
- /** 自营车消费 */
- self_consume: {
- realUrl: '/pay/pay/self_consume',
- reqType: {} as SelfConsumeParam,
- resType: {} as any,
- },
- /** 提现申请 */
- withdraw_apply: {
- realUrl: '/pay/pay/withdraw_apply',
- reqType: {} as WithdrawParam,
- resType: {} as any,
- },
- /** 微信支付 */
- wxpay: {
- realUrl: '/pay/pay/wxpay',
- reqType: {} as WxpayParam,
- resType: {} as any,
- },
- /** 根据渠道id获取渠道信息 */
- find_1: {
- realUrl: '/pay/pay_channel/find',
- reqType: {} as PayChannel对象,
- resType: {} as any,
- },
- /** 新增充值订单(物流商充值) */
- add_2: {
- realUrl: '/pay/recharge_order/add',
- reqType: {} as RechargeOrder对象,
- resType: {} as any,
- },
- /** 查找recharge_order */
- find_2: {
- realUrl: '/pay/recharge_order/find',
- resType: {} as any,
- },
- /** 根据车牌号查询该车辆的充值流水 */
- find_by_car_number: {
- realUrl: '/pay/recharge_order/find_by_car_number',
- reqType: {} as IPageParams<RechargeOrderParam>,
- resType: {} as any,
- },
- /** 获取recharge_order列表 */
- list_2: {
- realUrl: '/pay/recharge_order/list',
- reqType: {} as IPageParams<RechargeOrderParam>,
- resType: {} as any,
- },
- /** 根据日期获取recharge_order列表 */
- list_withtime_4: {
- realUrl: '/pay/recharge_order/list_withtime',
- reqType: {} as IPageParams<RechargeOrderParam>,
- resType: {} as any,
- },
- /** 添加register_log */
- add_3: {
- realUrl: '/pay/register_log/add',
- reqType: {} as RegisterLog对象,
- resType: {} as any,
- },
- /** 最新一条-异步回调审核结果 */
- find_failReason: {
- realUrl: '/pay/register_log/find_failReason',
- reqType: {} as RegisterLog对象,
- resType: {} as any,
- },
- /** 最新一条-异步回调返回信息日志详情 */
- find_latest_1: {
- realUrl: '/pay/register_log/find_latest',
- reqType: {} as RegisterLog对象,
- resType: {} as any,
- },
- /** 获取register_log列表 */
- list_3: {
- realUrl: '/pay/register_log/list',
- reqType: {} as IPageParams<RegisterLog对象>,
- resType: {} as any,
- },
- /** 修改register_log */
- update_1: {
- realUrl: '/pay/register_log/update',
- reqType: {} as RegisterLog对象,
- resType: {} as any,
- },
- /** 创建加气订单 */
- add_gasorder: {
- realUrl: '/pay/third_party/add_gasorder',
- reqType: {} as TpGasOrderParam,
- resType: {} as any,
- },
- /** 取消订单 */
- cancel_gasorder: {
- realUrl: '/pay/third_party/cancel_gasorder',
- reqType: {} as TpGasOrderParam,
- resType: {} as any,
- },
- /** 加气订单消费接口 */
- consume: {
- realUrl: '/pay/third_party/consume',
- reqType: {} as TpGasOrderParam,
- resType: {} as any,
- },
- /** 物流司机信息分页查询接口 */
- page_driver: {
- realUrl: '/pay/third_party/page_driver',
- reqType: {} as IPageParams<成丰对接_站全量查询参数>,
- resType: {} as any,
- },
- /** 物流订单信息分页查询接口 */
- page_gasorder: {
- realUrl: '/pay/third_party/page_gasorder',
- reqType: {} as IPageParams<成丰对接_站全量查询参数>,
- resType: {} as any,
- },
- /** 查找gas_order */
- qry_gasorder: {
- realUrl: '/pay/third_party/qry_gasorder',
- reqType: {} as TpGasOrderParam,
- resType: {} as 外部对接加气订单VO,
- },
- /** 提现审核,通过:status=1,驳回:status=5 */
- check: {
- realUrl: '/pay/withdraw_check_log/check',
- reqType: {} as WithdrawCheckLog对象,
- resType: {} as any,
- },
- /** 通过withdraw_order_id,查询最新的审核记录 */
- find_3: {
- realUrl: '/pay/withdraw_check_log/find',
- reqType: {} as WithdrawCheckLog对象,
- resType: {} as any,
- },
- /** 查询审核记录日志 */
- list_4: {
- realUrl: '/pay/withdraw_check_log/list',
- reqType: {} as IPageParams<WithdrawCheckLog对象>,
- resType: {} as any,
- },
- /** 添加 */
- add_4: {
- realUrl: '/pay/withdraw_config/add',
- reqType: {} as WithdrawConfig对象,
- resType: {} as any,
- },
- /** 批量添加 */
- batch_add: {
- realUrl: '/pay/withdraw_config/batch_add',
- resType: {} as any,
- },
- /** 根据组织名称+限制状态,获取withdraw_config列表 */
- list_by_param: {
- realUrl: '/pay/withdraw_config/list_by_param',
- reqType: {} as IPageParams<WithdrawConfig对象>,
- resType: {} as any,
- },
- /** 修改限制状态 */
- update_limitstatus: {
- realUrl: '/pay/withdraw_config/update_limitstatus',
- reqType: {} as WithdrawConfig对象,
- resType: {} as any,
- },
- /** 添加withdraw_order */
- add_5: {
- realUrl: '/pay/withdraw_order/add',
- reqType: {} as WithdrawOrder对象,
- resType: {} as any,
- },
- /** 获取待审核列表,status=0 */
- check_list: {
- realUrl: '/pay/withdraw_order/check_list',
- reqType: {} as IPageParams<WithdrawOrder对象>,
- resType: {} as any,
- },
- /** 提现电子回单下载 */
- eleReceiptDownload: {
- realUrl: '/pay/withdraw_order/eleReceiptDownload',
- reqType: {} as WithdrawOrder对象,
- resType: {} as any,
- },
- /** 根据订单号查询订单 */
- find_4: {
- realUrl: '/pay/withdraw_order/find',
- reqType: {} as WithdrawOrder对象,
- resType: {} as any,
- },
- /** 获取机构提现总金额 */
- find_total_amount: {
- realUrl: '/pay/withdraw_order/find_total_amount',
- reqType: {} as WithdrawOrderParam,
- resType: {} as any,
- },
- /** 获取提现列表 */
- list_5: {
- realUrl: '/pay/withdraw_order/list',
- reqType: {} as IPageParams<WithdrawOrderListParam>,
- resType: {} as any,
- },
- /** 修改withdraw_order */
- update_2: {
- realUrl: '/pay/withdraw_order/update',
- reqType: {} as WithdrawOrder对象,
- resType: {} as any,
- },
- /** 添加withdraw_order_log */
- add_6: {
- realUrl: '/pay/withdraw_order_log/add',
- reqType: {} as WithdrawOrderLog对象,
- resType: {} as any,
- },
- /** 根据提现订单id查询订单日志 */
- get: {
- realUrl: '/pay/withdraw_order_log/get',
- reqType: {} as WithdrawOrderLogParam,
- resType: {} as any,
- },
- /** 获取withdraw_order_log列表 */
- list_6: {
- realUrl: '/pay/withdraw_order_log/list',
- reqType: {} as IPageParams<WithdrawOrderLog对象>,
- resType: {} as any,
- },
- /** 修改withdraw_order_log */
- update_3: {
- realUrl: '/pay/withdraw_order_log/update',
- reqType: {} as WithdrawOrderLog对象,
- resType: {} as any,
- },
- /** 添加 */
- add_7: {
- realUrl: '/pay/withdraw_quota_config/add',
- reqType: {} as WithdrawQuotaConfig对象,
- resType: {} as any,
- },
- /** 根据ID查找余额限定 */
- find_5: {
- realUrl: '/pay/withdraw_quota_config/find',
- reqType: {} as WithdrawQuotaConfig对象,
- resType: {} as any,
- },
- /** 根据账户类型查询余额限定 */
- find_by_orgType: {
- realUrl: '/pay/withdraw_quota_config/find_by_orgType',
- reqType: {} as WithdrawQuotaConfig对象,
- resType: {} as any,
- },
- /** 获取账户余额限定列表 */
- list_7: {
- realUrl: '/pay/withdraw_quota_config/list',
- reqType: {} as IPageParams<WithdrawQuotaConfig对象>,
- resType: {} as any,
- },
- /** 修改账户余额限定 */
- update_4: {
- realUrl: '/pay/withdraw_quota_config/update',
- reqType: {} as 修改提现账户余额限定参数,
- resType: {} as any,
- },
- /** 根据账户类型获取账户余额限定修改记录列表 */
- list_by_orgType: {
- realUrl: '/pay/withdraw_quota_log/list_by_orgType',
- reqType: {} as IPageParams<WithdrawQuotaLog对象>,
- resType: {} as any,
- },
- /** 获取微信AccessToken */
- access_token: {
- realUrl: '/pay/wx/access_token',
- resType: {} as string,
- },
- /** 获取微信openid */
- get_open_id: {
- realUrl: '/pay/wx/get_open_id',
- reqType: {} as WxpayParam,
- resType: {} as string,
- },
- /** 获取jsapi签名 */
- js_sign: {
- realUrl: '/pay/wx/js_sign',
- reqType: {} as JsSignParam,
- resType: {} as any,
- },
- /** 获取微信小程序用户信息 */
- mini_user_info: {
- realUrl: '/pay/wx/mini_user_info',
- reqType: {} as WxpayParam,
- resType: {} as User对象,
- },
- /** 获取并更新微信openid */
- open_id: {
- realUrl: '/pay/wx/open_id',
- reqType: {} as WxpayParam,
- resType: {} as string,
- },
- /** 获取微信用户信息 */
- user_info: {
- realUrl: '/pay/wx/user_info',
- reqType: {} as WxpayParam,
- resType: {} as User对象,
- },
- }
|