ShakerViewType.cs 435 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 ShakerManger.Data
  8. {
  9. public enum ShakerViewType
  10. {
  11. [Description("None")]
  12. None,
  13. [Description("功放控制")]
  14. ShakerControl,
  15. [Description("运行信息")]
  16. CoolingWater,
  17. [Description("曲线")]
  18. Plot,
  19. }
  20. }