|
@@ -1,8 +1,17 @@
|
|
|
package com.gyee.backconfig.controller;
|
|
|
|
|
|
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.gyee.backconfig.config.CacheContext;
|
|
|
+import com.gyee.backconfig.config.R;
|
|
|
+import com.gyee.backconfig.model.auto.ProBasicSquare;
|
|
|
+import com.gyee.backconfig.service.auto.IProBasicSquareService;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import java.util.Arrays;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -16,4 +25,72 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
@RequestMapping("//pro-basic-square")
|
|
|
public class ProBasicSquareController {
|
|
|
|
|
|
+ @Resource
|
|
|
+ private IProBasicSquareService proBasicSquareService;
|
|
|
+ @Autowired
|
|
|
+ private CacheContext cacheContext;
|
|
|
+ /**
|
|
|
+ * 查询
|
|
|
+ *
|
|
|
+ * @param id
|
|
|
+ * @param
|
|
|
+ * @param name
|
|
|
+ * @param aname
|
|
|
+ * @param pageNum
|
|
|
+ * @param pageSize
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping(value = "/List")
|
|
|
+ @ApiOperation(value = "方阵-列表", notes = "方阵-列表")
|
|
|
+ public R findList(@RequestParam(value = "id", required = false) String id,
|
|
|
+ @RequestParam(value = "name", required = false) String name,
|
|
|
+ @RequestParam(value = "aname", required = false) String aname,
|
|
|
+ @RequestParam(value = "nemCode", required = false) String nemCode,
|
|
|
+ @RequestParam(value = "windpowerstationId", required = false) String windpowerstationId,
|
|
|
+ @RequestParam(value = "projectId", required = false) String projectId,
|
|
|
+ @RequestParam(value = "lineId", required = false) String lineId,
|
|
|
+ @RequestParam(value = "pageNum", required = true) String pageNum,
|
|
|
+ @RequestParam(value = "pageSize", required = true) String pageSize) {
|
|
|
+ IPage<ProBasicSquare> list = proBasicSquareService.list(id, name, aname, nemCode, windpowerstationId,projectId,lineId,pageNum, pageSize);
|
|
|
+ if (null != list) {
|
|
|
+ return R.ok().data(list);
|
|
|
+ } else {
|
|
|
+ return R.error().data("查询失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存
|
|
|
+ *
|
|
|
+ * @param proBasicRegion
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping(value = "/save")
|
|
|
+ @ApiOperation(value = "方阵-新增or修改", notes = "方阵-新增or修改")
|
|
|
+ @CrossOrigin(origins = "*", maxAge = 3600)
|
|
|
+ public R addAll(@RequestBody ProBasicSquare proBasicRegion) {
|
|
|
+
|
|
|
+ boolean b = proBasicSquareService.saveOrUpdate(proBasicRegion);
|
|
|
+ if (b) {
|
|
|
+ cacheContext.initSquaresList();
|
|
|
+ return R.ok().data(b);
|
|
|
+ } else {
|
|
|
+ return R.error().data("保存失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @DeleteMapping(value = "/{ids}")
|
|
|
+ @ApiOperation(value = "方阵-删除", notes = "方阵-删除")
|
|
|
+ public R deleteAll(@PathVariable("ids") String ids) {
|
|
|
+ String[] strings = ids.split(",");
|
|
|
+ boolean b = proBasicSquareService.removeByIds(Arrays.asList(strings));
|
|
|
+ if (b) {
|
|
|
+ cacheContext.initSquaresList();
|
|
|
+ return R.ok().data(b);
|
|
|
+ } else {
|
|
|
+ return R.error().data("删除失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|