import EntityBase from "./EntityBase"; import MPassticket from "./MPassticket"; import MCoupon from "./MCoupon"; import MLimitticket from "./MLimitticket"; import MCustomAccount from "./MCustomAccount"; export default class MMemberAccount extends EntityBase { Name?: string; Identity?: string; ValueType?: string; BindPassticket?: MPassticket; BindCoupon?: MCoupon; BindLimitticket?: MLimitticket; BindCustomAccount?: MCustomAccount; CreateTime?: Date; }