更新:增加课程“复读”功能

This commit is contained in:
2025-12-08 18:05:45 +08:00
parent b671e8d76c
commit c3b84946fb
12 changed files with 268 additions and 225 deletions

View File

@@ -116,3 +116,15 @@ export interface IPageData<T> {
pages: number
[key: string]: any
}
/**
* 订单接口
*/
export interface IOrder {
id: number
orderType: string // 订单类型
changeAmount: number
remark: string
createTime: string
[key: string]: any
}