|
|
|
@ -158,24 +158,31 @@ public class ThrCorpServiceImpl implements ThrCorpService {
|
|
|
|
|
*/
|
|
|
|
|
private boolean verifyDataChange(ThrCorpEntity thrCorpEntity, ThrCorpsResponse thrCorpsResponse) {
|
|
|
|
|
if (!StrUtil.equals(thrCorpEntity.getSpell(), thrCorpsResponse.getSpell())) {
|
|
|
|
|
thrCorpEntity.setSpell(thrCorpsResponse.getSpell());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (!StrUtil.equals(thrCorpEntity.getAddr(), thrCorpsResponse.getAddr())) {
|
|
|
|
|
thrCorpEntity.setAddr(thrCorpsResponse.getAddr());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (!StrUtil.equals(thrCorpEntity.getCreditNo(), thrCorpsResponse.getCreditNo())) {
|
|
|
|
|
thrCorpEntity.setContact(thrCorpsResponse.getCreditNo());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (!StrUtil.equals(thrCorpEntity.getContact(), thrCorpsResponse.getContact())) {
|
|
|
|
|
thrCorpEntity.setContact(thrCorpsResponse.getContact());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (!StrUtil.equals(thrCorpEntity.getMobile(), thrCorpsResponse.getMobile())) {
|
|
|
|
|
thrCorpEntity.setMobile(thrCorpsResponse.getMobile());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (!StrUtil.equals(thrCorpEntity.getName(), thrCorpsResponse.getName())) {
|
|
|
|
|
thrCorpEntity.setName(thrCorpsResponse.getName());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (!StrUtil.equals(thrCorpEntity.getRemark(), thrCorpsResponse.getRemark())) {
|
|
|
|
|
thrCorpEntity.setRemark(thrCorpsResponse.getRemark());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|