project-car/cloud-modules/cloud-modules-template/src/main/java/com/template/service/CarService.java

19 lines
363 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.template.service;
import com.template.domain.CarType;
import com.template.domain.SysCar;
/**
* @Authorliuxinyue
* @Packagecom.template.service
* @Projectcloud-server
* @nameCarService
* @Date2024/9/21 9:25
*/
public interface CarService {
SysCar findCarByVin(String carVin);
CarType findCarTypeById(Long carTypeId);
}