Commit 345778b8 by qwmqiuwenmin

Update StaffServiceImpl.java

parent 65e97086
...@@ -30,6 +30,9 @@ public class StaffServiceImpl implements StaffService { ...@@ -30,6 +30,9 @@ public class StaffServiceImpl implements StaffService {
@Override @Override
public TabHaobanStaff selectByNationcodeAndPhoneNumber(String wxEnterpriseId,String nationcode, String phoneNumber) { public TabHaobanStaff selectByNationcodeAndPhoneNumber(String wxEnterpriseId,String nationcode, String phoneNumber) {
if(StringUtils.isBlank(phoneNumber) || "--".equals(phoneNumber)){
return null;
}
return mapper.selectByNationcodeAndPhoneNumber(wxEnterpriseId,nationcode,phoneNumber); return mapper.selectByNationcodeAndPhoneNumber(wxEnterpriseId,nationcode,phoneNumber);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment