46 lines
1.0 KiB
C#
46 lines
1.0 KiB
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|