import EntityBase from "./EntityBase"; import MBusiness from "./MBusiness"; import MMachineType from "./MMachineType"; import MMachinePort from "./MMachinePort"; export default class MMachine extends EntityBase { BindBusiness?: MBusiness; BindMachineType?: MMachineType; MachineName?: string; PortCount?: number; PortString?: string; IPAddressString?: string; IsEnabled?: boolean; PinYin?: string; CreateTime?: Date; Ports: Array; }