1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package cn.iocoder.yudao.module.pay.enums;
|
| /**
| * 通知模板枚举类
| *
| * @author HUIHUI
| */
| public interface MessageTemplateConstants {
|
| // ======================= 小程序订阅消息 =======================
|
| String WXA_WALLET_RECHARGER_PAID = "充值成功通知";
|
| }
|
|