1.判断卡号未空的逻辑
This commit is contained in:
gaoben 2021-11-23 11:15:56 +08:00
parent be6c05a47a
commit 058a898c25
1 changed files with 2 additions and 1 deletions

View File

@ -447,7 +447,8 @@ public class TenPersonController extends AbstractController {
}
}
}
else if(tenPerson.getDoorCardEntity().getDoorCard().trim().equals("")){
else if(tenPerson.getDoorCardEntity()!=null && tenPerson.getDoorCardEntity().getDoorCard()!=null
&& tenPerson.getDoorCardEntity().getDoorCard().trim().equals("")){
}
else{