puzhibing
2024-08-17 3a0a98d3ea6f852eff758413e5e7ec36e1e06404
ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/feignClient/RoleSiteClient.java
@@ -6,10 +6,7 @@
import com.ruoyi.other.api.factory.RoleSiteFallbackFactory;
import com.ruoyi.other.api.factory.UserSiteFallbackFactory;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@@ -26,8 +23,8 @@
    * @param roleId
    * @return
    */
   @PostMapping("/t-role-site/getSiteIds")
   R<List<Integer>> getSiteIds(Long roleId);
   @PostMapping("/t-role-site/getSiteIds/{roleId}")
   R<List<Integer>> getSiteIds(@PathVariable("roleId") Long roleId);
   
   
   /**