|
|
@@ -83,6 +83,89 @@ export default {
|
|
|
reqType: {} as TransferOrder,
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
+ /** 北京银行接口测试-当日明细查询 */
|
|
|
+ test_cur: {
|
|
|
+ realUrl: '/account/beijing/test_cur',
|
|
|
+ reqType: {} as {
|
|
|
+ /** undefined */
|
|
|
+ DOcFlag?: string
|
|
|
+ /** 23位北京银行企业帐号 */
|
|
|
+ accountNo?: string
|
|
|
+ /** 最大金额,最大长度为 16 位数字字符串(无任何分割符,后两位表示小数) */
|
|
|
+ maxAmount?: string
|
|
|
+ /** 最小金额,最大长度为 16 位数字字符串(无任何分割符,后两位表示小数) */
|
|
|
+ minAmount?: string
|
|
|
+ /** 交易名称 */
|
|
|
+ opName?: string
|
|
|
+ /** 客户端请求时间 */
|
|
|
+ reqTime?: string
|
|
|
+ /** 交易序列号(客户端唯一标识) */
|
|
|
+ serialNo?: string
|
|
|
+ },
|
|
|
+ resType: {} as any,
|
|
|
+ },
|
|
|
+ /** 北京银行接口测试-历史明细查询 */
|
|
|
+ test_history: {
|
|
|
+ realUrl: '/account/beijing/test_history',
|
|
|
+ reqType: {} as {
|
|
|
+ /** 查询帐号, 23 位北京银行企业帐号 */
|
|
|
+ accountNo?: string
|
|
|
+ /** 起始日期 8 位日期串 yyyymmdd */
|
|
|
+ beginDate?: string
|
|
|
+ /** 凭证号 */
|
|
|
+ checkNum?: string
|
|
|
+ /** 终止日期 8 位日期串 yyyymmdd */
|
|
|
+ endDate?: string
|
|
|
+ /** 最大金额 */
|
|
|
+ maxAmount?: string
|
|
|
+ /** 最小金额 */
|
|
|
+ minAmount?: string
|
|
|
+ },
|
|
|
+ resType: {} as any,
|
|
|
+ },
|
|
|
+ /** 北京银行接口测试-分页明细查询 */
|
|
|
+ test_page: {
|
|
|
+ realUrl: '/account/beijing/test_page',
|
|
|
+ reqType: {} as {
|
|
|
+ /** 账号 23 位 */
|
|
|
+ acctNo?: string
|
|
|
+ /** 对方户名 */
|
|
|
+ counterpartyName?: string
|
|
|
+ /** 终止日期 yyyymmdd */
|
|
|
+ endDate?: string
|
|
|
+ /** 最大金额 */
|
|
|
+ maxiAmt?: string
|
|
|
+ /** 最小金额 */
|
|
|
+ miniAmt?: string
|
|
|
+ /** 交易名称 */
|
|
|
+ opName?: string
|
|
|
+ /** 每页数量,每包返回明细总数 */
|
|
|
+ pageSize?: string
|
|
|
+ /** 客户端请求时间 */
|
|
|
+ reqTime?: string
|
|
|
+ /** 交易序列号(客户端唯一标识) */
|
|
|
+ serialNo?: string
|
|
|
+ /** 排序标志,日期 0 金额 1(默认 0) */
|
|
|
+ sortFlag?: string
|
|
|
+ /** 排序类型,倒序 0 正序 1 */
|
|
|
+ sortType?: string
|
|
|
+ /** 起始日期 yyyymmdd */
|
|
|
+ startDate?: string
|
|
|
+ /** 起始页号,默认为 1 */
|
|
|
+ startPageNo?: string
|
|
|
+ /** 查询的条数(第一次查询时会返回总数) */
|
|
|
+ totalNum?: string
|
|
|
+ /** A:全部,C:借,D:贷 */
|
|
|
+ tranDirection?: string
|
|
|
+ },
|
|
|
+ resType: {} as any,
|
|
|
+ },
|
|
|
+ /** 北京银行接口测试-余额查询 */
|
|
|
+ test_yue: {
|
|
|
+ realUrl: '/account/beijing/test_yue',
|
|
|
+
|
|
|
+ resType: {} as any,
|
|
|
+ },
|
|
|
/** 优惠卡作废接口 */
|
|
|
cancel_card: {
|
|
|
realUrl: '/account/card_info/cancel_card',
|
|
|
@@ -131,10 +214,28 @@ export default {
|
|
|
reqType: {} as 通用id参数,
|
|
|
resType: {} as Truck,
|
|
|
},
|
|
|
+ /** 导出流水 */
|
|
|
+ download: {
|
|
|
+ realUrl: '/account/carreir_trade_log/download',
|
|
|
+ reqType: {} as CarrierTradeLogListParam,
|
|
|
+ resType: {} as StreamingResponseBody,
|
|
|
+ },
|
|
|
+ /** 分页查询资金账户流水 */
|
|
|
+ list: {
|
|
|
+ realUrl: '/account/carreir_trade_log/list',
|
|
|
+ reqType: {} as IPageParams<CarrierTradeLogListParam>,
|
|
|
+ resType: {} as CarrierTradeLogInfoVO物流资金流水VO类,
|
|
|
+ },
|
|
|
+ /** 刷新资金账户 */
|
|
|
+ refresh: {
|
|
|
+ realUrl: '/account/carreir_trade_log/refresh',
|
|
|
+ reqType: {} as 通用id参数,
|
|
|
+ resType: {} as 刷新资金账户操作返回VO类,
|
|
|
+ },
|
|
|
/** 提醒配置查询 */
|
|
|
config: {
|
|
|
realUrl: '/account/carrier_balance/config',
|
|
|
- reqType: {} as CarrierBalanceParam,
|
|
|
+ reqType: {} as 物流公司余额查询VO参数,
|
|
|
resType: {} as CarrierNoticeConfigVO对象,
|
|
|
},
|
|
|
/** 提醒配置更新 */
|
|
|
@@ -152,7 +253,7 @@ export default {
|
|
|
/** 提醒记录 */
|
|
|
log: {
|
|
|
realUrl: '/account/carrier_balance/log',
|
|
|
- reqType: {} as IPageParams<CarrierBalanceParam>,
|
|
|
+ reqType: {} as IPageParams<物流公司余额查询VO参数>,
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 物流余额监控列表 */
|
|
|
@@ -170,7 +271,7 @@ export default {
|
|
|
/** 分页查询车辆账户列表列表 */
|
|
|
page_truck_accounts: {
|
|
|
realUrl: '/account/carrier_balance/page_truck_accounts',
|
|
|
- reqType: {} as IPageParams<CarrierBalanceParam>,
|
|
|
+ reqType: {} as IPageParams<物流公司余额查询VO参数>,
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 物流余额监控金额汇总 */
|
|
|
@@ -182,7 +283,7 @@ export default {
|
|
|
/** 查询车辆账户金额汇总 */
|
|
|
sum_truck_accounts: {
|
|
|
realUrl: '/account/carrier_balance/sum_truck_accounts',
|
|
|
- reqType: {} as CarrierBalanceParam,
|
|
|
+ reqType: {} as 物流公司余额查询VO参数,
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 获取直销余额非0的车辆账户列表 */
|
|
|
@@ -234,7 +335,7 @@ export default {
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 下载 */
|
|
|
- download: {
|
|
|
+ download_1: {
|
|
|
realUrl: '/account/directsales/excel/download',
|
|
|
reqType: {} as ExcelExportParam,
|
|
|
|
|
|
@@ -284,7 +385,7 @@ export default {
|
|
|
/** 获取物流公司企业余额(直销模式) */
|
|
|
find_carrier_balance: {
|
|
|
realUrl: '/account/directsales/org_account/find_carrier_balance',
|
|
|
- reqType: {} as CarrierBalanceParam,
|
|
|
+ reqType: {} as 物流公司余额查询VO参数,
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** getOrgAccountBalanceByOrgId */
|
|
|
@@ -312,7 +413,7 @@ export default {
|
|
|
resType: {} as number,
|
|
|
},
|
|
|
/** 获取org_account列表(直销模式) */
|
|
|
- list: {
|
|
|
+ list_1: {
|
|
|
realUrl: '/account/directsales/org_account/list',
|
|
|
reqType: {} as IPageParams<OrgAccount对象>,
|
|
|
resType: {} as any,
|
|
|
@@ -372,7 +473,7 @@ export default {
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 增加了数据权限的获取truck_account列表(直销模式) */
|
|
|
- list_1: {
|
|
|
+ list_2: {
|
|
|
realUrl: '/account/directsales/truck_account/district/list',
|
|
|
reqType: {} as IPageParams<TruckAccount对象>,
|
|
|
resType: {} as any,
|
|
|
@@ -414,7 +515,7 @@ export default {
|
|
|
resType: {} as number,
|
|
|
},
|
|
|
/** 获取truck_account列表(直销模式) */
|
|
|
- list_2: {
|
|
|
+ list_3: {
|
|
|
realUrl: '/account/directsales/truck_account/list',
|
|
|
reqType: {} as IPageParams<TruckAccount对象>,
|
|
|
resType: {} as any,
|
|
|
@@ -438,11 +539,59 @@ export default {
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 下载 */
|
|
|
- download_1: {
|
|
|
+ download_2: {
|
|
|
realUrl: '/account/excel/download',
|
|
|
reqType: {} as ExcelExportParam,
|
|
|
|
|
|
},
|
|
|
+ /** 自定义日志类型自由调账接口(支持双向) */
|
|
|
+ account_update: {
|
|
|
+ realUrl: '/account/handle/account_update',
|
|
|
+ reqType: {} as AccountUpdateParam,
|
|
|
+ resType: {} as any,
|
|
|
+ },
|
|
|
+ /** 经销转直销(忽略账户余额) */
|
|
|
+ com_to_direct: {
|
|
|
+ realUrl: '/account/handle/com_to_direct',
|
|
|
+ reqType: {} as Com2DirectParam,
|
|
|
+ resType: {} as any,
|
|
|
+ },
|
|
|
+ /** 经销余额转直销账户 */
|
|
|
+ combalance_to_direct: {
|
|
|
+ realUrl: '/account/handle/combalance_to_direct',
|
|
|
+ reqType: {} as Com2DirectParam,
|
|
|
+ resType: {} as any,
|
|
|
+ },
|
|
|
+ /** 直销转经销(忽略账户余额) */
|
|
|
+ direct_to_com: {
|
|
|
+ realUrl: '/account/handle/direct_to_com',
|
|
|
+ reqType: {} as Direct2ComParam,
|
|
|
+ resType: {} as any,
|
|
|
+ },
|
|
|
+ /** 直销提现接口(线上记账,线下打款) */
|
|
|
+ direct_withdraw: {
|
|
|
+ realUrl: '/account/handle/direct_withdraw',
|
|
|
+ reqType: {} as WithdrawParam,
|
|
|
+ resType: {} as any,
|
|
|
+ },
|
|
|
+ /** 直销余额转经销账户 */
|
|
|
+ directbalance_to_com: {
|
|
|
+ realUrl: '/account/handle/directbalance_to_com',
|
|
|
+ reqType: {} as Direct2ComParam,
|
|
|
+ resType: {} as any,
|
|
|
+ },
|
|
|
+ /** 北银流水补账(支持双向补账,注意下账删除记录和流水) */
|
|
|
+ flow_add: {
|
|
|
+ realUrl: '/account/handle/flow_add',
|
|
|
+ reqType: {} as FlowAddParam,
|
|
|
+ resType: {} as any,
|
|
|
+ },
|
|
|
+ /** 手动上账接口(支持双向,注意下账会删除记录和流水) */
|
|
|
+ hand_add: {
|
|
|
+ realUrl: '/account/handle/hand_add',
|
|
|
+ reqType: {} as HandAddParam,
|
|
|
+ resType: {} as any,
|
|
|
+ },
|
|
|
/** 添加org_account */
|
|
|
add_2: {
|
|
|
realUrl: '/account/org_account/add',
|
|
|
@@ -488,9 +637,15 @@ export default {
|
|
|
/** 获取物流公司企业余额 */
|
|
|
find_carrier_balance_1: {
|
|
|
realUrl: '/account/org_account/find_carrier_balance',
|
|
|
- reqType: {} as CarrierBalanceParam,
|
|
|
+ reqType: {} as 物流公司余额查询VO参数,
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
+ /** 获取物流公司余额信息(包含直销经销车辆账户余额) */
|
|
|
+ find_carrier_balance_info: {
|
|
|
+ realUrl: '/account/org_account/find_carrier_balance_info',
|
|
|
+ reqType: {} as 物流公司余额查询VO参数,
|
|
|
+ resType: {} as 物流资金管理VO类,
|
|
|
+ },
|
|
|
/** getOrgAccountBalanceByOrgId */
|
|
|
get_balance_by_org_id_1: {
|
|
|
realUrl: '/account/org_account/get_balance_by_org_id',
|
|
|
@@ -510,7 +665,7 @@ export default {
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 获取org_account列表 */
|
|
|
- list_3: {
|
|
|
+ list_4: {
|
|
|
realUrl: '/account/org_account/list',
|
|
|
reqType: {} as IPageParams<OrgAccount对象>,
|
|
|
resType: {} as any,
|
|
|
@@ -558,7 +713,7 @@ export default {
|
|
|
resType: {} as boolean,
|
|
|
},
|
|
|
/** 下载流水列表,财务导出专用 */
|
|
|
- download_2: {
|
|
|
+ download_3: {
|
|
|
realUrl: '/account/org_account_log/download',
|
|
|
reqType: {} as OrgAccountLogParam,
|
|
|
resType: {} as StreamingResponseBody,
|
|
|
@@ -570,7 +725,7 @@ export default {
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 分页查询平台方企业资金账户流水 */
|
|
|
- list_4: {
|
|
|
+ list_5: {
|
|
|
realUrl: '/account/org_account_log/list',
|
|
|
reqType: {} as IPageParams<OrgAccountLogParam>,
|
|
|
resType: {} as any,
|
|
|
@@ -588,7 +743,7 @@ export default {
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 获取org_carrier_log列表 */
|
|
|
- list_5: {
|
|
|
+ list_6: {
|
|
|
realUrl: '/account/org_carrier_log/list',
|
|
|
reqType: {} as IPageParams<OrgCarrierLog对象>,
|
|
|
resType: {} as any,
|
|
|
@@ -612,7 +767,7 @@ export default {
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 获取org_gasstation_log列表 */
|
|
|
- list_6: {
|
|
|
+ list_7: {
|
|
|
realUrl: '/account/org_gasstation_log/list',
|
|
|
reqType: {} as IPageParams<OrgGasstationLog对象>,
|
|
|
resType: {} as any,
|
|
|
@@ -630,7 +785,7 @@ export default {
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 获取org_xqkj_log列表 */
|
|
|
- list_7: {
|
|
|
+ list_8: {
|
|
|
realUrl: '/account/org_xqkj_log/list',
|
|
|
reqType: {} as IPageParams<OrgXqkjLog对象>,
|
|
|
resType: {} as any,
|
|
|
@@ -672,7 +827,7 @@ export default {
|
|
|
resType: {} as boolean,
|
|
|
},
|
|
|
/** 增加了数据权限的获取truck_account列表 */
|
|
|
- list_8: {
|
|
|
+ list_9: {
|
|
|
realUrl: '/account/truck_account/district/list',
|
|
|
reqType: {} as IPageParams<TruckAccount对象>,
|
|
|
resType: {} as any,
|
|
|
@@ -719,6 +874,12 @@ export default {
|
|
|
reqType: {} as CarInfoQryParam,
|
|
|
resType: {} as 车辆账户相关信息VO类,
|
|
|
},
|
|
|
+ /** 获取车辆账户余额信息(经销+直销) */
|
|
|
+ get_trcuk_info: {
|
|
|
+ realUrl: '/account/truck_account/get_trcuk_info',
|
|
|
+ reqType: {} as CarInfoQryParam,
|
|
|
+ resType: {} as TruckAccount对象,
|
|
|
+ },
|
|
|
/** 初始化数据:批量新增物流公司北京银行卡车账户 */
|
|
|
init_beijing_acc_org: {
|
|
|
realUrl: '/account/truck_account/init_beijing_acc_org',
|
|
|
@@ -732,7 +893,7 @@ export default {
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 获取truck_account列表 */
|
|
|
- list_9: {
|
|
|
+ list_10: {
|
|
|
realUrl: '/account/truck_account/list',
|
|
|
reqType: {} as IPageParams<TruckAccount对象>,
|
|
|
resType: {} as any,
|
|
|
@@ -774,7 +935,7 @@ export default {
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 获取truck_account_log列表 */
|
|
|
- list_10: {
|
|
|
+ list_11: {
|
|
|
realUrl: '/account/truck_account_log/list',
|
|
|
reqType: {} as IPageParams<TruckAccountLog对象>,
|
|
|
resType: {} as any,
|
|
|
@@ -828,7 +989,7 @@ export default {
|
|
|
resType: {} as 司机账户余额信息,
|
|
|
},
|
|
|
/** 获取user_account列表 */
|
|
|
- list_11: {
|
|
|
+ list_12: {
|
|
|
realUrl: '/account/user_account/list',
|
|
|
reqType: {} as IPageParams<UserAccount对象>,
|
|
|
resType: {} as any,
|
|
|
@@ -864,7 +1025,7 @@ export default {
|
|
|
resType: {} as any,
|
|
|
},
|
|
|
/** 获取user_account_log列表 */
|
|
|
- list_12: {
|
|
|
+ list_13: {
|
|
|
realUrl: '/account/user_account_log/list',
|
|
|
reqType: {} as IPageParams<UserAccountLog对象>,
|
|
|
resType: {} as any,
|