You've already forked FrameTour-BE
feat(pricing): 新增打印小票和查询券码批次配置功能
- 新增 AppClaimController 控制器处理移动设备端的领券请求 - 实现 ClaimReq 和 ClaimResp 模型类用于领券请求和响应 - 在 VoucherPrintService 接口中新增打印小票方法 - 在VoucherPrintServiceImpl 中实现打印小票和查询券码批次配置的逻辑 - 更新 PriceVoucherBatchConfigMapper 接口和 XML 文件,添加查询券码批次配置的方法
This commit is contained in:
@@ -1,11 +1,13 @@
|
||||
package com.ycwl.basic.pricing.dto.req;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 打印小票请求
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
public class VoucherPrintReq {
|
||||
|
||||
private Long faceId;
|
||||
|
||||
@@ -14,6 +14,7 @@ public class VoucherPrintResp {
|
||||
* 流水号
|
||||
*/
|
||||
private String code;
|
||||
private String type;
|
||||
|
||||
/**
|
||||
* 券码
|
||||
|
||||
Reference in New Issue
Block a user