import EntityBase from "./EntityBase"; import MBusiness from "./MBusiness"; import MPicture from "./MPicture"; export default class MPassticket extends EntityBase { BindBusiness?: MBusiness; PassticketType?: string; PassticketName?: string; CycleAmount?: number; TimeMode?: string; ActiveMode?: string; PassticketParameterJson?: string; IsEnabled?: boolean; PinYin?: string; CreateTime?: Date; BindPicture?: MPicture; }