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