using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 管道焊接工作记录 /// public class HJGL_SpRpWeldReportExport { /// /// 焊工号 /// public string WED_Code { get; set; } /// /// 管道编号 /// public string ISO_IsoNo { get; set; } /// /// 焊口编号 /// public string JOT_JointNo { get; set; } /// /// 规格(mm) /// public string JOT_JointDesc { get; set; } /// /// 材质 /// public string STE_Name { get; set; } /// /// 单线图号 /// public string ISO_IsoNumber { get; set; } /// /// 焊接位置 /// public string weldLocal { get; set; } /// /// 焊接方法 /// public string WME_Name { get; set; } /// /// 焊材牌号 /// public string WMT_MatName { get; set; } /// /// 实际预热温度℃ /// public decimal? JOT_PrepareTemp { get; set; } /// /// 月 /// public int? ReportMonth { get; set; } /// /// 日 /// public int? Reportday { get; set; } /// /// 无损检测报告编号 /// public string NDTT_CheckCode { get; set; } /// /// 热处理报告编号 /// public string JOT_HotRpt { get; set; } /// /// 管线id /// public string ISO_ID { get; set; } } }