xuhy
2024-08-17 5a5b01fa9824a42e3eb033088a20e24c32b30dda
ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/feignClient/TEvaluationTagClient.java
@@ -8,6 +8,7 @@
import org.springframework.cloud.openfeign.FeignClient;
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.RequestParam;
import java.util.List;
@@ -34,5 +35,5 @@
    * @return
    */
   @PostMapping("/t-evaluation-tag/getListByIds")
   R<List<TEvaluationTag>> getListByIds(List<Integer> tagIds);
   R<List<TEvaluationTag>> getListByIds(@RequestBody List<Integer> tagIds);
}