Pu Zhibing
2025-03-19 caf95ef79557edd74326794a8a3eca2a854e17cf
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
43
44
45
package com.ruoyi.chargingPile.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.chargingPile.api.model.TParkingRecord;
import com.ruoyi.chargingPile.api.query.ParkingRecordQuery;
import com.ruoyi.chargingPile.api.vo.TParkingRecordPageInfoVO;
import com.ruoyi.chargingPile.dto.ParkingRecordQueryDto;
import com.ruoyi.common.core.web.page.PageInfo;
 
import java.math.BigDecimal;
import java.time.LocalDate;
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author xiaochen
 * @since 2024-08-08
 */
public interface TParkingRecordService extends IService<TParkingRecord> {
 
    BigDecimal getSum();
 
    /**
     * 停车缴费订单列表
     * @param query
     * @return
     */
    TParkingRecordPageInfoVO pageList(ParkingRecordQuery query);
 
    List<Map<String, Object>> parkingData(ParkingRecordQueryDto parkingRecordQueryDto);
 
    List<Map<String, Object>> parkingDataByDate(ParkingRecordQueryDto parkingRecordQueryDto);
 
    List<Map<String, Object>> getCarColor(ParkingRecordQueryDto parkingRecordQueryDto);
 
    List<Map<String, Object>> getOutType(ParkingRecordQueryDto parkingRecordQueryDto);
 
    List<Map<String, Object>> getIsCharge(ParkingRecordQueryDto parkingRecordQueryDto);
 
    List<Map<String, Object>> income(ParkingRecordQueryDto parkingRecordQueryDto);
}