| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184 |
- export default {
- /** APP物流公司首页汇总 */
- app_carrier_index_sum: {
- realUrl: '/settle/carrier/app_carrier_index_sum' as const,
- reqType: {} as appCarrierIndexSumParam,
- resType: {} as any,
- },
- /** 获取某个账期下物流公司订单结算 */
- find: {
- realUrl: '/settle/carrier/find' as const,
- reqType: {} as Carrier对象,
- resType: {} as Carrier对象,
- },
- /** 获取物流公司订单结算分页列表 */
- list: {
- realUrl: '/settle/carrier/list' as const,
- reqType: {} as IPageParams<CarrierParam>,
- resType: {} as IPage<Carrier对象>,
- },
- /** 获取某个账期下物流公司订单结算汇总 */
- total: {
- realUrl: '/settle/carrier/total' as const,
- reqType: {} as CarrierParam,
- resType: {} as CarrierListTotal,
- },
- /** 获取物流公司与加气站订单结算 */
- find_1: {
- realUrl: '/settle/carrier_gasstation/find' as const,
- reqType: {} as CarrierGasstation对象,
- resType: {} as any,
- },
- /** 获取物流公司与加气站账期下订单结算(app) */
- find_for_app: {
- realUrl: '/settle/carrier_gasstation/find_for_app' as const,
- reqType: {} as CarrierGasstationAppParam,
- resType: {} as any,
- },
- /** 物流公司与加气站订单结算分页列表 */
- list_1: {
- realUrl: '/settle/carrier_gasstation/list' as const,
- reqType: {} as IPageParams<CarrierGasstationParam>,
- resType: {} as any,
- },
- /** 获取某个账期下物流公司与所有加气站订单结算汇总 */
- total_1: {
- realUrl: '/settle/carrier_gasstation/total' as const,
- reqType: {} as CarrierGasstationParam,
- resType: {} as any,
- },
- /** 获取卡车加气汇总分页列表 */
- list_2: {
- realUrl: '/settle/carrier_truck/list' as const,
- reqType: {} as IPageParams<CarrierTruckParam>,
- resType: {} as any,
- },
- /** 添加一条资金流水下载申请 */
- add: {
- realUrl: '/settle/cash_flow_apply/add' as const,
- reqType: {} as CashFlowApply对象,
- resType: {} as any,
- },
- /** 根据id下载文件 */
- download: {
- realUrl: '/settle/cash_flow_apply/download' as const,
- reqType: {} as CashFlowDownLoadParam,
- resType: {} as StreamingResponseBody,
- },
- /** 查询企业资金流水申请下载列表 */
- list_3: {
- realUrl: '/settle/cash_flow_apply/list' as const,
- reqType: {} as IPageParams<CashFlowApplyParam>,
- resType: {} as any,
- },
- /** 修改cash_flow_apply */
- update: {
- realUrl: '/settle/cash_flow_apply/update' as const,
- reqType: {} as CashFlowApply对象,
- resType: {} as any,
- },
- /** 直销模式特价订单 */
- list_withtime: {
- realUrl: '/settle/direct_gas_order/list_withtime' as const,
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as GasOrderListResult,
- },
- /** 初审/复审发票接口 */
- check_fapiao: {
- realUrl: '/settle/direct_gasstation_fee_apply/check_fapiao' as const,
- reqType: {} as DirectGasstationFeeApplyLog对象,
- resType: {} as any,
- },
- /** 提交申请 id 必填 */
- commit_fapiao: {
- realUrl: '/settle/direct_gasstation_fee_apply/commit_fapiao' as const,
- reqType: {} as DirectGasstationFeeApply对象,
- resType: {} as any,
- },
- /** 加气站端-不分页:根据加气站id 获取加气站直销服务费申请列表 */
- filler_gas_fee_list: {
- realUrl: '/settle/direct_gasstation_fee_apply/filler_gas_fee_list' as const,
- reqType: {} as DirectGasstationFeeApply对象,
- resType: {} as any,
- },
- /** 加气站端:根据加气站id 获取加气站直销服务费申请列表 */
- filler_gas_fee_lists: {
- realUrl: '/settle/direct_gasstation_fee_apply/filler_gas_fee_lists' as const,
- reqType: {} as IPageParams<DirectGasstationFeeApply对象>,
- resType: {} as any,
- },
- /** 运营管理端:根据加气站名称,申请状态 获取加气站直销服务费申请列表 */
- list_4: {
- realUrl: '/settle/direct_gasstation_fee_apply/list' as const,
- reqType: {} as IPageParams<DirectGasstationFeeApply对象>,
- resType: {} as any,
- },
- /** 驳回后重新编辑,状态改为待申请 */
- re_apply_fapiao: {
- realUrl: '/settle/direct_gasstation_fee_apply/re_apply_fapiao' as const,
- reqType: {} as DirectGasstationFeeApply对象,
- resType: {} as any,
- },
- /** 根据账单id,查询操作日志 */
- find_by_id: {
- realUrl: '/settle/direct_gasstation_fee_apply_log/find_by_id' as const,
- reqType: {} as DirectGasstationFeeApplyLog对象,
- resType: {} as any,
- },
- /** 根据登陆用户,查询操作日志 */
- find_by_user: {
- realUrl: '/settle/direct_gasstation_fee_apply_log/find_by_user' as const,
- reqType: {} as IPageParams<any>,
- resType: {} as any,
- },
- /** 加气站的提现申请,通过feign 调用 */
- direct_withdraw_apply: {
- realUrl: '/settle/direct_gasstation_withdraw_limit/direct_withdraw_apply' as const,
- reqType: {} as DirectGasstationWithdrawLimitLog对象,
- resType: {} as any,
- },
- /** 加气站的提现申请退回,通过feign 调用 */
- direct_withdraw_apply_back: {
- realUrl: '/settle/direct_gasstation_withdraw_limit/direct_withdraw_apply_back' as const,
- reqType: {} as DirectGasstationWithdrawLimitLog对象,
- resType: {} as any,
- },
- /** 查询加气站的可提现金额 */
- find_by_id_1: {
- realUrl: '/settle/direct_gasstation_withdraw_limit/find_by_id' as const,
- reqType: {} as DirectGasstationWithdrawLimit对象,
- resType: {} as any,
- },
- /** 添加direct_gasstation_withdraw_limit_log */
- add_1: {
- realUrl: '/settle/direct_gasstation_withdraw_limit_log/add' as const,
- reqType: {} as DirectGasstationWithdrawLimitLog对象,
- resType: {} as any,
- },
- /** 获取direct_gasstation_withdraw_limit_log列表 */
- list_5: {
- realUrl: '/settle/direct_gasstation_withdraw_limit_log/list' as const,
- reqType: {} as IPageParams<DirectGasstationWithdrawLimitLog对象>,
- resType: {} as any,
- },
- /** 修改direct_gasstation_withdraw_limit_log */
- update_1: {
- realUrl: '/settle/direct_gasstation_withdraw_limit_log/update' as const,
- reqType: {} as DirectGasstationWithdrawLimitLog对象,
- resType: {} as any,
- },
- /** 审核直销模式集中开票申请 */
- auditApply: {
- realUrl: '/settle/direct_sales_receipt/auditApply' as const,
- reqType: {} as 直销订单集中开票审核,
- resType: {} as boolean,
- },
- /** 直销模式集中开票金额汇总 */
- get_amount_group: {
- realUrl: '/settle/direct_sales_receipt/get_amount_group' as const,
- reqType: {} as 直销开票订单查询参数,
- resType: {} as 集中开票申请金额汇总VO,
- },
- /** 获取直销模式物流公司开票申请列表 */
- list_6: {
- realUrl: '/settle/direct_sales_receipt/list' as const,
- reqType: {} as IPageParams<DirectSalesReceiptApplyParam对象>,
- resType: {} as any,
- },
- /** 直销模式开票管理日订单列表 */
- list_order_group: {
- realUrl: '/settle/direct_sales_receipt/list_order_group' as const,
- reqType: {} as 直销开票订单查询参数,
- resType: {} as 直销集中开票订单分组结果VO,
- },
- /** 新增直销模式集中开票申请 */
- submitApply: {
- realUrl: '/settle/direct_sales_receipt/submitApply' as const,
- reqType: {} as 直销订单集中开票申请,
- resType: {} as boolean,
- },
- /** 下载 */
- download_1: {
- realUrl: '/settle/excel/download' as const,
- reqType: {} as ExcelExportParam,
- },
- /** 智慧数据加气站消费趋势(物流,carrierOrgId必传) */
- consume_trend: {
- realUrl: '/settle/flag_smart_data/consume_trend' as const,
- reqType: {} as 旗舰站智慧数据消费趋势查询参数,
- resType: {} as 站消费趋势VO实体类,
- },
- /** 智慧数据加气站消费总趋势(物流+散户) */
- consume_trend_all: {
- realUrl: '/settle/flag_smart_data/consume_trend_all' as const,
- reqType: {} as 旗舰站智慧数据消费趋势查询参数,
- resType: {} as 站物流和散户消费趋势VO实体类,
- },
- /** 智慧数据加气站消费趋势物流选择 */
- select_carriers: {
- realUrl: '/settle/flag_smart_data/select_carriers' as const,
- reqType: {} as 旗舰站智慧数据消费趋势查询参数,
- resType: {} as CarrierVO,
- },
- /** 添加gas_order */
- add_2: {
- realUrl: '/settle/gas_order/add' as const,
- reqType: {} as GasOrder对象,
- resType: {} as any,
- },
- /** 获取物流公司订单汇总列表,app客户管理 */
- carrier_list_for_app: {
- realUrl: '/settle/gas_order/carrier_list_for_app' as const,
- reqType: {} as GasOrder对象,
- resType: {} as any,
- },
- /** 根据订单号删除订单,退单时使用 */
- delete_by_id: {
- realUrl: '/settle/gas_order/delete_by_id' as const,
- resType: {} as boolean,
- },
- /** 满减优惠优惠省钱金额 */
- driver_rebate_total: {
- realUrl: '/settle/gas_order/driver_rebate_total' as const,
- resType: {} as number,
- },
- /** 查找订单gas_order */
- find_2: {
- realUrl: '/settle/gas_order/find' as const,
- reqType: {} as GasOrder对象,
- resType: {} as any,
- },
- /** 获取某个账期下与某个加气站有交易的物流公司id */
- get_carrier_org_ids: {
- realUrl: '/settle/gas_order/get_carrier_org_ids' as const,
- reqType: {} as GasstationCarrierParam,
- resType: {} as any,
- },
- /** 查询加气站日订单信息汇总 */
- get_gasstation_day_total: {
- realUrl: '/settle/gas_order/get_gasstation_day_total' as const,
- reqType: {} as SumGasstationOrderNumParam,
- resType: {} as FlagDayTradeVO,
- },
- /** 查询加气站日交易量 */
- get_gasstation_gasqty_total: {
- realUrl: '/settle/gas_order/get_gasstation_gasqty_total' as const,
- reqType: {} as SumGasstationGasQtyParam,
- resType: {} as any,
- },
- /** 查询加气站日订单数 */
- get_gasstation_order_total: {
- realUrl: '/settle/gas_order/get_gasstation_order_total' as const,
- reqType: {} as SumGasstationOrderNumParam,
- resType: {} as any,
- },
- /** 查询作战地图加气站订单销量信息 */
- get_gasstationdata: {
- realUrl: '/settle/gas_order/get_gasstationdata' as const,
- reqType: {} as SumGasstationOrderNumParam,
- resType: {} as FlagDayTradeVO,
- },
- /** 获取最近有消费的的加气站列表 */
- get_trade_gasstations: {
- realUrl: '/settle/gas_order/get_trade_gasstations' as const,
- reqType: {} as NeweastGasOrderParam,
- resType: {} as any,
- },
- /** 获取订单列表 */
- list_7: {
- realUrl: '/settle/gas_order/list' as const,
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as any,
- },
- /** 获取有交易的物流公司id集合 */
- list_carrier_ids: {
- realUrl: '/settle/gas_order/list_carrier_ids' as const,
- reqType: {} as GasOrder对象,
- resType: {} as any,
- },
- /** 加气站对账单/物流有限公司加气对账单/卡车加气对账单 */
- list_withtime_1: {
- realUrl: '/settle/gas_order/list_withtime' as const,
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as any,
- },
- /** 加气订单-for物流公司管理端,含总数 */
- list_withtime_carrier: {
- realUrl: '/settle/gas_order/list_withtime_carrier' as const,
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as any,
- },
- /** 获取日结算订单分页列表 */
- page_list: {
- realUrl: '/settle/gas_order/page_list' as const,
- reqType: {} as IPageParams<SettleGasOrderPageListParam>,
- resType: {} as IPage<GasstationRebateOrder>,
- },
- /** 物流公司加气费汇总 */
- sum_cost: {
- realUrl: '/settle/gas_order/sum_cost' as const,
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as any,
- },
- /** 加气站服务费汇总 */
- sum_fee: {
- realUrl: '/settle/gas_order/sum_fee' as const,
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as any,
- },
- /** 按卡车汇总 */
- sum_truck: {
- realUrl: '/settle/gas_order/sum_truck' as const,
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as any,
- },
- /** 获取日结算订单列表 */
- test: {
- realUrl: '/settle/gas_order/test' as const,
- reqType: {} as SettleGasOrderPageListParam,
- resType: {} as any,
- },
- /** 修改gas_order */
- update_2: {
- realUrl: '/settle/gas_order/update' as const,
- reqType: {} as GasOrder对象,
- resType: {} as any,
- },
- /** 获取某个账期下象群科技的结算汇总 */
- xqkj_total: {
- realUrl: '/settle/gas_order/xqkj_total' as const,
- reqType: {} as GasOrderListParam,
- resType: {} as any,
- },
- /** LNG新营销订单条件下载 */
- download_withtime: {
- realUrl: '/settle/gas_order_market/download_withtime' as const,
- reqType: {} as GasOrderMarketParam,
- resType: {} as StreamingResponseBody,
- },
- /** LNG新营销条件查询 */
- list_withtime_2: {
- realUrl: '/settle/gas_order_market/list_withtime' as const,
- reqType: {} as IPageParams<GasOrderMarketParam>,
- resType: {} as IPage<MarketGasOrderList>,
- },
- /** LNG新营销订单条件查询汇总 */
- sum_withtime: {
- realUrl: '/settle/gas_order_market/sum_withtime' as const,
- reqType: {} as IPageParams<GasOrderMarketParam>,
- resType: {} as MarketGasOrderListTotal,
- },
- /** 中石化订单条件查询 */
- list_withtime_3: {
- realUrl: '/settle/gas_order_snp/list_withtime' as const,
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as IPage<GasOrderSnp对象>,
- },
- /** 中石化订单条件查询汇总 */
- sum_withtime_1: {
- realUrl: '/settle/gas_order_snp/sum_withtime' as const,
- reqType: {} as IPageParams<GasOrderListParam>,
- resType: {} as any,
- },
- /** 获取加气站与物流公司订单结算分页列表 */
- list_8: {
- realUrl: '/settle/gasstation_carrier/list' as const,
- reqType: {} as IPageParams<GasstationCarrierParam>,
- resType: {} as any,
- },
- /** 获取某个账期下加气站与物流公司订单结算汇总 */
- total_2: {
- realUrl: '/settle/gasstation_carrier/total' as const,
- reqType: {} as GasstationCarrierParam,
- resType: {} as any,
- },
- /** 获取一个加气站账期内结算 */
- find_3: {
- realUrl: '/settle/gasstation_gway/find' as const,
- reqType: {} as GasstationGwayParam,
- resType: {} as GasstationGway对象,
- },
- /** 获取加气站订单结算分页列表 */
- list_9: {
- realUrl: '/settle/gasstation_gway/list' as const,
- reqType: {} as IPageParams<GasstationGwayParam>,
- resType: {} as GasstationGway对象,
- },
- /** 获取某个账期下加气站订单结算汇总 */
- total_3: {
- realUrl: '/settle/gasstation_gway/total' as const,
- reqType: {} as GasstationGwayParam,
- resType: {} as GasStationListTotal,
- },
- /** 实时导出 */
- current_export: {
- realUrl: '/settle/gasstation_monitor/current_export' as const,
- reqType: {} as GasstationMonitorParam,
- resType: {} as StreamingResponseBody,
- },
- /** 区域下加气站实时销量监控列表 */
- district_gasstation_list: {
- realUrl: '/settle/gasstation_monitor/district_gasstation_list' as const,
- reqType: {} as GasstationMonitorParam,
- resType: {} as any,
- },
- /** 全平台今日各区域实时销量监控列表 */
- full_district_list: {
- realUrl: '/settle/gasstation_monitor/full_district_list' as const,
- reqType: {} as GasstationMonitorParam,
- resType: {} as any,
- },
- /** 历史导出 */
- history_export: {
- realUrl: '/settle/gasstation_monitor/history_export' as const,
- reqType: {} as GasstationMonitorParam,
- resType: {} as StreamingResponseBody,
- },
- /** 历史时间区域下加气站销量监控列表 */
- histroy_district_gasstation_list: {
- realUrl: '/settle/gasstation_monitor/histroy_district_gasstation_list' as const,
- reqType: {} as GasstationMonitorParam,
- resType: {} as any,
- },
- /** 全平台历史时间下各区域销量监控列表 */
- histroy_full_district_list: {
- realUrl: '/settle/gasstation_monitor/histroy_full_district_list' as const,
- reqType: {} as GasstationMonitorParam,
- resType: {} as any,
- },
- /** 实时导出列表测试 */
- test1: {
- realUrl: '/settle/gasstation_monitor/test1' as const,
- reqType: {} as GasstationMonitorParam,
- resType: {} as any,
- },
- /** 历史导出列表测试 */
- test2: {
- realUrl: '/settle/gasstation_monitor/test2' as const,
- reqType: {} as GasstationMonitorParam,
- resType: {} as any,
- },
- /** 获取加气站日均销量存量详情 */
- find_4: {
- realUrl: '/settle/gasstation_week_average_qty/find' as const,
- reqType: {} as GasstationWeekAverageQty对象,
- resType: {} as any,
- },
- /** 手动汇总加气站日均销量存量 */
- test_job: {
- realUrl: '/settle/gasstation_week_average_qty/test_job' as const,
- resType: {} as any,
- },
- /** 添加文件生成记录 */
- add_3: {
- realUrl: '/settle/generate_file/add' as const,
- resType: {} as any,
- },
- /** 删除生成文件 */
- delete_all: {
- realUrl: '/settle/generate_file/delete_all' as const,
- reqType: {} as GenerateFileListParam,
- resType: {} as any,
- },
- /** 根据id下载文件 */
- download_2: {
- realUrl: '/settle/generate_file/download' as const,
- reqType: {} as DownLoadParam,
- resType: {} as StreamingResponseBody,
- },
- /** 获取文件生成列表 */
- list_10: {
- realUrl: '/settle/generate_file/list' as const,
- reqType: {} as IPageParams<GenerateFileListParam>,
- resType: {} as any,
- },
- /** 修改文件生成 */
- update_3: {
- realUrl: '/settle/generate_file/update' as const,
- reqType: {} as GenerateFile对象,
- resType: {} as any,
- },
- /** 删除订单 */
- delete_gasorder: {
- realUrl: '/settle/gway_gasorder/delete_gasorder' as const,
- reqType: {} as GwayGasorderDetail对象,
- resType: {} as any,
- },
- /** 删除库存 */
- delete_stock: {
- realUrl: '/settle/gway_gasorder/delete_stock' as const,
- reqType: {} as GwayStock对象,
- resType: {} as any,
- },
- /** 获取合计汇总数据 */
- get_sum_total: {
- realUrl: '/settle/gway_gasorder/get_sum_total' as const,
- reqType: {} as GwayGasorderQryParam,
- resType: {} as GwayGasorderSumVO,
- },
- /** 获取合计汇总数据(作废) */
- get_sum_total_new: {
- realUrl: '/settle/gway_gasorder/get_sum_total_new' as const,
- reqType: {} as GwayGasorderQryParam,
- resType: {} as GwayGasorderSumVO,
- },
- /** 获取合计汇总入库库存数据 */
- get_sum_total_stock: {
- realUrl: '/settle/gway_gasorder/get_sum_total_stock' as const,
- reqType: {} as GwayGasorderQryParam,
- resType: {} as GwayGasorderSumVO,
- },
- /** 导入订单 */
- import_gasorder: {
- realUrl: '/settle/gway_gasorder/import_gasorder' as const,
- isUpload: true,
- reqType: {} as {
- /** orgId */
- orgId: number
- },
- resType: {} as any,
- },
- /** 导入库存 */
- import_stock: {
- realUrl: '/settle/gway_gasorder/import_stock' as const,
- isUpload: true,
- reqType: {} as {
- /** orgId */
- orgId: number
- },
- resType: {} as any,
- },
- /** 获取gway_gasorder汇总列表 */
- list_11: {
- realUrl: '/settle/gway_gasorder/list' as const,
- reqType: {} as GwayGasorderQryParam,
- resType: {} as any,
- },
- /** 获取gway_gasorder汇总列表(作废) */
- list_new: {
- realUrl: '/settle/gway_gasorder/list_new' as const,
- reqType: {} as GwayGasorderQryParam,
- resType: {} as any,
- },
- /** 获取加气机订单列表 */
- list_orders: {
- realUrl: '/settle/gway_gasorder/list_orders' as const,
- reqType: {} as IPageParams<GwayGasorderQryParam>,
- resType: {} as any,
- },
- /** 获取库存入库量列表 */
- list_stocks: {
- realUrl: '/settle/gway_gasorder/list_stocks' as const,
- reqType: {} as IPageParams<GwayGasorderQryParam>,
- resType: {} as any,
- },
- /** 修改订单 */
- update_gasorder: {
- realUrl: '/settle/gway_gasorder/update_gasorder' as const,
- reqType: {} as GwayGasorderDetail对象,
- resType: {} as any,
- },
- /** 修改库存 */
- update_stock: {
- realUrl: '/settle/gway_gasorder/update_stock' as const,
- reqType: {} as GwayStock对象,
- resType: {} as any,
- },
- /** 调整销量监控订单,新增中石化审核 */
- adjust_gasorder: {
- realUrl: '/settle/gway_gasorder_adjust/adjust_gasorder' as const,
- isUpload: true,
- reqType: {} as {
- /** date */
- date: string
- },
- resType: {} as any,
- },
- /** 订单调整审核上传预览 */
- adjust_gasorder_preview: {
- realUrl: '/settle/gway_gasorder_adjust/adjust_gasorder_preview' as const,
- isUpload: true,
- reqType: {} as {
- /** date */
- date: string
- },
- resType: {} as GwayAdjustListVO,
- },
- /** 订单调整审核 */
- audit: {
- realUrl: '/settle/gway_gasorder_adjust/audit' as const,
- reqType: {} as GwayGasorderAudit对象,
- resType: {} as any,
- },
- /** 根据id获取待审核详情 */
- find_5: {
- realUrl: '/settle/gway_gasorder_adjust/find' as const,
- reqType: {} as GwayGasorderAudit对象,
- resType: {} as GwayGasorderNewVO,
- },
- /** 导入销量监控订单 */
- import_gasorder_1: {
- realUrl: '/settle/gway_gasorder_adjust/import_gasorder' as const,
- isUpload: true,
- reqType: {} as {
- /** date */
- date: string
- },
- resType: {} as any,
- },
- /** 订单上传预览 */
- import_gasorder_preview: {
- realUrl: '/settle/gway_gasorder_adjust/import_gasorder_preview' as const,
- isUpload: true,
- reqType: {} as {
- /** date */
- date: string
- },
- resType: {} as GwayGasordersVO,
- },
- /** 获取待审核列表 */
- page: {
- realUrl: '/settle/gway_gasorder_adjust/page' as const,
- reqType: {} as IPageParams<GwayGasorderAudit对象>,
- resType: {} as any,
- },
- /** 获取上笔充值记录(app物流公司首页用) */
- find_last: {
- realUrl: '/settle/recharge_order/find_last' as const,
- reqType: {} as FindLastRechargeOrderParam,
- resType: {} as any,
- },
- /** 获取充值订单分页列表 */
- list_12: {
- realUrl: '/settle/recharge_order/list' as const,
- reqType: {} as IPageParams<RechargeOrderListParam>,
- resType: {} as any,
- },
- /** 物流公司充值对账单 */
- list_withtime_4: {
- realUrl: '/settle/recharge_order/list_withtime' as const,
- reqType: {} as IPageParams<CarrierOrderParam>,
- resType: {} as any,
- },
- /** 初始化交易金额到reids */
- amount_total: {
- realUrl: '/settle/redis/amount_total' as const,
- resType: {} as any,
- },
- /** 初始化交易量到reids */
- gas_total: {
- realUrl: '/settle/redis/gas_total' as const,
- resType: {} as any,
- },
- /** 初始化充值到reids */
- recharge_total: {
- realUrl: '/settle/redis/recharge_total' as const,
- resType: {} as any,
- },
- /** 查询加气站库存数据汇总(多天数据) */
- find_Gasstation_stock_sum: {
- realUrl: '/settle/statistics/find_Gasstation_stock_sum' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 查询物流公司发展趋势汇总(多天数据) */
- find_carrier_trend_list: {
- realUrl: '/settle/statistics/find_carrier_trend_list' as const,
- reqType: {} as StatisticsOrgParam,
- resType: {} as any,
- },
- /** 查询区域下价格变动趋势汇总(一天数据) */
- find_day_district_price_trend: {
- realUrl: '/settle/statistics/find_day_district_price_trend' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 查询日充值总金额、账户余额 */
- find_day_fund_sum: {
- realUrl: '/settle/statistics/find_day_fund_sum' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 查询日库存汇总(进气量、库存量、在途量) */
- find_day_stock_sum: {
- realUrl: '/settle/statistics/find_day_stock_sum' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 查询日交易数据汇总(交易金额、交易量、各个状态订单数) */
- find_day_trade_sum: {
- realUrl: '/settle/statistics/find_day_trade_sum' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 查询日车辆汇总(日活量、新增量) */
- find_day_truck_sum: {
- realUrl: '/settle/statistics/find_day_truck_sum' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 查询区域下价格变动趋势汇总(多天数据) */
- find_district_price_trend_list: {
- realUrl: '/settle/statistics/find_district_price_trend_list' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 查询资金情况汇总(多天数据) */
- find_fund_sum: {
- realUrl: '/settle/statistics/find_fund_sum' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 查询单个加气站交易相关数据 */
- find_gasstation_trade_sum: {
- realUrl: '/settle/statistics/find_gasstation_trade_sum' as const,
- reqType: {} as StatisticsGasstationParam,
- resType: {} as any,
- },
- /** 查询加气站发展趋势汇总(多天数据) */
- find_gasstation_trend_list: {
- realUrl: '/settle/statistics/find_gasstation_trend_list' as const,
- reqType: {} as StatisticsOrgParam,
- resType: {} as any,
- },
- /** 获取最新的订单 */
- find_latest_gasorders: {
- realUrl: '/settle/statistics/find_latest_gasorders' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 查询平台结算价列表 */
- find_statistics_district_price_list: {
- realUrl: '/settle/statistics/find_statistics_district_price_list' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 获取全区域结算价 */
- find_statistics_full_district_price: {
- realUrl: '/settle/statistics/find_statistics_full_district_price' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 查询物流公司交易排名列表 */
- find_trade_rank_carrier_list: {
- realUrl: '/settle/statistics/find_trade_rank_carrier_list' as const,
- reqType: {} as StatisticsTradeRankCarrierParam,
- resType: {} as any,
- },
- /** 查询加气站公司交易排名列表 */
- find_trade_rank_gasstation_list: {
- realUrl: '/settle/statistics/find_trade_rank_gasstation_list' as const,
- reqType: {} as StatisticsTradeRankGasstaionParam,
- resType: {} as any,
- },
- /** 查询交易汇总(多天数据) */
- find_trade_sum_list: {
- realUrl: '/settle/statistics/find_trade_sum_list' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 查询卡车趋势汇总列表(多天数据) */
- find_truck_trend_list: {
- realUrl: '/settle/statistics/find_truck_trend_list' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** getActiveCar */
- get_active_car: {
- realUrl: '/settle/statistics/get_active_car' as const,
- resType: {} as number,
- },
- /** getCarrierRankInfo */
- get_carrier_rank_info: {
- realUrl: '/settle/statistics/get_carrier_rank_info' as const,
- resType: {} as Array<展厅大屏物流信息VO>,
- },
- /** getGasstationQty */
- get_gasstation_qty: {
- realUrl: '/settle/statistics/get_gasstation_qty' as const,
- reqType: {} as BigScreenGasstationParam,
- resType: {} as Array<StatisticsGasstationGasorder对象>,
- },
- /** getGasstationRank */
- get_gasstation_rank: {
- realUrl: '/settle/statistics/get_gasstation_rank' as const,
- resType: {} as Array<StatisticsGasstationOrder对象>,
- },
- /** getQtyTrend */
- get_qty_trend: {
- realUrl: '/settle/statistics/get_qty_trend' as const,
- reqType: {} as StatisticsOrgDateParam,
- resType: {} as Array<交易日汇总实体类>,
- },
- /** 添加statistics_carrier_gasorder */
- add_4: {
- realUrl: '/settle/statistics_carrier_gasorder/add' as const,
- reqType: {} as StatisticsCarrierGasorder对象,
- resType: {} as any,
- },
- /** 获取statistics_carrier_gasorder列表 */
- list_13: {
- realUrl: '/settle/statistics_carrier_gasorder/list' as const,
- reqType: {} as IPageParams<StatisticsCarrierGasorder对象>,
- resType: {} as any,
- },
- /** 修改statistics_carrier_gasorder */
- update_4: {
- realUrl: '/settle/statistics_carrier_gasorder/update' as const,
- reqType: {} as StatisticsCarrierGasorder对象,
- resType: {} as any,
- },
- /** 添加statistics_gasstation_gasorder */
- add_5: {
- realUrl: '/settle/statistics_gasstation_gasorder/add' as const,
- reqType: {} as StatisticsGasstationGasorder对象,
- resType: {} as any,
- },
- /** 加气站时段销量 */
- day_time_salse: {
- realUrl: '/settle/statistics_gasstation_gasorder/day_time_salse' as const,
- reqType: {} as 通用id参数,
- resType: {} as Array<站的时段销量VO实体类>,
- },
- /** 查询某天的加气站账户数据(加气站app端首页) */
- find_gasstation_account_for_app: {
- realUrl: '/settle/statistics_gasstation_gasorder/find_gasstation_account_for_app' as const,
- reqType: {} as StatisticsGasstationParam,
- resType: {} as any,
- },
- /** 加气站近7日日均销量 */
- gas_station_week_avg_qty: {
- realUrl: '/settle/statistics_gasstation_gasorder/gas_station_week_avg_qty' as const,
- reqType: {} as StatisticsGasstationParam,
- resType: {} as any,
- },
- /** 查询单个加气站交易排名(app) */
- get_gasstation_rank_1: {
- realUrl: '/settle/statistics_gasstation_gasorder/get_gasstation_rank' as const,
- reqType: {} as StatisticsTradeRankGasstaionParam,
- resType: {} as any,
- },
- /** 根据日期取当日全平台排名 */
- get_live_truck_total: {
- realUrl: '/settle/statistics_gasstation_gasorder/get_live_truck_total' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 加气站交班日时段销量 */
- inven_time_salse: {
- realUrl: '/settle/statistics_gasstation_gasorder/inven_time_salse' as const,
- reqType: {} as StatisticsGasstationParam,
- resType: {} as Array<站的时段销量VO实体类>,
- },
- /** 获取statistics_gasstation_gasorder列表 */
- list_14: {
- realUrl: '/settle/statistics_gasstation_gasorder/list' as const,
- reqType: {} as IPageParams<StatisticsGasstationGasorder对象>,
- resType: {} as any,
- },
- /** 获取某加气站交易日汇总列表(app) */
- list_with_month: {
- realUrl: '/settle/statistics_gasstation_gasorder/list_with_month' as const,
- reqType: {} as StatisticsGasstationOrderAppParam,
- resType: {} as any,
- },
- /** 修改statistics_gasstation_gasorder */
- update_5: {
- realUrl: '/settle/statistics_gasstation_gasorder/update' as const,
- reqType: {} as StatisticsGasstationGasorder对象,
- resType: {} as any,
- },
- /** 添加statistics_gasstation_price */
- add_6: {
- realUrl: '/settle/statistics_gasstation_price/add' as const,
- reqType: {} as StatisticsGasstationPrice对象,
- resType: {} as any,
- },
- /** 获取statistics_gasstation_price列表 */
- list_15: {
- realUrl: '/settle/statistics_gasstation_price/list' as const,
- reqType: {} as IPageParams<StatisticsGasstationPrice对象>,
- resType: {} as any,
- },
- /** 修改statistics_gasstation_price */
- update_6: {
- realUrl: '/settle/statistics_gasstation_price/update' as const,
- reqType: {} as StatisticsGasstationPrice对象,
- resType: {} as any,
- },
- /** 添加statistics_gasstation_store */
- add_7: {
- realUrl: '/settle/statistics_gasstation_store/add' as const,
- reqType: {} as StatisticsGasstationStore对象,
- resType: {} as any,
- },
- /** 根据加气站id和日期获取加气站库存日汇总数据 */
- get_day_gasstation_stock: {
- realUrl: '/settle/statistics_gasstation_store/get_day_gasstation_stock' as const,
- reqType: {} as StatisticsGasstationParam,
- resType: {} as any,
- },
- /** 获取statistics_gasstation_store列表 */
- list_16: {
- realUrl: '/settle/statistics_gasstation_store/list' as const,
- reqType: {} as IPageParams<StatisticsGasstationStore对象>,
- resType: {} as any,
- },
- /** 修改statistics_gasstation_store */
- update_7: {
- realUrl: '/settle/statistics_gasstation_store/update' as const,
- reqType: {} as StatisticsGasstationStore对象,
- resType: {} as any,
- },
- /** 添加statistics_live_truck */
- add_8: {
- realUrl: '/settle/statistics_live_truck/add' as const,
- reqType: {} as StatisticsLiveTruck对象,
- resType: {} as any,
- },
- /** 根据加气站id和日期取当日活跃车辆数 */
- get_live_truck_total_1: {
- realUrl: '/settle/statistics_live_truck/get_live_truck_total' as const,
- reqType: {} as LiveTruckTotalParam,
- resType: {} as any,
- },
- /** 获取statistics_live_truck列表 */
- list_17: {
- realUrl: '/settle/statistics_live_truck/list' as const,
- reqType: {} as IPageParams<StatisticsLiveTruck对象>,
- resType: {} as any,
- },
- /** 根据日期取周活跃车辆数 */
- test_1: {
- realUrl: '/settle/statistics_live_truck/test' as const,
- reqType: {} as StatisticsParam,
- resType: {} as any,
- },
- /** 修改statistics_live_truck */
- update_8: {
- realUrl: '/settle/statistics_live_truck/update' as const,
- reqType: {} as StatisticsLiveTruck对象,
- resType: {} as any,
- },
- /** 添加statistics_org */
- add_9: {
- realUrl: '/settle/statistics_org/add' as const,
- reqType: {} as StatisticsOrg对象,
- resType: {} as any,
- },
- /** 修改生产旧数据 */
- change: {
- realUrl: '/settle/statistics_org/change' as const,
- },
- /** 获取statistics_org列表 */
- list_18: {
- realUrl: '/settle/statistics_org/list' as const,
- reqType: {} as IPageParams<StatisticsOrg对象>,
- resType: {} as any,
- },
- /** 修改statistics_org */
- update_9: {
- realUrl: '/settle/statistics_org/update' as const,
- reqType: {} as StatisticsOrg对象,
- resType: {} as any,
- },
- /** 添加statistics_org_fund */
- add_10: {
- realUrl: '/settle/statistics_org_fund/add' as const,
- reqType: {} as StatisticsOrgFund对象,
- resType: {} as any,
- },
- /** 获取statistics_org_fund列表 */
- list_19: {
- realUrl: '/settle/statistics_org_fund/list' as const,
- reqType: {} as IPageParams<StatisticsOrgFund对象>,
- resType: {} as any,
- },
- /** 修改statistics_org_fund */
- update_10: {
- realUrl: '/settle/statistics_org_fund/update' as const,
- reqType: {} as StatisticsOrgFund对象,
- resType: {} as any,
- },
- /** 汇总物流公司交易信息 */
- sumCarriersGasorder: {
- realUrl: '/settle/statistics_test/sumCarriersGasorder' as const,
- resType: {} as any,
- },
- /** 汇总加气站交易信息 */
- sumGasstationsGasorder: {
- realUrl: '/settle/statistics_test/sumGasstationsGasorder' as const,
- resType: {} as any,
- },
- /** 汇总加气站结算价 */
- sumGasstationsPrices: {
- realUrl: '/settle/statistics_test/sumGasstationsPrices' as const,
- resType: {} as any,
- },
- /** 汇总加气站库存 */
- sumGasstationsStock: {
- realUrl: '/settle/statistics_test/sumGasstationsStock' as const,
- resType: {} as any,
- },
- /** 汇总活跃车辆数据 */
- sumLiveTruck: {
- realUrl: '/settle/statistics_test/sumLiveTruck' as const,
- resType: {} as any,
- },
- /** 汇总公司资金数据(汇总加气站和物流公司) */
- sumOrgsFund: {
- realUrl: '/settle/statistics_test/sumOrgsFund' as const,
- resType: {} as any,
- },
- /** 汇总公司发展趋势(汇总加气站和物流公司) */
- sumStatisticsOrgs: {
- realUrl: '/settle/statistics_test/sumStatisticsOrgs' as const,
- resType: {} as any,
- },
- /** 汇总卡车汇总 */
- sumTruck: {
- realUrl: '/settle/statistics_test/sumTruck' as const,
- resType: {} as any,
- },
- /** 测试定时任务 */
- test_2: {
- realUrl: '/settle/statistics_test/test' as const,
- resType: {} as any,
- },
- /** 添加statistics_truck */
- add_11: {
- realUrl: '/settle/statistics_truck/add' as const,
- reqType: {} as StatisticsTruck对象,
- resType: {} as any,
- },
- /** 获取statistics_truck列表 */
- list_20: {
- realUrl: '/settle/statistics_truck/list' as const,
- reqType: {} as IPageParams<StatisticsTruck对象>,
- resType: {} as any,
- },
- /** 修改statistics_truck */
- update_11: {
- realUrl: '/settle/statistics_truck/update' as const,
- reqType: {} as StatisticsTruck对象,
- resType: {} as any,
- },
- /** 模拟定时任务,生成文件 */
- genFile: {
- realUrl: '/settle/test_job/genFile' as const,
- resType: {} as any,
- },
- /** 计算并保存每个物流公司在每个加气站的经销加气汇总 */
- settleCarrierGasstation_jingzhi: {
- realUrl: '/settle/test_job/settleCarrierGasstation_jingzhi' as const,
- reqType: {} as DateParam,
- resType: {} as any,
- },
- /** 计算并保存每个物流公司在每个加气站的直销加气汇总 */
- settleCarrierGasstation_zhixiao: {
- realUrl: '/settle/test_job/settleCarrierGasstation_zhixiao' as const,
- reqType: {} as DateParam,
- resType: {} as any,
- },
- /** 计算并保存某个物流公司每个卡车的经销加气汇总 */
- settleCarrierTruck_jingxiao: {
- realUrl: '/settle/test_job/settleCarrierTruck_jingxiao' as const,
- reqType: {} as DateParam,
- resType: {} as any,
- },
- /** 计算并保存某个物流公司每个卡车的直销加气汇总 */
- settleCarrierTruck_zhixiao: {
- realUrl: '/settle/test_job/settleCarrierTruck_zhixiao' as const,
- reqType: {} as DateParam,
- resType: {} as any,
- },
- /** 计算并保存某个物流公司的经销加气汇总 */
- settleCarrier_jingxiao: {
- realUrl: '/settle/test_job/settleCarrier_jingxiao' as const,
- reqType: {} as DateParam,
- resType: {} as any,
- },
- /** 计算并保存某个物流公司的直销加气汇总 */
- settleCarrier_zhixiao: {
- realUrl: '/settle/test_job/settleCarrier_zhixiao' as const,
- reqType: {} as DateParam,
- resType: {} as any,
- },
- /** 计算并保存加气站与物流公司账期汇总 */
- settleGasstationCarrier: {
- realUrl: '/settle/test_job/settleGasstationCarrier' as const,
- reqType: {} as DateParam,
- resType: {} as any,
- },
- /** 计算并保存加气站与长城奥扬的经销加气汇总 */
- settleGasstationGway_jingxiao: {
- realUrl: '/settle/test_job/settleGasstationGway_jingxiao' as const,
- reqType: {} as DateParam,
- resType: {} as any,
- },
- /** 计算并保存加气站与长城奥扬的直销加气汇总 */
- settleGasstationGway_zhixiao: {
- realUrl: '/settle/test_job/settleGasstationGway_zhixiao' as const,
- reqType: {} as DateParam,
- resType: {} as any,
- },
- /** 计算并保存数据看板相关信息汇总 */
- settle_statistics: {
- realUrl: '/settle/test_job/settle_statistics' as const,
- resType: {} as any,
- },
- /** 测试redissonClient-test_getBucket */
- test_getBucket: {
- realUrl: '/settle/test_job/test_getBucket' as const,
- reqType: {} as GasOrder对象,
- resType: {} as any,
- },
- /** 测试物流长城奥扬对账函 */
- test_settle: {
- realUrl: '/settle/test_job/test_settle' as const,
- reqType: {} as CarrierParam,
- resType: {} as any,
- },
- /** 测试zip包定时任务 */
- test_zip: {
- realUrl: '/settle/test_job/test_zip' as const,
- resType: {} as any,
- },
- /** 获取加气站提现列表 */
- list_21: {
- realUrl: '/settle/withdraw_order/list' as const,
- reqType: {} as IPageParams<WithdrawOrderListParam>,
- resType: {} as any,
- },
- /** 获取机构提现总金额 */
- list_total_amount: {
- realUrl: '/settle/withdraw_order/list_total_amount' as const,
- reqType: {} as WithdrawOrderListParam,
- resType: {} as any,
- },
- }
|