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:
@@ -3,7 +3,9 @@ package com.jsowell.pile.service;
|
||||
import java.util.List;
|
||||
|
||||
import com.jsowell.pile.domain.CarVinInfo;
|
||||
import com.jsowell.pile.dto.CarVinDTO;
|
||||
import com.jsowell.pile.vo.CarVinInfoVO;
|
||||
import com.jsowell.pile.vo.uniapp.AuthCardVO;
|
||||
|
||||
/**
|
||||
* 车辆vin码Service接口
|
||||
@@ -74,4 +76,17 @@ public interface ICarVinInfoService {
|
||||
*/
|
||||
CarVinInfoVO getMemberInfoByVinCode(String vinCode);
|
||||
|
||||
/**
|
||||
* 通过memberId查询绑定的车辆vin列表
|
||||
* @param memberId
|
||||
* @return
|
||||
*/
|
||||
List<CarVinInfoVO> getCarVinListByMemberId(String memberId);
|
||||
|
||||
/**
|
||||
* 用户绑定车辆vin
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
int bindAuthCard(CarVinDTO dto);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user