import EntityBase from "./EntityBase"; import MBusiness from "./MBusiness"; export default class MActivity extends EntityBase { BindBusiness?: MBusiness; ActivityName?: string; ActivityDesc?: string; IsNeedAuth?: boolean; IsNeedInputCode?: boolean; IsAutoActivity?: boolean; IsEnabled?: boolean; ConditionSets?: string; SellSets?: string; PinYin?: string; CreateTime?: Date; }