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