using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JinYuan.Models { /// /// 电机位置记录 /// public class AxleLog { private string _m_AxleDscribe;//轴描述 private string _m_AxleLocation;//位置描述 private string _m_AxleAddress;//PLC地址 /// /// 描述 /// public string m_AxleDscribe { get { return _m_AxleDscribe; } set { _m_AxleDscribe = value; } } /// /// 位置描述 /// public string m_AxleLocation { get { return _m_AxleLocation; } set { _m_AxleLocation = value; } } /// /// 地址 /// public string m_AxleAddress { get { return _m_AxleAddress; } set { _m_AxleAddress = value; } } } }