using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XdCxRhDW.Dto
{
///
/// 检测结果模型
///
public class DetectResDto
{
///
/// 检测结果
///
public DetectResDto()
{
}
///
/// 检测结果
///
///
///
///
public DetectResDto(int start, int length, string userName)
{
Start = start;
Length = length;
UserName = userName;
}
///
/// 文件名
///
public string File1 { get; set; }
///
/// 检测开始样点
///
public int Start { get; set; }
///
/// 检测样点长度
///
public int Length { get; set; }
///
/// 检测用户名称
///
public string UserName { get; set; }
///
/// 检测类型
///
public string DmcType { get; set; }
///
/// 调制类型
///
public string ModType { get; set; }
///
/// 调制速率
///
public double? ModRate { get; set; }
///
/// 耗时(ms)
///
public int TimeMs { get; set; }
}
}