12345678910111213141516171819202122 |
- using AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- [AutoMap(typeof(AnalysisDto))]
- public class ExportAnalysisDto
- {
- [Description("报警代码")]
-
- public string name { get; set; }
- [Description("报警描述")]
- public string description { get; set; }
- [Description("中文描述")]
- public string ChAlarm { get; set; }
- [Description("报警次数")]
- public int count { get; set; }
- }
- }
|