12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.Alarm
- {
-
-
-
- public class AlarmPage
- {
-
-
-
- public long Total { get; set; }
-
-
-
- public int Size { get; set; }
- public int Current { get; set; }
- public bool SearchCount { get; set; }
- public int Pages { get; set; }
- public List<AlarmInfo> Records { get; set; }
- }
- }
|