|
|
@@ -51,9 +51,9 @@ public class ThInspectionServiceImpl extends BaseServiceImpl<ThInspectionMapper, |
|
|
|
@Override |
|
|
|
public List<InspectionVO> track(Integer id) { |
|
|
|
|
|
|
|
LambdaQueryWrapper<ThInspection> lambdaQueryWrapper=new LambdaQueryWrapper(); |
|
|
|
LambdaQueryWrapper<ThInspection> lambdaQueryWrapper=new LambdaQueryWrapper<>(); |
|
|
|
lambdaQueryWrapper.eq(ThInspection::getMissionId,id); |
|
|
|
lambdaQueryWrapper.eq(ThInspection::getTenantId, ShiroUtils.getTenantId()); |
|
|
|
//lambdaQueryWrapper.eq(ThInspection::getTenantId, ShiroUtils.getTenantId()); |
|
|
|
List<InspectionVO> result=new ArrayList<>(); |
|
|
|
List<ThInspection> thInspections = inspectionMapper.selectList(lambdaQueryWrapper); |
|
|
|
|