mirror of
https://gitee.com/dromara/dax-pay
synced 2026-08-12 23:45:39 +08:00
feat(cashier): 改进收银台功能并新增支付码牌配置
- 将 CashierTypeEnum 重命名为 CashierCodeTypeEnum,用于表示收银码牌类型 - 新增 CashierCodeResult 类用于收银码牌信息和配置的结果 - 添加 CashierCodeConfig 相关的控制器、服务、DAO 和实体类 -移除 ChannelCashierConfig 相关的代码,改为使用 CashierCodeTypeConfig - 更新支付订单状态,新增待支付状态 - 调整 MPJ 依赖版本
This commit is contained in:
@@ -24,6 +24,11 @@
|
||||
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
||||
<version>${mybatis-plus.version}</version>
|
||||
</dependency>
|
||||
<!-- jdk 11+ 引入可选模块 -->
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-jsqlparser</artifactId>
|
||||
</dependency>
|
||||
<!-- MPJ -->
|
||||
<dependency>
|
||||
<groupId>com.github.yulichang</groupId>
|
||||
@@ -56,5 +61,16 @@
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-bom</artifactId>
|
||||
<version>${mybatis-plus.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
</project>
|
||||
|
||||
Reference in New Issue
Block a user