using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { public class JointInfoItem { /// /// 焊缝编号 /// public string JOT_JointNo { get; set; } /// /// 施工号 /// public string ProjectCode { get; set; } /// /// 装置名称 /// public string InstallationName { get; set; } /// /// 单线图号(管线号) /// public string ISO_IsoNo { get; set; } /// /// 焊缝类型 /// public string JOTY_Name { get; set; } /// /// 材质1 /// public string STE_Name1 { get; set; } /// /// 材质2 /// public string STE_Name2 { get; set; } /// /// 坡口类型 /// public string JST_Name { get; set; } /// /// 焊口属性 /// public string JOT_JointAttribute { get; set; } /// /// 焊接方法 /// public string WME_Name { get; set; } /// /// 外径(直径) /// public decimal? Dia { get; set; } /// /// 壁厚(为数值) /// public string Sch { get; set; } } }