namespace SHJX.Service.Model.CRUDModules
{
[Table("motor_speed")]
public class MotorSpeed
{
///
/// 自增主键
///
[Key]
[IgnoreColumn]
public int SerialKey { get; set; }
///
/// 描述
///
[ColumnWidth("1*")]
[DisplayName("名称")]
[ReadOnlyColumn]
public string DetailName { get; set; }
///
/// NodeID
///
[IgnoreColumn]
public string SystemName { get; set; }
///
/// 速度
///
[ColumnWidth("1*")]
[DisplayName("速度")]
public int Speed { get; set; }
///
/// 加速度
///
[ColumnWidth("1*")]
[DisplayName("加速度")]
public int AcSpeed { get; set; }
///
/// 减速度
///
[ColumnWidth("1*")]
[DisplayName("减速度")]
public int DeSpeed { get; set; }
///
/// 连接成功后自动设置
///
[ColumnWidth("1*")]
[DisplayName("自动设置速度")]
public bool ConnectAutoUpdate { get; set; }
}
}