ludc
2023-04-12 d7a83f1396425c4e47da9b95f287b26cd5bb3344
Source/UBCS/ubcs-service/ubcs-user/src/main/java/com/vci/ubcs/system/user/feign/UserClient.java
@@ -26,10 +26,7 @@
import org.springblade.core.tenant.annotation.NonDS;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.utils.Func;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@@ -99,4 +96,10 @@
      return R.data(service.updateUser(user));
   }
   @Override
   @PostMapping(UPDATE_USER_STRATEGY_STATUS)
   public R<Boolean> updateStrategyStatus(@RequestParam List<Long> userIds) {
      return R.data(service.updateByUseStrategyId(userIds));
   }
}