46 lines
2.3 KiB
C#
46 lines
2.3 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace Model.Customization._7HJ
|
|
{
|
|
public class TestPackageInfo
|
|
{
|
|
public string PTP_ID { get; set; } // 假设这是主键
|
|
public string BSU_ID { get; set; }
|
|
public string PT_ID { get; set; }
|
|
public string PTP_TestPackageNo { get; set; }
|
|
public string PTP_TestPackageName { get; set; }
|
|
public string PTP_TestHeat { get; set; }
|
|
public string PTP_TestService { get; set; }
|
|
public string PTP_TestType { get; set; }
|
|
public string PTP_Finisher { get; set; }
|
|
public System.DateTime? PTP_FinishDate { get; set; }
|
|
public string PTP_Tabler { get; set; }
|
|
public System.DateTime? PTP_TableDate { get; set; }
|
|
public string PTP_Modifier { get; set; }
|
|
public System.DateTime? PTP_ModifyDate { get; set; }
|
|
public string PTP_Auditer { get; set; }
|
|
public System.DateTime? PTP_AduditDate { get; set; } // 注意:这里可能有个拼写错误,应该是 PTP_AuditDate
|
|
public string PTP_Remark { get; set; }
|
|
public string PTP_TestPackageCode { get; set; }
|
|
public string PTP_TestAmbientTemp { get; set; }
|
|
public string PTP_TestMediumTemp { get; set; }
|
|
public string PTP_TestPressure { get; set; }
|
|
public string PTP_TestPressureTemp { get; set; }
|
|
public string PTP_TestPressureTime { get; set; } // 假设这是时间间隔类型
|
|
public string PTP_TightnessTest { get; set; }
|
|
public string PTP_TightnessTestTemp { get; set; }
|
|
public string PTP_TightnessTestTime { get; set; } // 假设这是时间间隔类型
|
|
public string PTP_LeakageTestService { get; set; }
|
|
public string PTP_LeakageTestPressure { get; set; }
|
|
public string PTP_VacuumTestService { get; set; }
|
|
public string PTP_VacuumTestPressure { get; set; }
|
|
public string PTP_OperationMedium { get; set; }
|
|
public string PTP_PurgingMedium { get; set; }
|
|
public string PTP_CleaningMedium { get; set; }
|
|
public string PTP_AllowSeepage { get; set; }
|
|
public string PTP_FactSeepage { get; set; }
|
|
public string ProjectId { get; set; }
|
|
public string InstallationId { get; set; }
|
|
public List<Model.PW_IsoInfo> IsoInfos { get; set; }
|
|
}
|
|
} |