40 lines
930 B
C#
40 lines
930 B
C#
namespace JinYuan.Models
|
|
{
|
|
|
|
/// <summary>
|
|
/// 轴位置记录
|
|
/// </summary>
|
|
public class MotorLog
|
|
{
|
|
private string _m_MotorDscribe;//轴描述
|
|
private string _m_MotorLocation;//位置描述
|
|
private string _m_MotorAddress;//PLC地址
|
|
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
public string m_MotorDscribe
|
|
{
|
|
get { return _m_MotorDscribe; }
|
|
set { _m_MotorDscribe = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 位置描述
|
|
/// </summary>
|
|
public string m_MotorLocation
|
|
{
|
|
get { return _m_MotorLocation; }
|
|
set { _m_MotorLocation = value; }
|
|
}
|
|
/// <summary>
|
|
/// 地址
|
|
/// </summary>
|
|
public string m_MotorAddress
|
|
{
|
|
get { return _m_MotorAddress; }
|
|
set { _m_MotorAddress = value; }
|
|
}
|
|
}
|
|
}
|