Commit e8ab6bf5 by 吴博

feat: [1005481] 服务消息预警

parent 9de93392
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