51 lines
1.6 KiB
C#
51 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace 外科辅料和患者防护罩激光抗性测试仪.Model
|
|
{
|
|
public class PrimaryIgnitionModel
|
|
{
|
|
public int sampleType { get; set; }
|
|
public string Id { get; set; }
|
|
public string result { get; set; }
|
|
public string O2 { get; set; }
|
|
public float? FireDate { get; set; }
|
|
public float? yuhui { get; set; }
|
|
public float? yuyan { get; set; }
|
|
public string Iszixi { get; set; }
|
|
|
|
public double? costTime { get; set; }
|
|
public DateTime? Testtime { get; set; }
|
|
}
|
|
public class PenetrationModel
|
|
{
|
|
public int sampleType2 { get; set; }
|
|
public string Id2 { get; set; }
|
|
public string result2 { get; set; }
|
|
public float? temperature2 { get; set; }
|
|
public string O22 { get; set; }
|
|
public float? yuhui2 { get; set; }
|
|
public float? yuyan2 { get; set; }
|
|
public bool Isfire { get; set; }
|
|
public double? costTime2 { get; set; }
|
|
public float? penetime2 { get; set; }
|
|
public DateTime? Testtime2 { get; set; }
|
|
}
|
|
public class SecondaryIgnitionModel
|
|
{
|
|
public int sampleType3 { get; set; }
|
|
public string Id3 { get; set; }
|
|
public string result3 { get; set; }
|
|
public string O23 { get; set; }
|
|
public float? yuhui3 { get; set; }
|
|
public float? yuyan3 { get; set; }
|
|
public bool Iszixi3 { get; set; }
|
|
public bool Isdianhuo3 { get; set; }
|
|
public DateTime? Testtime3 { get; set; }
|
|
|
|
}
|
|
}
|