kongdeqiang
2024-04-09 fb050c0dafa5363a73540dd9e52b78487e25ba0a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.boying.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.boying.entity.OutParkLog;
import com.boying.entity.PayLog;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName OutParkLogService.java
 * @Description TODO
 * @createTime 2023年12月12日 17:35:00
 */
public interface OutParkLogService extends IService<OutParkLog> {
 
    OutParkLog getByOutPark(String carNo,Integer id);
}