| | |
| | | } |
| | | |
| | | @Override |
| | | public List<QualityTestStandard> getParameterItemByProcessOrCategory(Long id, Integer inspectType) { |
| | | return baseMapper.selectList(Wrappers.<QualityTestStandard>lambdaQuery() |
| | | .eq(Objects.nonNull(id),QualityTestStandard::getProcessId, id) |
| | | .eq(QualityTestStandard::getInspectType, inspectType)); |
| | | public List<QualityTestStandardParam> getParameterItemByProcessOrCategory(Long id, Integer inspectType) { |
| | | return qualityTestStandardParamMapper.selectParameterItemByProcessOrCategory(id, inspectType); |
| | | } |
| | | |
| | | |