/** * Promotioncoupon * @cloud */ export interface PromotioncouponProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * title */ title: string; /** * value */ value: string; /** * desc */ desc: string; /** * 选中option的Id */ checked: string; /** * 券选项 */ options: OptionType[]; } export interface UseDescriptionType { /** * 详细时间 */ time: string; /** * 详细说明 */ description: string; /** * 是否展示详细说明 */ show: boolean; } export interface PriceType { /** * 价格 */ currentPrice: string; /** * 前缀 */ pricePrefix: string; /** * 后缀 */ suffix: string; } export interface OptionType { /** * 券ID */ couponId: string; /** * 选中状态options */ isChecked: boolean; /** * 券状态 */ couponStatus: string; /** * 券类型 */ couponType: string; /** * 使用条件 */ rule: string; /** * 有效时间 */ date: string; /** * 优惠券名称或描述 */ description: string; /** * 使用说明 */ useDescription: UseDescriptionType; /** * 价格 */ price: PriceType; }