CheckResDto.cs 731 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace XdCxRhDW.Dto
  9. {
  10. public class CheckResDto
  11. {
  12. [Display(Name = "信号时刻")]
  13. public DateTime SigTime { get; set; }
  14. [Display(Name = "文件名称")]
  15. public string FileName { get; set; }
  16. [Display(Name = "开始样点")]
  17. public long StartSamp { get; set; }
  18. [Display(Name = "样点长度")]
  19. public long SampCount { get; set; }
  20. [Display(Name ="检测类型")]
  21. public DmcTypeDto? DetectionWay { get; set; }
  22. }
  23. }