refactor(voucher): 重构凭证相关服务

- 移除VoucherClaimReq 中的 brokerId 字段
- 更新 VoucherCodeServiceImpl 中的逻辑,移除与推客相关的验证
- 在 VoucherPrintServiceImpl 中添加打印小票功能的实现
- 新增与微信小程序相关的配置和功能
This commit is contained in:
2025-08-25 17:21:16 +08:00
parent e85559ed72
commit 2710bfce2c
3 changed files with 45 additions and 20 deletions

View File

@@ -5,7 +5,6 @@ import lombok.Data;
@Data
public class VoucherClaimReq {
private Long scenicId;
private Long brokerId;
private Long faceId;
private String code;
}