|
@@ -0,0 +1,93 @@
|
|
|
+package com.gyee.runeconomy.controller;
|
|
|
+
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.gyee.common.config.R;
|
|
|
+import com.gyee.runeconomy.model.auto.ProEconFaultFault;
|
|
|
+import com.gyee.runeconomy.service.auto.IProEconFaultFaultService;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import java.util.Arrays;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 故障录入表 前端控制器
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author wang
|
|
|
+ * @since 2023-07-05
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("//pro-econ-fault-fault")
|
|
|
+public class ProEconFaultFaultController {
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IProEconFaultFaultService proEconFaultFaultService;
|
|
|
+ /**
|
|
|
+ * 查询
|
|
|
+ * @param windpowerstationId
|
|
|
+ * @param windpowerstationName
|
|
|
+ * @param begindate
|
|
|
+ * @param planEnddate
|
|
|
+ * @param pageNum
|
|
|
+ * @param pageSize
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping(value = "/list")
|
|
|
+ @ApiOperation(value = "清洗录入-列表", notes = "清洗录入-列表")
|
|
|
+ public R findList(@RequestParam(value = "windpowerstationId", required = false) String windpowerstationId,
|
|
|
+ @RequestParam(value = "windpowerstationName", required = false) String windpowerstationName,
|
|
|
+ @RequestParam(value = "begindate", required = false) Date begindate,
|
|
|
+ @RequestParam(value = "planEnddate", required = false) Date planEnddate,
|
|
|
+ @RequestParam(value = "pageNum", required = true) String pageNum,
|
|
|
+ @RequestParam(value = "pageSize", required = true) String pageSize) {
|
|
|
+ IPage<ProEconFaultFault> list = proEconFaultFaultService.getList(windpowerstationId, windpowerstationName, begindate, planEnddate, pageNum, pageSize);
|
|
|
+ if (null != list) {
|
|
|
+ return R.ok().data(list);
|
|
|
+ } else {
|
|
|
+ return R.error().data("查询失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ * @param ProEconFaultFault
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping(value = "/add")
|
|
|
+ @ApiOperation(value = "清洗录入-新增or修改", notes = "清洗录入-新增or修改")
|
|
|
+ public R addAll(@RequestBody ProEconFaultFault ProEconFaultFault) {
|
|
|
+
|
|
|
+ boolean b = proEconFaultFaultService.saveOrUpdate(ProEconFaultFault);
|
|
|
+ if (b) {
|
|
|
+// CacheContext.initPowerstationList();
|
|
|
+ return R.ok().data(b);
|
|
|
+ } else {
|
|
|
+ return R.error().data("保存失败!");
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除
|
|
|
+ * @param ids
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @DeleteMapping(value = "/{ids}")
|
|
|
+ @ApiOperation(value = "清洗录入-删除", notes = "清洗录入-删除")
|
|
|
+ public R deleteAll(@PathVariable("ids") String ids) {
|
|
|
+ String[] strings = ids.split(",");
|
|
|
+ boolean b = proEconFaultFaultService.removeByIds(Arrays.asList(strings));
|
|
|
+ if (b) {
|
|
|
+// CacheContext.initPowerstationList();
|
|
|
+ return R.ok().data(b);
|
|
|
+ } else {
|
|
|
+ return R.error().data("删除失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|