using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 单位工区质量分析 /// public class HJGL_SpRptBawZlfx { /// /// 项目ID /// public string ProjectId { get; set; } /// /// 单位代码 /// public string bsu_unitcode { get; set; } /// /// 单位名称 /// public string bsu_unitname { get; set; } /// /// 装置代码 /// public string devicecode { get; set; } /// /// 装置名称 /// public string devicename { get; set; } /// /// 工区代码 /// public string baw_areano { get; set; } /// /// 总焊口 /// public int? total_jot { get; set; } /// /// 预制总焊口 /// public int? total_sjot { get; set; } /// /// 安装总焊口 /// public int? total_fjot { get; set; } /// /// 完成总焊口 /// public int? finished_total_jot { get; set; } /// /// 完成预制总焊口 /// public int? finished_total_sjot { get; set; } /// /// 完成安装总焊口 /// public int? finished_total_fjot { get; set; } /// /// 本期总拍片数 /// public int? current_total_film { get; set; } /// /// 本期合格片数 /// public int? current_pass_film { get; set; } /// /// 本期合格率 /// public decimal? current_passreate { get; set; } /// /// 本期点口片数 /// public int? current_point_total_film { get; set; } /// /// 本期点口合格片数 /// public int? current_point_pass_film { get; set; } /// /// 本期点口合格率 /// public decimal? cuurent_point_passreate { get; set; } /// /// 本期扩透总片数 /// public int? current_ext_total_film { get; set; } /// /// 本期扩透合格片数 /// public int? current_ext_pass_film { get; set; } /// /// 本期扩透合格率 /// public decimal? current_ext_passreate { get; set; } /// /// 本期总委托数 /// public int? current_trust_count_total { get; set; } /// /// 本期总检测数 /// public int? current_check_count_total { get; set; } /// /// 总拍片数 /// public int? total_film { get; set; } /// /// 合格片数 /// public int? pass_film { get; set; } /// /// 合格率 /// public decimal? passreate { get; set; } /// /// 点口总片数 /// public int? point_total_film { get; set; } /// /// 点口合格片数 /// public int? point_pass_film { get; set; } /// /// 点口合格率 /// public decimal? point_passreate { get; set; } /// /// 扩透总片数 /// public int? ext_total_film { get; set; } /// /// 扩透合格片数 /// public int? ext_pass_film { get; set; } /// /// 扩透合格率 /// public decimal? ext_passreate { get; set; } /// /// 委托总数 /// public int? trust_count_total { get; set; } /// /// 点口总焊口数 /// public int? point_count_total { get; set; } /// /// 扩透总焊口数 /// public int? extend_count_total { get; set; } /// /// 返修总焊口数 /// public int? repair_count_total { get; set; } /// /// 检测口数 /// public int? trust_check_total { get; set; } } }