remove msgNum on SMSscript

This commit is contained in:
Carl 2022-01-14 18:29:31 +08:00
parent 6fe7737ddb
commit d6e668a5ea

View File

@ -41,7 +41,7 @@ public class SMSController {
String hash = MD5Utils.getMD5Code(KEY + "@" + currentTime + "@" + randomNum);//生成MD5值
Map<String, Object> resultMap = new HashMap<>();
resultMap.put("hash", hash);
resultMap.put("msgNum",randomNum);
// resultMap.put("msgNum",randomNum);
resultMap.put("tamp", currentTime);
return resultMap; //将hash值和tamp时间返回给前端
}