Commit eba43b60 authored by fangxinjiang's avatar fangxinjiang

沉默号处理-fxj

parent aa651dad
...@@ -218,6 +218,10 @@ public class ChecksUtil { ...@@ -218,6 +218,10 @@ public class ChecksUtil {
mobile.setNumbertype(getJsonElementValue(mobileArray.get(i).getAsJsonObject().get(ChecksConstants.NUMBER_TYPE))); mobile.setNumbertype(getJsonElementValue(mobileArray.get(i).getAsJsonObject().get(ChecksConstants.NUMBER_TYPE)));
mobile.setChargesstatus(getJsonElementValue(mobileArray.get(i).getAsJsonObject().get(ChecksConstants.CHARGES_STATUS))); mobile.setChargesstatus(getJsonElementValue(mobileArray.get(i).getAsJsonObject().get(ChecksConstants.CHARGES_STATUS)));
mobile.setStatus(getJsonElementValue(mobileArray.get(i).getAsJsonObject().get(ChecksConstants.STATUS))); mobile.setStatus(getJsonElementValue(mobileArray.get(i).getAsJsonObject().get(ChecksConstants.STATUS)));
// 特殊处理沉默号 视为正常好处理 fxj 2024-09-23
if (CommonConstants.FOUR_STRING.equals(mobile.getStatus())){
mobile.setStatus(CommonConstants.ONE_STRING);
}
mobile.setMessage(message); mobile.setMessage(message);
mobile.setType(CommonConstants.ONE_STRING); mobile.setType(CommonConstants.ONE_STRING);
checkMobileMap.put(mobile.getMobile(),mobile); checkMobileMap.put(mobile.getMobile(),mobile);
......
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