using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 焊工业绩分析 /// public class HJGL_SpRpWelderPerformance { /// /// 项目Id /// public string ProjectId { get; set; } /// /// 焊工号 /// public string wed_code { get; set; } /// /// 焊工名称 /// public string wed_name { get; set; } /// /// 性别 /// public string WED_Sex { get; set; } /// /// 本期总寸径值 /// public decimal? nowtotal_din { get; set; } /// /// 本期总焊口数 /// public int? nowtotal_jot { get; set; } /// /// 本期返口数 /// public int? nowtotal_repairjot { get; set; } /// /// 本期返口率 /// public decimal? nowrepairrate { get; set; } /// /// 本期成焊率 /// public decimal? nowfinishedrate { get; set; } /// /// 本期拍片焊口数 /// public int? current_count_film { get; set; } /// /// 本期拍片合格焊口数 /// public int? current_pass_film { get; set; } /// ///本期拍片焊口合格率 /// public decimal? current_passrate { get; set; } /// /// 本期拍片总数 /// public int? nowtotalfilm { get; set; } /// /// 本期拍片合格数 /// public int? nowpassfilm { get; set; } /// /// 本期拍片不合格数 /// public int? nownotpassfilm { get; set; } /// /// 本期拍片合格率 /// public decimal? nowpassrate { get; set; } /// /// 本期拍片不合格率 /// public decimal? nowunpassrate { get; set; } /// /// 总寸径值 /// public decimal? totaldin { get; set; } /// /// 总焊口数 /// public int? total_jot { get; set; } /// /// 总返口数 /// public int? total_repairjot { get; set; } /// /// 反修率 /// public decimal? repairrate { get; set; } /// /// 成焊率 /// public decimal? finishedrate { get; set; } /// /// 总片数 /// public int? totalfilm { get; set; } /// /// 合格片数 /// public int? passfilm { get; set; } /// /// 不合格片数 /// public int? notpassfilm { get; set; } /// /// 合格率 /// public decimal? passrate { get; set; } /// /// 不合格率 /// public decimal? unpassrate { get; set; } /// /// 所属班组 /// public string education { get; set; } /// /// 在岗状态 /// public bool? WED_IfOnGuard { get; set; } } }