namespace SHJX.Service.Model.CRUDModules
{
[Table("motor_move_status")]
public class MotorMoveStatus
{
///
/// 主键自增
///
[Key]
public int SerialKey { get; set; }
///
/// 电机名称
///
public string MotorName { get; set; }
///
/// 当前位置
///
public double CurrentPosition { get; set; }
///
/// 描述
///
public string Description { get; set; }
}
public enum MotorStatus
{
[Description("不能使用")]
Unable,
[Description("可以使用")]
Enable
}
}