using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { public class JointCompreInfoItem { /// /// 焊口号 /// public string WeldJointCode { get; set; } /// /// 管线编号 /// public string PipelineCode { get; set; } /// /// 管道等级 /// public string PipingClass { get; set; } /// /// 介质代号 /// public string Medium { get; set; } /// /// 探伤类型 /// public string DetectionType { get; set; } /// /// 焊缝类型 /// public string WeldType { get; set; } /// /// 材质2 /// public string Material { get; set; } /// /// 焊接区域 /// public string JointArea { get; set; } /// /// 焊口属性(活动口,固定口) /// public string JointAttribute { get; set; } /// /// 焊口机动化程度(手工、机动/自动) /// public string WeldingMode { get; set; } /// /// 寸径 /// public decimal? Size { get; set; } /// /// 外径 /// public decimal? Dia { get; set; } /// /// 壁厚 /// public decimal? Thickness { get; set; } /// /// 焊口规格 /// public string Specification { get; set; } /// /// 焊接方法 /// public string WeldingMethodCode { get; set; } /// /// 坡口类型 /// public string GrooveType { get; set; } /// /// 焊接位置 /// public string WeldingLocation { get; set; } /// /// 焊丝牌号 /// public string WeldingWire { get; set; } /// /// 焊条牌号 /// public string WeldingRod { get; set; } /// /// 是否热处理 /// public string IsHotProess { get; set; } /// /// 焊工代号 /// public string WelderCode { get; set; } /// /// 焊接日期 /// public string WeldingDate { get; set; } /// /// 日报编号 /// public string WeldingDailyCode { get; set; } /// /// 所在批次 /// public string PointBatchCode { get; set; } /// /// 点口/扩透 /// public string IsPoint { get; set; } } }