|
|
|
@ -1,5 +1,6 @@ |
|
|
|
|
package org.jeecg.modules.operationtool.controller; |
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
|
|
|
import io.swagger.annotations.Api; |
|
|
|
@ -88,6 +89,12 @@ public class ZyOperationtoolController extends JeecgController<ZyOperationtool, |
|
|
|
|
@ApiOperation(value="工序工具-添加", notes="工序工具-添加") |
|
|
|
|
@PostMapping(value = "/add") |
|
|
|
|
public Result<?> add(@RequestBody ZyOperationtool zyOperationtool) { |
|
|
|
|
QueryWrapper s=new QueryWrapper(); |
|
|
|
|
s.eq("process_id",zyOperationtool.getOperationid()); |
|
|
|
|
s.eq("toolid",zyOperationtool.getToolid()); |
|
|
|
|
int a=zyOperationtoolService.count(s); |
|
|
|
|
if(a>=1) |
|
|
|
|
return Result.error("已存在本信息"); |
|
|
|
|
zyOperationtoolService.save(zyOperationtool); |
|
|
|
|
return Result.OK("添加成功!"); |
|
|
|
|
} |
|
|
|
@ -102,6 +109,12 @@ public class ZyOperationtoolController extends JeecgController<ZyOperationtool, |
|
|
|
|
@ApiOperation(value="工序工具-编辑", notes="工序工具-编辑") |
|
|
|
|
@PutMapping(value = "/edit") |
|
|
|
|
public Result<?> edit(@RequestBody ZyOperationtool zyOperationtool) { |
|
|
|
|
QueryWrapper s=new QueryWrapper(); |
|
|
|
|
s.eq("operationid",zyOperationtool.getOperationid()); |
|
|
|
|
s.eq("toolid",zyOperationtool.getToolid()); |
|
|
|
|
int a=zyOperationtoolService.count(s); |
|
|
|
|
if(a>=1) |
|
|
|
|
return Result.error("已存在本信息"); |
|
|
|
|
zyOperationtoolService.updateById(zyOperationtool); |
|
|
|
|
return Result.OK("编辑成功!"); |
|
|
|
|
} |
|
|
|
|