package com.dy.pmsStation.assemblyStep; import com.baomidou.mybatisplus.core.toolkit.StringUtils; import com.dy.common.aop.SsoPowerAop; import com.dy.common.webUtil.BaseResponse; import com.dy.common.webUtil.BaseResponseUtils; import com.dy.pmsGlobal.aop.Log; import com.dy.pmsGlobal.pojoPlt.*; import com.dy.pmsGlobal.pojoPr.PrAssemblyPlan; import com.dy.pmsGlobal.pojoPr.PrProductionNode; import com.dy.pmsGlobal.pojoSta.StaDeviceLife; import com.dy.pmsGlobal.pojoSta.StaDeviceProductionLog; import com.dy.pmsGlobal.pojoTst.TstCommand; import jakarta.validation.Valid; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.List; import java.util.Map; /** * 记录组装各步骤 */ @Slf4j @RestController @RequestMapping(path = "assemblyStep") @SuppressWarnings("unchecked") public class AssemblyStepCtrl { private AssemblyStepSv sv; @Autowired public void setSv(AssemblyStepSv sv) { this.sv = sv; } @PostMapping(path = "save") public BaseResponse save(@RequestBody @Valid QueryVo vo) { log.info("AssemblyStepCtrl.save():{}", vo); int count = sv.save(vo); if (count <= 0) { return BaseResponseUtils.buildFail("数据库存储失败"); } else { return BaseResponseUtils.buildSuccess(true); } } /** * 测试 * @param vo * @return */ @PostMapping(path = "testing") public BaseResponse testing(@RequestBody @Valid QueryVo vo) { log.info("AssemblyStepCtrl.testing():{}", vo); int count = sv.testing(vo); if (count <= 0) { return BaseResponseUtils.buildFail("数据库存储失败"); } else { return BaseResponseUtils.buildSuccess(true); } } /** * 品检 * @param vo * @return */ @PostMapping(path = "inspectQuality") public BaseResponse inspectQuality(@RequestBody @Valid QueryVo vo) { log.info("AssemblyStepCtrl.inspectQuality():{}", vo); int count = sv.inspectQuality(vo); if (count <= 0) { return BaseResponseUtils.buildFail("数据库存储失败"); } else { return BaseResponseUtils.buildSuccess(true); } } /** * 无任务工作中的其他页面 * @param vo * @return */ @PostMapping(path = "otherWork") public BaseResponse otherWork(@RequestBody @Valid QueryVo vo) { log.info("AssemblyStepCtrl.otherWork():{}", vo); int count = sv.otherWork(vo); if (count <= 0) { return BaseResponseUtils.buildFail("数据库存储失败"); } else { return BaseResponseUtils.buildSuccess(true); } } @PostMapping(path = "repair") public BaseResponse repair(@RequestBody @Valid QueryVo vo) { log.info("AssemblyStepCtrl.repair():{}" ,vo); int count = sv.repair(vo); if (count <= 0) { return BaseResponseUtils.buildFail("数据库存储失败"); } else { return BaseResponseUtils.buildSuccess(true); } } /** * 根据节点的查出节点作业指导书 * * @param * @return */ @GetMapping(path = "getSopByNodeId") public BaseResponse getSopByNodeId(String nodeId) { log.info("AssemblyStepCtrl.getSopByNodeId():{}", nodeId); PrProductionNode result = sv.getSopByNodeId(nodeId); return BaseResponseUtils.buildSuccess(result); } /** * 根据产品查出 主要技术参数 * * @param * @return */ @GetMapping(path = "getParamsByProId") public BaseResponse> getParamsByProId(String proId) { log.info("AssemblyStepCtrl.getParamsByProId():{}", proId); List result = sv.getParamsByProId(proId); return BaseResponseUtils.buildSuccess(result); } /** * 根据产品查出产品文件 主要技术参数 * * @param * @return */ @GetMapping(path = "getFileByProId") public BaseResponse> getFileByProId(String proId) { log.info("AssemblyStepCtrl.getFileByProId():{}", proId); List result = sv.getFileByProId(proId); return BaseResponseUtils.buildSuccess(result); } @GetMapping(path = "getQualityItems") public BaseResponse> getQualityItems(String proId) { log.info("AssemblyStepCtrl.getQualityItems():{}", proId); List result = sv.getQualityItems(proId); return BaseResponseUtils.buildSuccess(result); } @GetMapping(path = "getTestItems") public BaseResponse> getTestItems(String proId) { log.info("AssemblyStepCtrl.getTestItems():{}", proId); List result = sv.getTestItems(proId); return BaseResponseUtils.buildSuccess(result); } @GetMapping(path = "queryByDeviceNo") public BaseResponse> queryByDeviceNo(String deviceNo) { log.info("AssemblyStepCtrl.queryByDeviceNo():{}", deviceNo); Map result = sv.queryByDeviceNo(deviceNo, null); if (StringUtils.isBlank(result.get("proName"))) { return BaseResponseUtils.buildFail("该编码(" + deviceNo + ")不是主要物料(系统中管控的其他设备)"); } else { return BaseResponseUtils.buildSuccess(result); } } @GetMapping(path = "queryLifeByDeviceNo") public BaseResponse queryLifeByDeviceNo(String deviceNo) { log.info("AssemblyStepCtrl.queryLifeByDeviceNo():{}", deviceNo); List result = sv.queryLifeByDeviceNo(deviceNo); return BaseResponseUtils.buildSuccess(result); } @GetMapping(path = "queryLogByDeviceNo") public BaseResponse queryLogByDeviceNo(String deviceNo) { log.info("AssemblyStepCtrl.queryLogByDeviceNo():{}", deviceNo); List result = sv.queryLogByDeviceNo(deviceNo); return BaseResponseUtils.buildSuccess(result); } @GetMapping(path = "queryPlanByDeviceNo") public BaseResponse queryPlanByDeviceNo(String deviceNo) { log.info("AssemblyStepCtrl.queryPlanByDeviceNo():{}", deviceNo); PrAssemblyPlan result = sv.queryPlanByDeviceNo(deviceNo); return BaseResponseUtils.buildSuccess(result); } //自动化测试 根据产品ID查出全部指令 @GetMapping(path = "getCommand") public BaseResponse getCommand(String proId, int type) { log.info("AssemblyStepCtrl.getCommand():{}", proId + " " + type); List result = sv.getCommand(proId,type); return BaseResponseUtils.buildSuccess(result); } @GetMapping(path="all") public BaseResponse> all(){ QueryVo vo = new QueryVo(); return BaseResponseUtils.buildSuccess(sv.selectAll(vo)); } }