namespace SHJX.Service.Model.CRUDModules { [Table("motor_move_step")] public class MotorMoveStep { [Key] public int SerialKey { get; set; } public string MoveType { get; set; } public string CurrentType { get; set; } public string NextType { get; set; } public string CurrentStep { get; set; } public string NextStep { get; set; } public string IsInit { get; set; } public string Description { get; set; } } }