forked from rongchao/epmet-cloud-rizhao
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
429 B
27 lines
429 B
package com.epmet.constant;
|
|
|
|
/**
|
|
* @Author zxc
|
|
* @DateTime 2020/11/3 2:45 下午
|
|
*/
|
|
public interface BadgeConstant {
|
|
|
|
String BADGE_KEY = "epmet:badge:";
|
|
|
|
String BADGE = "badge";
|
|
|
|
String DEFAULT_CUSTOMER = "default";
|
|
|
|
String YES = "yes";
|
|
|
|
String NO = "no";
|
|
|
|
String REJECTED = "rejected";
|
|
|
|
String APPROVED = "approved";
|
|
|
|
String NONE ="none";
|
|
|
|
String SMS_CODE_KEY = "epmet:smsCode:badge:";
|
|
|
|
}
|
|
|