新增 用户绑定vin信息接口

This commit is contained in:
Lemon
2023-06-08 17:04:27 +08:00
parent a02bebb74f
commit dec5dfbd8f
7 changed files with 188 additions and 0 deletions

View File

@@ -75,4 +75,11 @@ public interface CarVinInfoMapper {
* @return
*/
CarVinInfoVO getMemberInfoByVinCode(String vinCode);
/**
* 通过memberId查询绑定的车辆vin列表
* @param memberId
* @return
*/
List<CarVinInfoVO> getCarVinListByMemberId(String memberId);
}