Merge branch 'baotou-signup' of e.coding.net:tsteam/btsaqscksfwpt/system-examination-signup into baotou-signup

This commit is contained in:
wans 2021-05-15 16:18:42 +08:00
commit ffc3f96310

View File

@ -240,7 +240,7 @@ public class ExamCheckServiceImpl extends DefaultBaseService implements IExamChe
params.put("workTypeId", workTypeId);
params.put("orgId", orgId);
ExamCheckDTO examCheckDTO = examCheckDao.getExamCheck(params);
if(null != examCheckDTO) {
if(null == examCheckDTO) {
return false;
}else {
if(0 == examCheckDTO.getCheckStatus() || 3 == examCheckDTO.getCheckStatus()) {
@ -256,7 +256,7 @@ public class ExamCheckServiceImpl extends DefaultBaseService implements IExamChe
params.put("workTypeId", workTypeId);
params.put("orgId", orgId);
ExamCheckDTO examCheckDTO = examCheckDao.getExamCheck(params);
if(null != examCheckDTO) {
if(null == examCheckDTO) {
return true;
}else {
if(0 == examCheckDTO.getCheckStatus() || 3 == examCheckDTO.getCheckStatus()) {