using ProjectBase.Data.BaseDAL; using ProjectBase.Util; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SIMDP.Model { /// /// PLC配置管理 /// [Serializable] public class MoPlcInfo : BaseEntity { public MoPlcInfo() { this.CurrentLoginUserId = SysEnvironment.CurrentLoginID; } #region Field Members private long m_PlcId = 0; // PLCID private string m_PlcName = ""; // PLC名称 private long m_LinkType = 0; // 连接类型 private string m_LinkConfig = ""; // 连接信息 #endregion #region Property Members /// /// PLCID /// public virtual long PlcId { get { return this.m_PlcId; } set { this.m_PlcId = value; } } /// /// PLC名称 /// public virtual string PlcName { get { return this.m_PlcName; } set { this.m_PlcName = value; } } /// /// 连接类型 /// public virtual long LinkType { get { return this.m_LinkType; } set { this.m_LinkType = value; } } /// /// 连接信息 /// public virtual string LinkConfig { get { return this.m_LinkConfig; } set { this.m_LinkConfig = value; } } #endregion } }