| 12345678910111213141516171819202122232425 |
- using ivf_tl_Entity.Entity.Alarm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.Result
- {
- public class AlarmHistoryResult
- {
- public List<AlarmHistoryEntity> records { get; set; } = new List<AlarmHistoryEntity>();
- public int total { get; set; }
- public bool IsSuccess { get; set; } = true;
- }
- public class AlarmHistoryNumResult
- {
- public int all { get; set; }
- public int current { get; set; }
- public int history { get; set; }
- }
- }
|