Commit 162759ed by lzxry

ip发送判断

parent 67df2b98
......@@ -2769,7 +2769,7 @@ public class ContractServiceImpl implements ContractService {
Object result = adiAccount.get("result");
if(result.equals(1)){
Object validStartDate = adiAccount.get("validStartDate");
if(validStartDate==null||StringUtils.isEmpty(validStartDate)){
if(validStartDate==null||StringUtils.isEmpty(validStartDate) || validStartDate.equals("null")){
return ResultModel.ERROR("第" + rowIndex + "行主账号【" + email + "】未进行IP发送");
}else{
String validStartDateStr = validStartDate.toString().split(" ")[0];
......
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