AseAlarm.cs 709 B

1234567891011121314151617181920212223242526272829303132
  1. using DllEapEntity.Dtos;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace DllEapEntity.Asesh
  6. {
  7. public class AseAlarmBase
  8. {
  9. public string MacId { get; set; }
  10. public string Device { get; set; }
  11. public string AlarmId { get; set; }
  12. public string AlarmName { get; set; }
  13. public string Step { get; set; }
  14. }
  15. public class AseAlarm : AseAlarmBase
  16. {
  17. public int Count { get; set; }
  18. }
  19. public class AseSelect
  20. {
  21. public string Label { get; set; }
  22. public string Value { get; set; }
  23. }
  24. public class AseChart<T> :ChartDto
  25. {
  26. public IEnumerable<T> OriDatas { get; set; }
  27. }
  28. }