86 lines
2.0 KiB
C#
86 lines
2.0 KiB
C#
|
namespace Sinvo.EplanHpD.Plugin.WPFUI.Models
|
|||
|
{
|
|||
|
public class MotorModel : CheckedModel
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 电机功率
|
|||
|
/// </summary>
|
|||
|
private string _motorPower;
|
|||
|
/// <summary>
|
|||
|
/// <inheritdoc cref="_motorPower"/>
|
|||
|
/// </summary>
|
|||
|
public string MotorPower
|
|||
|
{
|
|||
|
get { return _motorPower; }
|
|||
|
set
|
|||
|
{
|
|||
|
_motorPower = value;
|
|||
|
OnPropertyChanged(nameof(MotorPower));
|
|||
|
}
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
/// 品牌
|
|||
|
/// </summary>
|
|||
|
private string _brand;
|
|||
|
/// <summary>
|
|||
|
/// <inheritdoc cref="_brand"/>
|
|||
|
/// </summary>
|
|||
|
public string Brand
|
|||
|
{
|
|||
|
get { return _brand; }
|
|||
|
set
|
|||
|
{
|
|||
|
_brand = value;
|
|||
|
OnPropertyChanged(nameof(Brand));
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 电机系列
|
|||
|
/// </summary>
|
|||
|
private string _motorSerie;
|
|||
|
/// <summary>
|
|||
|
/// <inheritdoc cref="_motorSerie"/>
|
|||
|
/// </summary>
|
|||
|
public string MotorSerie
|
|||
|
{
|
|||
|
get { return _motorSerie; }
|
|||
|
set
|
|||
|
{
|
|||
|
_motorSerie = value;
|
|||
|
OnPropertyChanged(nameof(MotorSerie));
|
|||
|
}
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
/// 电机系列
|
|||
|
/// </summary>
|
|||
|
private string _motorModel;
|
|||
|
/// <summary>
|
|||
|
/// <inheritdoc cref="_motorModel"/>
|
|||
|
/// </summary>
|
|||
|
public string MotorModelStr
|
|||
|
{
|
|||
|
get { return _motorModel; }
|
|||
|
set
|
|||
|
{
|
|||
|
_motorModel = value;
|
|||
|
OnPropertyChanged(nameof(MotorModelStr));
|
|||
|
}
|
|||
|
}
|
|||
|
private string _axisNo;
|
|||
|
/// <summary>
|
|||
|
/// 轴号
|
|||
|
/// </summary>
|
|||
|
public string AxisNo
|
|||
|
{
|
|||
|
get => _axisNo;
|
|||
|
set
|
|||
|
{
|
|||
|
_axisNo = value;
|
|||
|
OnPropertyChanged(nameof(AxisNo));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|