|
@@ -0,0 +1,91 @@
|
|
|
+package com.gyee.backconfig.controller;
|
|
|
+
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.gyee.backconfig.config.R;
|
|
|
+import com.gyee.backconfig.model.auto.ProBasicProjectStudy;
|
|
|
+import com.gyee.backconfig.service.auto.IProBasicProjectStudyService;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import java.util.Arrays;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 可研电量 前端控制器
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author wang
|
|
|
+ * @since 2022-11-29
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("//pro-basic-project-study")
|
|
|
+@Api(value = "工程期次可研电量配置" ,tags = "工程期次可研电量配置")
|
|
|
+public class ProBasicProjectStudyController {
|
|
|
+ @Resource
|
|
|
+ private IProBasicProjectStudyService proBasicProjectStudyService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询
|
|
|
+ * @param id
|
|
|
+ * @param projectId
|
|
|
+ * @param windpowerstationId
|
|
|
+ * @param pageNum
|
|
|
+ * @param pageSize
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping(value = "/List")
|
|
|
+ @ApiOperation(value = "工程可研电量-列表", notes = "工程可研电量-列表")
|
|
|
+ public R findList(@RequestParam(value = "id", required = false) String id,
|
|
|
+ @RequestParam(value = "projectId", required = false) String projectId,
|
|
|
+ @RequestParam(value = "windpowerstationId", required = false) String windpowerstationId,
|
|
|
+ @RequestParam(value = "year", required = false) String year,
|
|
|
+ @RequestParam(value = "month", required = false) String month,
|
|
|
+ @RequestParam(value = "pageNum", required = true) String pageNum,
|
|
|
+ @RequestParam(value = "pageSize", required = true) String pageSize) {
|
|
|
+ IPage<ProBasicProjectStudy> list = proBasicProjectStudyService.List(id, projectId, windpowerstationId, year, month, pageNum, pageSize);
|
|
|
+ if (null != list) {
|
|
|
+ return R.ok().data(list);
|
|
|
+ } else {
|
|
|
+ return R.error().data("查询失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增
|
|
|
+ * @param proBasicProjectStudy
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping(value = "/add")
|
|
|
+ @ApiOperation(value = "工程可研电量-新增or修改", notes = "工程可研电量-新增or修改")
|
|
|
+ public R addAll(@RequestBody ProBasicProjectStudy proBasicProjectStudy){
|
|
|
+
|
|
|
+ boolean b = proBasicProjectStudyService.saveOrUpdate(proBasicProjectStudy);
|
|
|
+ if (b){
|
|
|
+ return R.ok().data(b);
|
|
|
+ }else {
|
|
|
+ return R.error().data("保存失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除
|
|
|
+ * @param ids
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @DeleteMapping(value = "/remove-project-study/{ids}")
|
|
|
+ @ApiOperation(value = "工程可研电量-删除", notes = "工程可研电量-删除")
|
|
|
+ public R deleteAll(@PathVariable("ids") String ids) {
|
|
|
+ String[] strings = ids.split(",");
|
|
|
+
|
|
|
+ boolean b = proBasicProjectStudyService.removeByIds(Arrays.asList(strings));
|
|
|
+
|
|
|
+ if (b) {
|
|
|
+ return R.ok().data(b);
|
|
|
+ } else {
|
|
|
+ return R.error().data("删除失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|