| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.boying.entity.OutPark; |
| | | import com.boying.entity.Statistic; |
| | | import com.boying.entity.vo.OutParkVo; |
| | | import io.swagger.models.auth.In; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author kdq |
| | |
| | | * @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(); |
| | |
| | | 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); |
| | | |
| | | List<Map<String, Object>> getLikeCar(String carNo, Integer parkId, LocalDateTime dateTime); |
| | | |
| | | List<OutParkVo> getVoList(Integer parkId,String startDate,String endDate); |
| | | |
| | | } |