| | |
| | | import java.io.IOException; |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 查询模板的控制器 |
| | |
| | | * 查询模板的列表添加了字段的相关属性 |
| | | * @param btmName 类型 |
| | | * @param linkFlag 是否链接类型 :true 链接类型 ,false 业务类型 |
| | | * @param direction 正反方向 |
| | | * @return 查询模板的列表 |
| | | */ |
| | | @GetMapping("/queryTemplateListByAttr") |
| | |
| | | * @return |
| | | */ |
| | | @PostMapping("/expLinkTemplate") |
| | | public void expLinkTemplate(@RequestBody List<String> names,HttpServletResponse response) throws PLException, IOException { |
| | | quereyTemplateServiceI.expLinkTemplate(names, response); |
| | | public void expLinkTemplate(@RequestBody Map qtNames, HttpServletResponse response) throws PLException, IOException { |
| | | quereyTemplateServiceI.expLinkTemplate(String.valueOf(qtNames.get("qtNames")), response); |
| | | } |
| | | |
| | | /** |