feat(core): 完成收银台功能并优化配置

- 实现收银台台功能
- 添加 CheckoutGroupConfigResult 和 CheckoutItemConfigResult 类的主键字段- 更新 CheckoutQueryService 以设置订单信息
- 调整 Task.md 中的任务列表,标记已完成的收银台相关任务
This commit is contained in:
DaxPay
2024-12-04 19:23:19 +08:00
parent 947817e12d
commit 633b7ea17a
4 changed files with 13 additions and 5 deletions

View File

@@ -16,6 +16,9 @@ import java.util.List;
@Accessors(chain = true)
@Schema(title = "收银台分类配置")
public class CheckoutGroupConfigResult{
/** 主键 */
@Schema(description = "主键")
private Long id;
/**
* 类型 web/h5/小程序

View File

@@ -17,6 +17,9 @@ import org.dromara.daxpay.core.enums.PayMethodEnum;
@Schema(title = "收银台配置项")
public class CheckoutItemConfigResult {
/** 主键 */
@Schema(description = "主键")
private Long id;
/**
* 发起调用的类型
* @see CheckoutCallTypeEnum