| | |
| | | import java.io.IOException; |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 查询模板的控制器 |
| | |
| | | * @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); |
| | | } |
| | | |
| | | /** |