kongdeqiang
2023-01-17 fb1a96ec056ee660ff3c264cdd64cdb8ac5d7540
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.boying.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.boying.entity.EnterPark;
import org.springframework.transaction.annotation.Transactional;
 
import java.util.List;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName EnterParkService.java
 * @Description TODO
 * @createTime 2022年11月20日 10:21:00
 */
public interface EnterParkService extends IService<EnterPark> {
    int count1();
    List<EnterPark> findByCarNo(String carNo,Integer parkId);
    @Transactional(readOnly = false)
    void deleteByCarNo(String carNo,Integer parkId);
}