| | |
| | | package com.java110.intf.community; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.basePrivilege.BasePrivilegeDto; |
| | | import com.java110.dto.basePrivilege.HasPrivilegeDto; |
| | | import com.java110.dto.menu.MenuDto; |
| | | import com.java110.dto.menuGroup.MenuGroupDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "community-service", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "${java110.community-service}", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/menuApi") |
| | | public interface IMenuInnerServiceSMO { |
| | | |
| | |
| | | @RequestMapping(value = "/deleteMenu", method = RequestMethod.POST) |
| | | int deleteMenu(@RequestBody MenuDto routeDto); |
| | | |
| | | |
| | | @RequestMapping(value = "/hasPrivilege", method = RequestMethod.POST) |
| | | List<HasPrivilegeDto> hasPrivilege(@RequestBody HasPrivilegeDto hasPrivilegeDto); |
| | | } |