1234567891011121314151617181920212223242526272829303132 |
- using DllEapEntity.Dtos;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllEapEntity.Asesh
- {
- public class AseAlarmBase
- {
- public string MacId { get; set; }
- public string Device { get; set; }
- public string AlarmId { get; set; }
- public string AlarmName { get; set; }
- public string Step { get; set; }
- }
- public class AseAlarm : AseAlarmBase
- {
- public int Count { get; set; }
- }
- public class AseSelect
- {
- public string Label { get; set; }
- public string Value { get; set; }
- }
- public class AseChart<T> :ChartDto
- {
- public IEnumerable<T> OriDatas { get; set; }
- }
- }
|