ExportAnalysisDto.cs 565 B

12345678910111213141516171819202122
  1. using AutoMapper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Text;
  6. namespace DllEapEntity.Dtos
  7. {
  8. [AutoMap(typeof(AnalysisDto))]
  9. public class ExportAnalysisDto
  10. {
  11. [Description("报警代码")]
  12. public string name { get; set; }
  13. [Description("报警描述")]
  14. public string description { get; set; }
  15. [Description("中文描述")]
  16. public string ChAlarm { get; set; }
  17. [Description("报警次数")]
  18. public int count { get; set; }
  19. }
  20. }