using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IOM_cs.irisDb.model { public class Device { private Int64 id; private String deviceCode; private String ip; private String port; private String remarks; public String DeviceCode { get { return deviceCode; } set { deviceCode = value; } } public String Ip { get { return ip; } set { ip = value; } } public String Port { get { return port; } set { port = value; } } public String Remarks { get { return remarks; } set { remarks = value; } } public long Id { get { return id; } set { id = value; } } } }