Explorar o código

【优化】SYSTEM: 根据代码评审优化订阅消息

puhui999 hai 10 meses
pai
achega
ab4e10ccf8

+ 2 - 2
yudao-module-pay/yudao-module-pay-biz/src/main/java/cn/iocoder/yudao/module/pay/service/wallet/PayWalletRechargeServiceImpl.java

@@ -145,9 +145,9 @@ public class PayWalletRechargeServiceImpl implements PayWalletRechargeService {
 
     @Async
     public void sendPayWalletChangeMessage(Long payOrderId, PayWalletRechargeDO walletRecharge) {
-        // 1. 获得会员钱包信息
+        // 1.1 获得会员钱包信息
         PayWalletDO wallet = payWalletService.getWallet(walletRecharge.getWalletId());
-        // 2. 构建并发送模版消息
+        // 1.2 构建并发送模版消息
         socialClientApi.sendSubscribeMessage(new SocialWxSubscribeMessageSendReqDTO().setPage(WALLET_MONEY_PATH)
                 .setUserId(wallet.getUserId()).setUserType(wallet.getUserType()).setTemplateTitle(PAY_WALLET_CHANGE)
                 .setSocialType(SocialTypeEnum.WECHAT_MINI_APP.getType())

+ 3 - 3
yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/social/SocialClientServiceImpl.java

@@ -290,9 +290,9 @@ public class SocialClientServiceImpl implements SocialClientService {
     /**
      * 构建发送消息请求参数
      *
-     * @param openId   接收者(用户)的 openid
-     * @param path     点击模板卡片后的跳转页面,仅限本小程序内的页面
-     * @param template 订阅模版
+     * @param reqDTO     请求
+     * @param templateId 模版编号
+     * @param openId     会员 openId
      * @return 微信小程序订阅消息发送
      */
     private WxMaSubscribeMessage buildMessageSendReqDTO(SocialWxSubscribeMessageSendReqDTO reqDTO,