/** * 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 */ /** * 课程套餐实体 */ export interface CoursePackage { /** 主键 ID */ id?: number; /** 创建人 */ createBy?: string; /** 创建时间 */ createdAt?: string; /** 更新人 */ updateBy?: string; /** 更新时间 */ updatedAt?: string; /** 套餐名称 */ name?: string; /** 套餐描述 */ description?: string; /** 价格(分) */ price?: number; /** 折后价格(分) */ discountPrice?: number; /** 折扣类型:PERCENTAGE、FIXED */ discountType?: string; /** 适用年级(JSON 数组) */ gradeLevels?: string; /** 课程数量 */ courseCount?: number; /** 状态:DRAFT、PENDING、APPROVED、REJECTED、PUBLISHED、OFFLINE */ status?: string; /** 提交时间 */ submittedAt?: string; /** 提交人 ID */ submittedBy?: number; /** 审核时间 */ reviewedAt?: string; /** 审核人 ID */ reviewedBy?: number; /** 审核意见 */ reviewComment?: string; /** 发布时间 */ publishedAt?: string; }