Compare commits

..

No commits in common. "30025595143139b70e9171a32914365cabe46044" and "b1eb9cfbc4e6baac03241084399e5a88d5523026" have entirely different histories.

3 changed files with 0 additions and 35 deletions

View File

@ -30,21 +30,6 @@ public class UserCarController {
return CommonResult.success(userCarService.getMyCar());
}
/**
* 授权个人信息到某企业
* @author PQZ
* @date 11:49 2024/10/12
**/
@GetMapping("/empowerUserInfo")
@Operation(summary = "授权个人信息到某企业")
public CommonResult<?> empowerUserInfo(@RequestParam("tenantId") String tenantId) {
userCarService.empowerUserInfo(tenantId);
return CommonResult.success(true);
}
/**
* 创建或更新车辆信息
*

View File

@ -40,12 +40,4 @@ public interface UserCarService extends IService<UserCar> {
* @return java.lang.Object
**/
Object vehicleLicenseOCR(String imagePath) throws TencentCloudSDKException;
/**
* 将客户信息授权给某个修理厂
* @author PQZ
* @date 12:40 2024/10/12
* @param tenantId 租户id
**/
void empowerUserInfo(String tenantId);
}

View File

@ -80,16 +80,4 @@ public class UserCarServiceImpl extends ServiceImpl<UserCarMapper, UserCar> impl
}
return licenseVO;
}
/**
* 将客户信息授权给某个修理厂
*
* @param tenantId 租户id
* @author PQZ
* @date 12:40 2024/10/12
**/
@Override
public void empowerUserInfo(String tenantId) {
}
}