|
@@ -0,0 +1,69 @@
|
|
|
+package com.gyee.backconfig.controller;
|
|
|
+
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.gyee.backconfig.config.R;
|
|
|
+import com.gyee.backconfig.model.auto.ProBasicTestingPoint;
|
|
|
+import com.gyee.backconfig.service.auto.IProBasicTestingPointService;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import java.util.Arrays;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 型号逻辑测点 前端控制器
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author wang
|
|
|
+ * @since 2022-12-13
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("//pro-basic-testing-point")
|
|
|
+public class ProBasicTestingPointController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IProBasicTestingPointService proBasicTestingPointService;
|
|
|
+
|
|
|
+ @GetMapping(value = "/list")
|
|
|
+ @ApiOperation(value = "型号逻辑-列表", notes = "型号逻辑-列表")
|
|
|
+ public R findList(@RequestParam(value = "id", required = false) String id,
|
|
|
+ @RequestParam(value = "nemCode", required = false) String nemCode,
|
|
|
+ @RequestParam(value = "name",required = false) String name,
|
|
|
+ @RequestParam(value = "uniformCode",required = false) String uniformCode,
|
|
|
+ @RequestParam(value = "pageNum", required = true) String pageNum,
|
|
|
+ @RequestParam(value = "pageSize", required = true) String pageSize) {
|
|
|
+ IPage<ProBasicTestingPoint> list = proBasicTestingPointService.list( id, nemCode, name,uniformCode, pageNum, pageSize);
|
|
|
+ if (null != list) {
|
|
|
+ return R.ok().data(list);
|
|
|
+ } else {
|
|
|
+ return R.error().data("查询失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @PostMapping(value = "/add")
|
|
|
+ @ApiOperation(value = "型号逻辑-新增or修改", notes = "型号逻辑-新增or修改")
|
|
|
+ public R addAll(@RequestBody ProBasicTestingPoint proBasicTestingPoint) {
|
|
|
+
|
|
|
+ boolean b = proBasicTestingPointService.saveOrUpdate(proBasicTestingPoint);
|
|
|
+ if (b) {
|
|
|
+ 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 = proBasicTestingPointService.removeByIds(Arrays.asList(strings));
|
|
|
+ if (b) {
|
|
|
+ return R.ok().data(b);
|
|
|
+ } else {
|
|
|
+ return R.error().data("删除失败!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|