using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JinYuan.Models { /// /// 轴位置记录 /// public class MotorLog { private string _m_MotorDscribe;//轴描述 private string _m_MotorLocation;//位置描述 private string _m_MotorAddress;//PLC地址 /// /// 描述 /// public string m_MotorDscribe { get { return _m_MotorDscribe; } set { _m_MotorDscribe = value; } } /// /// 位置描述 /// public string m_MotorLocation { get { return _m_MotorLocation; } set { _m_MotorLocation = value; } } /// /// 地址 /// public string m_MotorAddress { get { return _m_MotorAddress; } set { _m_MotorAddress = value; } } } }