|
@@ -0,0 +1,61 @@
|
|
|
+package com.ym.mec.web.controller.system;
|
|
|
+
|
|
|
+import com.ym.mec.common.controller.BaseController;
|
|
|
+import com.ym.mec.common.page.QueryInfo;
|
|
|
+import com.ym.mec.web.dal.entity.HotWordsLabel;
|
|
|
+import com.ym.mec.web.service.HotWordsLabelService;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import io.swagger.annotations.ApiParam;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Author Joburgess
|
|
|
+ * @Date 2019/9/21
|
|
|
+ */
|
|
|
+@Api("热词标签管理")
|
|
|
+@RequestMapping("studentManage")
|
|
|
+@RestController
|
|
|
+public class HotWordLabelManageController extends BaseController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private HotWordsLabelService hotWordsLabelService;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value = "新增热词标签")
|
|
|
+ @PostMapping("/add")
|
|
|
+ public Object add(HotWordsLabel hotWordsLabel) {
|
|
|
+ hotWordsLabelService.insert(hotWordsLabel);
|
|
|
+ return succeed();
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "删除热词标签")
|
|
|
+ @PostMapping("/del/{id}")
|
|
|
+ public Object del(@ApiParam(value = "热词标签编号", required = true) @PathVariable("id") Integer id) {
|
|
|
+ hotWordsLabelService.delete(id);
|
|
|
+ return succeed();
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "修改热词标签")
|
|
|
+ @PostMapping("/update")
|
|
|
+ public Object update(HotWordsLabel hotWordsLabel) {
|
|
|
+ hotWordsLabel.setUpdateTime(new Date());
|
|
|
+ hotWordsLabelService.update(hotWordsLabel);
|
|
|
+ return succeed();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation("分页查询热词列表")
|
|
|
+ @PostMapping("/queryPage")
|
|
|
+ public Object queryPage(QueryInfo queryInfo){
|
|
|
+ return succeed(hotWordsLabelService.queryPage(queryInfo));
|
|
|
+ }
|
|
|
+
|
|
|
+}
|