完成了课程模块的订单部分

This commit is contained in:
2025-06-24 19:49:24 +08:00
parent 502f079194
commit 1f7e1211cf
12 changed files with 273 additions and 144 deletions

View File

@ -0,0 +1,17 @@
package com.greenorange.promotion.constant;
/**
* 订单状态常量
*/
public interface OrderStatusConstant {
String CLOSED = "交易关闭";
String SUCCESS = "交易成功";
String PENDING = "待支付";
String REFUNDED = "已退款";
}