kongdeqiang
2024-04-09 fb050c0dafa5363a73540dd9e52b78487e25ba0a
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
46
47
48
49
50
51
package com.boying.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.boying.entity.OutPark;
import com.boying.entity.Statistic;
import io.swagger.models.auth.In;
 
import java.time.LocalDateTime;
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);
 
    OutPark findByPayCode(String payCode);
 
    OutPark findByOrderId(String txnOrderId);
 
    OutPark findBy5min(String carNo, Integer parkId, LocalDateTime dateTime);
    OutPark findBy5min2(String carNo, Integer parkId, LocalDateTime dateTime);
 
    OutPark findBy10min(String carNo, Integer parkId, LocalDateTime dateTime, Integer outParkId);
 
}