WorkState.cs 410 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Library.Entity
  8. {
  9. public enum WorkState
  10. {
  11. [Description("空闲")]
  12. Free,
  13. [Description("工作中")]
  14. Working,
  15. [Description("忙碌")]
  16. Busy,
  17. [Description("故障")]
  18. Fault
  19. }
  20. }