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.
23 lines
457 B
23 lines
457 B
package com.epmet.constant;
|
|
|
|
/**
|
|
* @author zhaoqifeng
|
|
* @dscription
|
|
* @date 2020/11/9 10:32
|
|
*/
|
|
public interface BadgeMessageConstant {
|
|
/**
|
|
* 消息标题
|
|
*/
|
|
String TITLE = "您有一条认证消息";
|
|
|
|
|
|
/**
|
|
* 审核通过消息模板
|
|
*/
|
|
String APPROVED_MSG = "您好,您提交的%s申请已通过,请查看。";
|
|
/**
|
|
* 审核驳回消息模板
|
|
*/
|
|
String REJECTED_MSG = "您好,您提交的%s申请,由于%s,已被驳回。";
|
|
}
|
|
|