bug修复
This commit is contained in:
parent
499a6c6936
commit
430e2a6e48
@ -121,6 +121,9 @@ public class QualityInspectionRecordServiceImpl extends ServiceImpl<QualityInspe
|
||||
@Override
|
||||
public QualityInspectionRecordVo selectQualityInspectionRecordById(Map<String, Object> map) {
|
||||
QualityInspectionRecordVo vo = qualityInspectionRecordMapper.selectQualityInspectionRecordById(map);
|
||||
if (vo == null) {
|
||||
return null;
|
||||
}
|
||||
setProblemDescription(vo);
|
||||
return vo;
|
||||
}
|
||||
|
||||
@ -121,6 +121,9 @@ public class XzSecurityXzSecurityQualityInspectionRecordServiceImpl extends Serv
|
||||
@Override
|
||||
public XzSecurityQualityInspectionRecordVo selectQualityInspectionRecordById(Map<String, Object> map) {
|
||||
XzSecurityQualityInspectionRecordVo vo = xzSecurityQualityInspectionRecordMapper.selectQualityInspectionRecordById(map);
|
||||
if (vo == null) {
|
||||
return null;
|
||||
}
|
||||
setProblemDescription(vo);
|
||||
return vo;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user