添加项目文件。

This commit is contained in:
Administrator
2026-08-04 18:36:40 +08:00
parent 16fb9e4f5a
commit a2ecbc795d
616 changed files with 149853 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
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; }
}
}
}