2026-03-13 13:48:28 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* Generated by orval v8.5.3 🍺
|
|
|
|
|
|
* Do not edit manually.
|
|
|
|
|
|
* Reading Platform API
|
|
|
|
|
|
* Reading Platform Backend Service API Documentation
|
|
|
|
|
|
* OpenAPI spec version: 1.0.0
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 课程套餐实体
|
|
|
|
|
|
*/
|
2026-03-13 13:48:28 +08:00
|
|
|
|
export interface CoursePackage {
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 主键 ID */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
id?: number;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 创建人 */
|
|
|
|
|
|
createBy?: string;
|
|
|
|
|
|
/** 创建时间 */
|
|
|
|
|
|
createdAt?: string;
|
|
|
|
|
|
/** 更新人 */
|
|
|
|
|
|
updateBy?: string;
|
|
|
|
|
|
/** 更新时间 */
|
|
|
|
|
|
updatedAt?: string;
|
|
|
|
|
|
/** 套餐名称 */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
name?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 套餐描述 */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
description?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 价格(分) */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
price?: number;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 折后价格(分) */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
discountPrice?: number;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 折扣类型:PERCENTAGE、FIXED */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
discountType?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 适用年级(JSON 数组) */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
gradeLevels?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 课程数量 */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
courseCount?: number;
|
2026-03-17 15:03:02 +08:00
|
|
|
|
/** 状态:DRAFT、PENDING、APPROVED、REJECTED、PUBLISHED、OFFLINE */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
status?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 提交时间 */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
submittedAt?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 提交人 ID */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
submittedBy?: number;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 审核时间 */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
reviewedAt?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 审核人 ID */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
reviewedBy?: number;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 审核意见 */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
reviewComment?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
|
/** 发布时间 */
|
2026-03-13 13:48:28 +08:00
|
|
|
|
publishedAt?: string;
|
|
|
|
|
|
}
|