123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using WCS.PLC.Model.Equipment;
- namespace WCS.PLC
- {
- public class Base_EquPlc
- {
- protected readonly string srm = "srm";
- public string PlcName
- {
- get
- {
- if (WCS_PLCItem == null)
- return string.Empty;
- else
- return WCS_PLCItem.PLC_NAME;
- }
- }
- public WCS_PLC WCS_PLCItem { get; set; }
- #region Constructor
- public Base_EquPlc()
- {
- }
- #endregion;
- #region 方法
- public virtual void Run() { }
- #endregion;
- }
- }
|