/** * Familypay */ export interface FamilypayProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 订单id */ orderId: string; /** * 备注内容 */ value: string; /** * 订单备注 */ title: string; /** * 默认占位文案 */ placeholder: string; }