kongdeqiang
2023-06-08 3fba1d84220268d871c3c28e0e25f6eab3526f46
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
package com.boying.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.boying.entity.OutPark;
import com.boying.entity.Statistic;
 
import java.util.List;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName OupParkService.java
 * @Description TODO
 * @createTime 2022年11月20日 10:19:00
 */
public interface OutParkService extends IService<OutPark> {
    List<OutPark> getList(long current, long size, String carNo, Long parkId, String payCode, String date);
 
    long getCount(String carNo, Long parkId, String payCode, String date);
 
 
    int count1();
 
    int count2();
 
    double sumByPrice();
 
    int count3();
 
    double sumByPrice2();
 
    OutPark findByCarNo(String serialno);
 
    OutPark count4(Integer bId);
 
    int count5();
 
    OutPark findByCarNoAndBarrierId(String carNo, Integer id);
}