Pu Zhibing
2025-02-27 f0a9a41697a8568e8b3bd3436c450e68b3298916
springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/api/SystemUserController.java
@@ -197,7 +197,7 @@
   
   @PutMapping("/freeze/{id}")
   @ApiOperation(value = "冻结账号", tags = {"三个身边后台-人员管理"})
   @OperLog(operModul = "三个身边后台",operType = 0,businessType = "冻结账号")
   @OperLog(operModul = "三个身边后台",operType = 2,businessType = "冻结账号")
   public R freeze(@PathVariable("id") Integer id){
      SystemUser systemUser = systemUserService.getById(id);
      if(2 == systemUser.getStatus()){
@@ -211,7 +211,7 @@
   
   @PutMapping("/unfreeze/{id}")
   @ApiOperation(value = "解冻账号", tags = {"三个身边后台-人员管理"})
   @OperLog(operModul = "三个身边后台",operType = 0,businessType = "解冻账号")
   @OperLog(operModul = "三个身边后台",operType = 2,businessType = "解冻账号")
   public R unfreeze(@PathVariable("id") Integer id){
      SystemUser systemUser = systemUserService.getById(id);
      if(1 == systemUser.getStatus()){