18 lines
378 B
Java
18 lines
378 B
Java
package com.xiaofan.loadcenter.service;
|
|
|
|
import com.xiaofan.loadcenter.common.domain.Result;
|
|
|
|
/**
|
|
* @ProjectName: LoadCenter
|
|
* @PackageName: com.xiaofan.loadcenter.service
|
|
* @Description TODO
|
|
* @Author XiaoFan
|
|
* @Date 2024/4/20 09:46
|
|
* @Version 1.0
|
|
*/
|
|
public interface GatewayVehicleService {
|
|
Result<String> topLine(String vin);
|
|
|
|
void loadDownLine(String vin);
|
|
}
|