using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 焊接日报明细 /// public class SpWeldingDailyItem { public string WeldTaskId { get; set; } /// /// 焊口id /// public string WeldJointId { get; set; } /// /// 焊口号 /// public string WeldJointCode { get; set; } /// /// 管线编号 /// public string PipelineCode { get; set; } /// /// 规格 /// public string Specification { get; set; } /// /// 盖面焊工号 /// public string CoverWelderCode { get; set; } /// /// 盖面焊工ID /// public string CoverWelderId { get; set; } /// /// 打底焊工号 /// public string BackingWelderCode { get; set; } /// /// 打底焊工ID /// public string BackingWelderId { get; set; } /// /// 可焊焊工号 /// public string CanWelderCode { get; set; } /// /// 可焊焊工ID /// public string CanWelderId { get; set; } /// /// 焊缝类型 /// public string WeldTypeId { get; set; } /// /// 焊接区域 /// public string JointArea { get; set; } /// /// 焊接位置Id /// public string WeldingLocationId { get; set; } /// /// 焊接位置代号 /// public string WeldingLocationCode { get; set; } /// /// 焊口属性 /// public string JointAttribute { get; set; } /// /// 寸径 /// public decimal? Size { get; set; } /// /// 外径 /// public decimal? Dia { get; set; } /// /// 壁厚 /// public decimal? Thickness { get; set; } /// /// 焊接方法 /// public string WeldingMethodCode { get; set; } /// /// 焊接类型 /// public string WeldTypeCode { get; set; } // 是否热处理 public string IsHotProessStr { get; set; } /// /// 序号 /// public int Num { get; set; } /// /// 机动化程度 /// public string WeldingMode { get; set; } /// /// 是否已焊 /// public string IsWelding { get; set; } /// ///任务日期 /// public DateTime TaskDate { get; set; } public string WeldingWireCode { get; set; } public string WeldingRodCode { get; set; } } }