|
|
@ -241,8 +241,8 @@ public class IcResiUserController implements ResultDataResolver { |
|
|
|
* @date 2022/4/26 10:48 |
|
|
|
*/ |
|
|
|
@PostMapping("rent/updateimage") |
|
|
|
public Result updateImage(@RequestBody RentTenantFormDTO formDTO) { |
|
|
|
String resiUserId = icResiUserService.updateImage(formDTO); |
|
|
|
public Result updateImage(@LoginUser TokenDto tokenDto, @RequestBody RentTenantFormDTO formDTO) { |
|
|
|
String resiUserId = icResiUserService.updateImage(tokenDto, formDTO); |
|
|
|
//推送MQ事件
|
|
|
|
editResiMq(formDTO.getCustomerId(), resiUserId); |
|
|
|
return new Result(); |
|
|
|