using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Face.Domain
{
public class ToDayCapacity
{
///
/// DUT序号
///
public string DUT_SN { get; set; }
///
/// 检测时间
///
public DateTime StartTime { get; set; }
///
/// T5-2检测时间
///
public string DateTime_2nd { get; set; }
///
/// 检测结果
///
public bool TestResult { get; set; }
}
}