import EntityBase from "./EntityBase"; import MBusiness from "./MBusiness"; import MPicture from "./MPicture"; export default class MSetMeal extends EntityBase { BindBusiness?: MBusiness; SetMealName?: string; GroupName?: string; IsNeedAuth?: boolean; CanReturn?: boolean; ReturnHours?: number; BindPicture?: MPicture; Remark?: string; SellQuota?: number; SetMealColor?: string; SetMealTags?: string; IsEnabled?: boolean; PinYin?: string; CreateTime?: Date; SellSets?: Array; }