@FeignClient(name="account")
@RequestMapping(value="/account/rest/v1/elements")
public interface ElementClient
| 限定符和类型 | 方法和说明 |
|---|---|
void |
delete(String ids) |
ElementConfDto |
findById(String id) |
ElementConfDto |
findByModuleCode(String moduleCode,
String code) |
Map<String,String> |
getAuthorities(String username,
String moduleCode) |
List<ElementConfDto> |
list(String moduleCode,
String code,
String description) |
ElementConfDto |
save(ElementConfDto elementConfDto) |
@GetMapping(value="/list") List<ElementConfDto> list(@RequestParam(name="moduleCode") String moduleCode, @RequestParam(name="code",required=false) String code, @RequestParam(name="description",required=false) String description)
moduleCode - 模块编码code - 元素编码description - 描述@GetMapping ElementConfDto findById(@RequestParam(name="id") String id)
id - 描述@GetMapping(value="/module") ElementConfDto findByModuleCode(@RequestParam(name="moduleCode") String moduleCode, @RequestParam(name="code") String code)
moduleCode - 模块编码code - 元素编码@PostMapping ElementConfDto save(@RequestBody ElementConfDto elementConfDto)
elementConfDto - 页面元素@DeleteMapping
void delete(@RequestParam(name="ids")
String ids)
ids - 页面元素Id逗号间隔Copyright © 2025 GTMAP. All rights reserved.