【新增】mall: 钱包充值成功发送订阅消息

This commit is contained in:
puhui999
2024-07-29 17:14:41 +08:00
parent 4696105210
commit 9a926e251b
8 changed files with 203 additions and 11 deletions

View File

@ -1,6 +1,7 @@
package cn.iocoder.yudao.module.pay.enums;
// TODO @芋艿:枚举
/**
* 通知模板枚举类
*
@ -12,4 +13,18 @@ public interface MessageTemplateConstants {
String PAY_WALLET_CHANGE = "充值成功通知";
/**
* 充值成功通知模版参数
*
* @author HUIHUI
*/
class PayWalletChangeTemplateParams {
public static final String NO = "character_string1"; // 流水编号
public static final String PRICE = "amount2"; // 充值金额
public static final String PAY_TIME = "time3"; // 充值时间
public static final String STATUS = "phrase4"; // 充值状态
}
}