using System; using System.Collections.Generic; using System.Linq; using System.Text; using UAS_PLCDataReader.DataOperate; namespace UAS_PLCDataReader.Entity { class Polling { private string sendRadix; private string deviceCode; private string deviceName; private string iP; private string port; private int interval; private int id; private bool enable; private DataHelper dh; private string[] commandCode; 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 int Interval { get { return interval; } set { interval = value; } } public bool Enable { get { return enable; } set { enable = value; } } public int Id { get { return id; } set { id = value; } } public DataHelper Dh { get { return dh; } set { dh = value; } } public string SendRadix { get { return sendRadix; } set { sendRadix = value; } } public string[] CommandCode { get { return commandCode; } set { commandCode = value; } } public string DeviceName { get { return deviceName; } set { deviceName = value; } } } }