using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { public class IsoInfoItem { /// /// 单线图号(管线号) /// public string ISO_IsoNo { get; set; } /// /// 施工号 /// public string ProjectCode { get; set; } /// /// 单位ID /// public string UnitId { get; set; } /// /// 管道等级 /// public string IDName { get; set; } /// /// 执行标准 /// public string ISO_Executive { get; set; } /// /// 材质 /// public string STECode { get; set; } /// /// 材质标准 /// public string MaterialStandardCode { get; set; } /// /// 介质 /// public string SERName { get; set; } /// /// 管道类别 /// public string PipeLineClass { get; set; } /// /// 设计压力 /// public decimal? ISO_DesignPress { get; set; } /// /// 设计温度 /// public decimal? ISO_DesignTemperature { get; set; } /// /// 耐压试验 /// public decimal? ISO_TestPress { get; set; } /// /// 泄露性试验压力 /// public string LeakageTest { get; set; } /// /// 管线外径(直径) /// public decimal? Dia { get; set; } /// /// 管线壁厚 /// public decimal? Sch { get; set; } /// /// 是否热处理存1和0(1-是,0-否) /// public string IsHot { get; set; } /// /// 热处理类型:存1,2,3,4,5,如多个用“|”隔开(1-预热,2-消氢,3-后热,4-消应力热处理,5-稳定化处理) /// public string HotType { get; set; } } }