using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 焊接日报明细 /// public class SpWeldingDailyItem { /// /// 焊口id /// public string WeldJointId { get; set; } /// /// 焊口号 /// public string WeldJointCode { get; set; } /// /// 管线编号 /// public string PipelineCode { get; set; } public string Specification { get; set; } /// /// 材质 /// public string MaterialCode { 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 WelderCodeStr { get; set; } /// /// 焊缝类型 /// public string WeldTypeId { get; set; } /// /// 焊缝类型代号 /// public string WeldTypeCode { 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? DoneDin { get; set; } /// /// 外径 /// public decimal? Dia { get; set; } /// /// 壁厚 /// public decimal? Thickness { get; set; } /// /// 焊接方法 /// public string WeldingMethodCode { get; set; } /// /// 焊接方法Id /// public string WeldingMethodId { get; set; } /// /// 页码 /// public string Sheet { get; set; } /// /// 序号 /// public int Num { get; set; } } }