using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 探伤综合分析 /// public class HJGL_SpRptndtReport { /// /// 项目Id /// public string ProjectId { get; set; } /// /// 管线Id /// public string iso_id { get; set; } /// /// 管线号 /// public string iso_isono { get; set; } /// /// 单位编号 /// public string bsu_unitcode { get; set; } /// /// 单位名称 /// public string bsu_unitname { get; set; } /// /// 区域 /// public string WorkAreaCode { get; set; } /// /// 探伤比例 /// public string source_rate { get; set; } /// /// 总焊口 /// public int? total_jot { get; set; } /// /// 完成总焊口 /// public int? finished_total_jot { get; set; } /// /// 委托口数 /// public int? trust_total_jot { get; set; } /// /// 扩透口数 /// public int? ext_jot { get; set; } /// /// 已探口数 /// public int? check_total_jot { get; set; } /// /// 返修口数 /// public int total_repairjot { get; set; } /// /// 切除口数 /// public int? cut_jot { get; set; } } }