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,已被驳回。"; }