注释不需要内容
This commit is contained in:
+4
-4
@@ -637,7 +637,7 @@ public class PayContactsManagementController extends JeroController<PayContactsM
|
||||
@GetMapping(value = "/queryByIdMeeting")
|
||||
public Result<?> queryByIdMeeting(@RequestParam(name="id") String id) {
|
||||
LoginUser sysUser =(LoginUser) SecurityUtils.getSubject().getPrincipal();
|
||||
if(sysUser.getId().equals(id)) {
|
||||
// if(sysUser.getId().equals(id)) {
|
||||
PayContactsManagement payContactsManagement = payContactsManagementService.getById(id);
|
||||
if (payContactsManagement == null) {
|
||||
return Result.error("未找到对应数据");
|
||||
@@ -649,9 +649,9 @@ public class PayContactsManagementController extends JeroController<PayContactsM
|
||||
payContactsManagement.setEmail(PasswordUtil.decrypt(payContactsManagement.getEmail()));
|
||||
}
|
||||
return Result.OK(payContactsManagement);
|
||||
}else {
|
||||
return Result.OK("权限异常");
|
||||
}
|
||||
// }else {
|
||||
// return Result.OK("权限异常");
|
||||
// }
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user