【update】- 先替换验证码类型的短信模板,通知类的还没有审核通过

This commit is contained in:
fengchenchen
2023-11-05 16:50:00 +08:00
parent f9b61066a5
commit c29c6e3913
@@ -93,23 +93,26 @@ public class HuaWeiSmsUtil {
switch (codeType) {
case "1":
// 中汽中心标准院-登录验证码内容
sender = "8821092414481";
sender = "8823103135049";
signature = "中汽中心标准院";
templateId = "93c8a63236734e0ca0bc89f8b2413e7f";
//templateId = "93c8a63236734e0ca0bc89f8b2413e7f";
templateId = "1849a989eb6f458b876774753fcafe5a";
templateParas = "[" + randomNumber + "]";
break;
case "2":
// 中汽中心标准院-忘记密码
sender = "8821092414481";
sender = "8823103135049";
signature = "中汽中心标准院";
templateId = "ac6749d4a3134c39997b4342695ddc01";
//templateId = "ac6749d4a3134c39997b4342695ddc01";
templateId = "698db00a5e4b4d03aeff2286d1d2daec";
templateParas = "[" + randomNumber +"]";
break;
case "3":
// 中汽中心标准院-注册
sender = "8821092414481";
sender = "8823103135049";
signature = "中汽中心标准院";
templateId = "98a9d61b7d41423aa7a7d4ac969c4e6a";
//templateId = "98a9d61b7d41423aa7a7d4ac969c4e6a";
templateId = "92d97bd62d46499e961f8b2ee7eaf58e";
templateParas = "[" + randomNumber +"]";
break;
default:
@@ -337,4 +340,4 @@ public class HuaWeiSmsUtil {
return String.format(WSSE_HEADER_FORMAT, appKey, passwordDigestBase64Str, nonce, time);
}
}
}