kongdeqiang
2023-06-05 a41b28d983f46f90a41ff7d2aa47179541c1be99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.boying.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.boying.entity.WhiteList;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName WhiteListService.java
 * @Description TODO
 * @createTime 2022年11月21日 11:23:00
 */
public interface WhiteListService extends IService<WhiteList> {
 
    WhiteList getByCarNo(String carNo);
}