修试后人入库接口修改

This commit is contained in:
bonus 2025-06-16 14:09:20 +08:00
parent 85e34e4812
commit 17ddd03864
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ public interface RepairInputDetailsMapper {
List<RepairInputDetails> selectInputTaskStatus(RepairInputDetails inputApplyDetails); List<RepairInputDetails> selectInputTaskStatus(RepairInputDetails inputApplyDetails);
List<RepairInputDetails> selectRepairListByBoxId(String qrCode); List<RepairInputDetails> selectRepairListByBoxId(RepairInputDetails input);
int updateBoxStatus(String qrCode, int i); int updateBoxStatus(String qrCode, int i);
} }

View File

@ -764,7 +764,7 @@ public class RepairInputDetailsServiceImpl implements IRepairInputDetailsService
try { try {
//0查询二维码标准箱绑定的机具 //0查询二维码标准箱绑定的机具
List<RepairInputDetails> boxList = repairInputDetailsMapper.selectRepairListByBoxId(repairInputDetails.getQrCode()); List<RepairInputDetails> boxList = repairInputDetailsMapper.selectRepairListByBoxId(repairInputDetails);
//1查询入参设备是否为待入库设备 //1查询入参设备是否为待入库设备
for(RepairInputDetails box : boxList){ for(RepairInputDetails box : boxList){