@FeignClient(name="${app.services.resource-core:resource-core}")
@RequestMapping(value="/res/access")
public interface ResAccessClient
| 限定符和类型 | 方法和说明 |
|---|---|
Boolean |
delete(String id) |
org.springframework.data.domain.Page<ResAccess> |
getResAccessByPage(String title,
org.springframework.data.domain.Pageable pageable) |
ResAccess |
queryById(String id) |
List<ResAccess> |
queryByIds(String ids) |
String |
save(List<ResAccess> resAccessList) |
String |
save(ResAccess resAccess) |
@GetMapping(value="/get/page") org.springframework.data.domain.Page<ResAccess> getResAccessByPage(@RequestParam(name="title") String title, org.springframework.data.domain.Pageable pageable)
@RequestMapping(value="/query/id") ResAccess queryById(@RequestParam(name="id") String id)
Copyright © 2020 GTMAP. All rights reserved.