19 lines
363 B
Java
19 lines
363 B
Java
package com.template.service;
|
||
|
||
import com.template.domain.CarType;
|
||
import com.template.domain.SysCar;
|
||
|
||
/**
|
||
* @Author:liuxinyue
|
||
* @Package:com.template.service
|
||
* @Project:cloud-server
|
||
* @name:CarService
|
||
* @Date:2024/9/21 9:25
|
||
*/
|
||
public interface CarService {
|
||
SysCar findCarByVin(String carVin);
|
||
|
||
CarType findCarTypeById(Long carTypeId);
|
||
|
||
}
|