Commit e77e6e2a by zhiwj

bug

parent 148ef318
......@@ -103,6 +103,9 @@ public class SmsRecordApiServiceImpl implements SmsRecordApiService {
if (StringUtils.isBlank(smsRecordDTO.getNationCode())) {
smsRecordDTO.setNationCode("+86");
}
if (StringUtils.isBlank(smsRecordDTO.getAppCode())) {
smsRecordDTO.setAppCode(SmsAppEnum.OTHER.getCode());
}
if (StringUtils.equals("86", smsRecordDTO.getNationCode()) || StringUtils.equals("+86", smsRecordDTO.getNationCode())) {
ServiceResponse paramResult = ValidUtil.allCheckValidate(smsRecordDTO, SmsRecordDTO.SmsRecordValid.class);
if (!paramResult.isSuccess()) {
......
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