AlarmHistoryResult.cs 629 B

12345678910111213141516171819202122232425
  1. using ivf_tl_Entity.Entity.Alarm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ivf_tl_Entity.Entity.Result
  8. {
  9. public class AlarmHistoryResult
  10. {
  11. public List<AlarmHistoryEntity> records { get; set; } = new List<AlarmHistoryEntity>();
  12. public int total { get; set; }
  13. public bool IsSuccess { get; set; } = true;
  14. }
  15. public class AlarmHistoryNumResult
  16. {
  17. public int all { get; set; }
  18. public int current { get; set; }
  19. public int history { get; set; }
  20. }
  21. }