| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace UAS_DeviceMonitor.Entity
- {
- class Polling
- {
- private string code;
- private string deviceCode;
- private string iP;
- private string port;
- private int interval;
- private int id;
- private bool enable;
- 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 string Code
- {
- get
- {
- return code;
- }
- set
- {
- code = value;
- }
- }
- public int Id
- {
- get
- {
- return id;
- }
- set
- {
- id = value;
- }
- }
- }
- }
|