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 PackageCreateRequest {
|
|
|
|
|
/** 套餐名称 */
|
|
|
|
|
name: string;
|
|
|
|
|
/** 套餐描述 */
|
|
|
|
|
description?: string;
|
|
|
|
|
/** 价格(分) */
|
|
|
|
|
price: number;
|
|
|
|
|
/** 折后价格(分) */
|
|
|
|
|
discountPrice?: number;
|
|
|
|
|
/** 折扣类型 */
|
|
|
|
|
discountType?: string;
|
|
|
|
|
/** 适用年级 */
|
|
|
|
|
gradeLevels: string[];
|
|
|
|
|
}
|