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