|
@@ -43,12 +43,6 @@ public class JyMaterialListController extends BaseController {
|
|
|
@Autowired
|
|
@Autowired
|
|
|
private IJyMaterialListService jyMaterialListService;
|
|
private IJyMaterialListService jyMaterialListService;
|
|
|
|
|
|
|
|
- @GetMapping("/getKeyWordList")
|
|
|
|
|
- public TableDataInfo getKeyWordList() {
|
|
|
|
|
- startPage();
|
|
|
|
|
- List<JSONObject> list = jyMaterialListService.getKeyWordList();
|
|
|
|
|
- return getDataTable(list);
|
|
|
|
|
- }
|
|
|
|
|
|
|
|
|
|
@GetMapping("/insertKeyWord")
|
|
@GetMapping("/insertKeyWord")
|
|
|
public JSONObject insertKeyWord(String type, String keyWord) {
|
|
public JSONObject insertKeyWord(String type, String keyWord) {
|
|
@@ -129,6 +123,10 @@ public class JyMaterialListController extends BaseController {
|
|
|
return jyMaterialListService.selectJyMaterialListList(jyMaterialList);
|
|
return jyMaterialListService.selectJyMaterialListList(jyMaterialList);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @GetMapping("/getKeyWordList")
|
|
|
|
|
+ public PageInfo<JSONObject> getKeyWordList(String pageNum, String pageSize) {
|
|
|
|
|
+ return jyMaterialListService.getKeyWordList(Integer.valueOf(pageNum), Integer.valueOf(pageSize));
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 修改素材信息
|
|
* 修改素材信息
|