|
@@ -0,0 +1,111 @@
|
|
|
+package com.bz.smart_city.controller;
|
|
|
+
|
|
|
+import com.bz.smart_city.entity.GridManagement;
|
|
|
+import com.bz.smart_city.service.GridManagementService;
|
|
|
+import com.github.pagehelper.PageHelper;
|
|
|
+import com.zcxk.common.model.AjaxMessage;
|
|
|
+import com.zcxk.common.model.Pagination;
|
|
|
+import com.zcxk.common.model.ResultStatus;
|
|
|
+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.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * (GridManagement)控制层
|
|
|
+ *
|
|
|
+ * @author hym
|
|
|
+ * @since 2021-02-23 11:47:59
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("/gridManagement")
|
|
|
+@Api(tags = "")
|
|
|
+public class GridManagementController {
|
|
|
+ /**
|
|
|
+ * 服务对象
|
|
|
+ */
|
|
|
+ @Autowired
|
|
|
+ private GridManagementService gridManagementService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 通过主键查询单条数据
|
|
|
+ *
|
|
|
+ * @param id 参数对象
|
|
|
+ * @return 单条数据
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "get", method = RequestMethod.POST)
|
|
|
+ @ApiOperation(value = "查询设施配置列表")
|
|
|
+ public AjaxMessage<GridManagement> selectOne(
|
|
|
+ @ApiParam(value = "设置配置", required = true) Integer id) {
|
|
|
+ GridManagement result = gridManagementService.selectById(id);
|
|
|
+
|
|
|
+ return new AjaxMessage<>(ResultStatus.OK, result);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增一条数据
|
|
|
+ *
|
|
|
+ * @param gridManagement 实体类
|
|
|
+ * @return Response对象
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "insert", method = RequestMethod.POST)
|
|
|
+ @ApiOperation(value = "查询设施配置列表")
|
|
|
+ public AjaxMessage<Integer> insert(@ApiParam(value = "设置配置", required = true) @RequestBody GridManagement gridManagement) {
|
|
|
+ int result = gridManagementService.insert(gridManagement);
|
|
|
+
|
|
|
+ return new AjaxMessage<>(ResultStatus.OK, result);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改一条数据
|
|
|
+ *
|
|
|
+ * @param gridManagement 实体类
|
|
|
+ * @return Response对象
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "update", method = RequestMethod.POST)
|
|
|
+ @ApiOperation(value = "查询设施配置列表")
|
|
|
+ public AjaxMessage<Integer> update(@ApiParam(value = "设置配置", required = true) @RequestBody GridManagement gridManagement) {
|
|
|
+ int result = gridManagementService.update(gridManagement);
|
|
|
+ return new AjaxMessage<>(ResultStatus.OK, result);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除一条数据
|
|
|
+ *
|
|
|
+ * @param gridManagement 参数对象
|
|
|
+ * @return Response对象
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "delete", method = RequestMethod.POST)
|
|
|
+ @ApiOperation(value = "查询设施配置列表")
|
|
|
+ public AjaxMessage<Integer> delete(@ApiParam(value = "设置配置", required = true) @RequestBody GridManagement gridManagement) {
|
|
|
+ int result = gridManagementService.deleteById(gridManagement.getId());
|
|
|
+ return new AjaxMessage<>(ResultStatus.OK, result);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分页查询
|
|
|
+ *
|
|
|
+ * @param pageNum 偏移
|
|
|
+ * @param pageSize 条数
|
|
|
+ * @return Response对象
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "selectPage", method = RequestMethod.POST)
|
|
|
+ @ApiOperation(value = "查询设施配置列表")
|
|
|
+ public AjaxMessage<Pagination<GridManagement>> selectPage(Integer pageNum, Integer pageSize) {
|
|
|
+ GridManagement gridManagement = new GridManagement();
|
|
|
+
|
|
|
+ PageHelper.startPage(pageNum, pageSize);
|
|
|
+ List<GridManagement> gridManagements = gridManagementService.selectList(gridManagement);
|
|
|
+ Pagination<GridManagement> pages = new Pagination<>(gridManagements);
|
|
|
+ return new AjaxMessage<>(ResultStatus.OK, pages);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|