MotorMoveStep.cs 501 B

12345678910111213141516
  1. namespace SHJX.Service.Model.CRUDModules
  2. {
  3. [Table("motor_move_step")]
  4. public class MotorMoveStep
  5. {
  6. [Key]
  7. public int SerialKey { get; set; }
  8. public string MoveType { get; set; }
  9. public string CurrentType { get; set; }
  10. public string NextType { get; set; }
  11. public string CurrentStep { get; set; }
  12. public string NextStep { get; set; }
  13. public string IsInit { get; set; }
  14. public string Description { get; set; }
  15. }
  16. }