peng
2026-03-25 2e5c2bc2b7afc7926ec441ff083acd179cb29fc6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.tievd.jyz.service;
 
import com.tievd.jyz.entity.vo.*;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author yang'zhi'shui
 */
public interface IOperationDataService {
 
    /** 运营概况 */
    OperationOverviewVO overview(String today, String orgCode);
 
    /** 车流量统计 */
    Map<String, List> trafficFlowStat(Integer intervalDay, String endDay, String orgCode);
 
    /** 车流量统计 */
    List<RegionTrafficFlowStatVO> regionTrafficFlowStat(String today, String orgCode, Integer limit);
 
    /** 客户统计 */
    CustomerStatVO customerStat(String orgCode);
 
    /** 加油时刻统计 */
    Map<String, List> oilRecordTimeStat(String today, String orgCode);
 
    /** 加油位热力图 */
    List<OilPositionHeatMapVO> oilPositionHeatMap(String today, String orgCode);
 
    /** 加油车型统计 */
    Map<String, List> carModelStat(String today, String orgCode);
 
    /** 销量统计 */
    Map<String, List> salesStat(Integer intervalDay, String today, String orgCode);
 
    /** 加油率统计 */
    List<OilRecordStatVO> regionOilRecordStat(String orgCode, Integer freq, Integer limit);
 
    /** 销量排行 */
    List<SalesStatVO> salesRanking(String orgCode, Integer freq, Integer limit);
}