kongdeqiang
2023-04-28 df5cc553bde495f22757f0d6472a714a056a02d8
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
package com.boying.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.boying.entity.OutPark;
import com.boying.entity.Statistic;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName OupParkService.java
 * @Description TODO
 * @createTime 2022年11月20日 10:19:00
 */
public interface OutParkService extends IService<OutPark> {
    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);
}