Commit 5015ad4c by 朱亚洁
parents 7b6f4b4b cdf7ee18
...@@ -479,4 +479,9 @@ public class MQTopicProducer { ...@@ -479,4 +479,9 @@ public class MQTopicProducer {
* 会员活动书刊配置 * 会员活动书刊配置
*/ */
public static final String MEMBER_ACTIVITY_BOOK_SET = "topic.memberActivityBookSet"; public static final String MEMBER_ACTIVITY_BOOK_SET = "topic.memberActivityBookSet";
/**
* 服务消息预警
*/
public static final String ALERT_MESSAGE_COUNT = "topic.alertMessageCount";
} }
...@@ -209,4 +209,9 @@ public class SMSTemplateConstant { ...@@ -209,4 +209,9 @@ public class SMSTemplateConstant {
* [书僮小睿]您的验证码是${code},验证码有效期5分钟。如非本人操作,请勿理会。 * [书僮小睿]您的验证码是${code},验证码有效期5分钟。如非本人操作,请勿理会。
*/ */
public static final String RAYS_VERIFY_CODE = "SMS_21061100004"; public static final String RAYS_VERIFY_CODE = "SMS_21061100004";
/**
* 服务${serveName}剩余使用数量已不足20%, 请及时充值。
*/
public static final String ALERT_MESSAGE_COUNT = "SMS_21092600006";
} }
package com.pcloud.common.core.enums;
public enum AlertMessageCountEnum {
IOT_SHORT_MESSAGE(1, "华为联接云短信"),
REAL_NAME_AUTH(2, "实名认证");
public Integer code;
public String desc;
AlertMessageCountEnum(Integer code, String desc) {
this.code = code;
this.desc = desc;
}
}
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