fix:【mall】优惠劵:相关的判断不对,关联 https://t.zsxq.com/fYaKv

This commit is contained in:
YunaiV
2025-12-27 21:41:46 +08:00
parent 291d705307
commit f922d3fd55
4 changed files with 31 additions and 7 deletions

View File

@@ -130,4 +130,18 @@ public class PayTransferCreateReqDTO {
return channelExtras;
}
// ========== 支付宝场景 ==========
/**
* 【支付宝】构建转账渠道额外参数
*
* @param sceneName 转账场景名称,用于描述转账用途
* @return channelExtras
*/
public static Map<String, String> buildAlipayChannelExtra(String sceneName) {
Map<String, String> channelExtras = new HashMap<>();
channelExtras.put("sceneName", sceneName);
return channelExtras;
}
}