using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { public class TestPackageItem { /// /// 试压包ID /// public string PTP_ID { get; set; } /// /// 试压包号 /// public string TestPackageNo { get; set; } /// /// 管线号 /// public string PipelineCode { get; set; } /// /// 总焊口数 /// public int WeldJointCount { get; set; } /// /// 完成焊口数 /// public int WeldJointCountT { get; set; } /// /// 检测合格焊口数 /// public int? CountS { get; set; } /// /// 检测不合格焊口数 /// public int? CountU { get; set; } /// /// 检测比例 /// public string NDTR_Name { get; set; } /// /// 实际检测比例 /// public string Ratio { get; set; } } }