| | |
| | | package com.java110.intf.user; |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.roleCommunity.RoleCommunityDto; |
| | | import com.java110.po.roleCommunity.RoleCommunityPo; |
| | | import com.java110.dto.privilege.RoleCommunityDto; |
| | | import com.java110.po.privilege.RoleCommunityPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryRoleCommunitysCount", method = RequestMethod.POST) |
| | | int queryRoleCommunitysCount(@RequestBody RoleCommunityDto roleCommunityDto); |
| | | @RequestMapping(value = "/queryRoleCommunitysNameCount", method = RequestMethod.POST) |
| | | int queryRoleCommunitysNameCount(@RequestBody RoleCommunityDto orgCommunityDto); |
| | | @RequestMapping(value = "/queryRoleCommunitysName", method = RequestMethod.POST) |
| | | List<RoleCommunityDto> queryRoleCommunitysName(@RequestBody RoleCommunityDto orgCommunityDto); |
| | | } |