import EntityBase from "./EntityBase"; import MBusiness from "./MBusiness"; export default class MGoodBrand extends EntityBase { BindBusiness? : MBusiness; Name? : string; IsEnabled? : boolean; Remark? : string; PinYin? : string; CreateTime? : Date; }