mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
添加vin码启动相关逻辑代码
This commit is contained in:
@@ -0,0 +1,76 @@
|
||||
package com.jsowell.pile.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.jsowell.pile.domain.CarVinInfo;
|
||||
import com.jsowell.pile.vo.CarVinInfoVO;
|
||||
|
||||
/**
|
||||
* 车辆vin码Service接口
|
||||
*
|
||||
* @author jsowell
|
||||
* @date 2023-06-07
|
||||
*/
|
||||
public interface ICarVinInfoService {
|
||||
/**
|
||||
* 查询车辆vin码
|
||||
*
|
||||
* @param id 车辆vin码主键
|
||||
* @return 车辆vin码
|
||||
*/
|
||||
public CarVinInfo selectCarVinInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询车辆vin码列表
|
||||
*
|
||||
* @param carVinInfo 车辆vin码
|
||||
* @return 车辆vin码集合
|
||||
*/
|
||||
public List<CarVinInfo> selectCarVinInfoList(CarVinInfo carVinInfo);
|
||||
|
||||
/**
|
||||
* 通过vin查询信息
|
||||
* @param vinCode
|
||||
* @return
|
||||
*/
|
||||
CarVinInfo selectVinInfoByVin(String vinCode);
|
||||
|
||||
/**
|
||||
* 新增车辆vin码
|
||||
*
|
||||
* @param carVinInfo 车辆vin码
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertCarVinInfo(CarVinInfo carVinInfo);
|
||||
|
||||
/**
|
||||
* 修改车辆vin码
|
||||
*
|
||||
* @param carVinInfo 车辆vin码
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateCarVinInfo(CarVinInfo carVinInfo);
|
||||
|
||||
/**
|
||||
* 批量删除车辆vin码
|
||||
*
|
||||
* @param ids 需要删除的车辆vin码主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteCarVinInfoByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除车辆vin码信息
|
||||
*
|
||||
* @param id 车辆vin码主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteCarVinInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 通过vin查询用户信息
|
||||
* @param vinCode
|
||||
* @return
|
||||
*/
|
||||
CarVinInfoVO getMemberInfoByVinCode(String vinCode);
|
||||
}
|
||||
Reference in New Issue
Block a user