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);
|
}
|