1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace XdCxRhDW.Dto
- {
-
- public class CheckResDto
- {
- [Display(Name = "信号时刻")]
- public DateTime SigTime { get; set; }
- [Display(Name = "文件名称")]
- public string FileName { get; set; }
- [Display(Name = "开始样点")]
- public long StartSamp { get; set; }
- [Display(Name = "样点长度")]
- public long SampCount { get; set; }
- [Display(Name ="检测类型")]
- public DmcTypeDto? DetectionWay { get; set; }
- }
- }
|