using SqlSugar;
namespace NewPdaSqlServer.entity;
///
///
[SugarTable("MES_QA_ITEMS_DETECT_DETAIL5")]
public class MesQaItemsDetectDetail5
{
///
///
[SugarColumn(ColumnName = "guid", IsPrimaryKey = true)]
public Guid Guid { get; set; }
///
///
[SugarColumn(ColumnName = "parent_guid")]
public Guid? ParentGuid { get; set; }
///
/// 标准值类型
///
[SugarColumn(ColumnName = "ftext_type")]
public string? FtextType { get; set; }
///
/// 标准值
///
[SugarColumn(ColumnName = "fstand")]
public string? Fstand { get; set; }
///
/// 上公差
///
[SugarColumn(ColumnName = "fup_allow")]
public string? FupAllow { get; set; }
///
/// 下公差
///
[SugarColumn(ColumnName = "fdown_allow")]
public string? FdownAllow { get; set; }
///
/// 检验水准
///
[SugarColumn(ColumnName = "sample_size_no")]
public string? SampleSizeNo { get; set; }
///
/// 检验水平
///
[SugarColumn(ColumnName = "fcheck_level")]
public string? FcheckLevel { get; set; }
///
/// 拒收水平
///
[SugarColumn(ColumnName = "fac_level")]
public string? FacLevel { get; set; }
///
/// 检验项目
///
[SugarColumn(ColumnName = "fcheck_item")]
public string? FcheckItem { get; set; }
///
/// 规格要求
///
[SugarColumn(ColumnName = "fspec_requ")]
public string? FspecRequ { get; set; }
///
/// 抽检数量
///
[SugarColumn(ColumnName = "check_qyt")]
public int? CheckQyt { get; set; }
///
/// 检验结果
///
[SugarColumn(ColumnName = "fcheck_resu")]
public string? FcheckResu { get; set; }
///
/// AC数量
///
[SugarColumn(ColumnName = "fac_qty")]
public int? FacQty { get; set; }
///
/// RE数量
///
[SugarColumn(ColumnName = "fre_qty")]
public int? FreQty { get; set; }
///
/// 不合格数
///
[SugarColumn(ColumnName = "fng_qty")]
public int? FngQty { get; set; }
///
/// 不良率
///
[SugarColumn(ColumnName = "fng_rate")]
public decimal? FngRate { get; set; }
///
/// 已录入数量
///
[SugarColumn(ColumnName = "fenter_qty")]
public decimal? FenterQty { get; set; }
///
///
[SugarColumn(ColumnName = "release_no")]
public string? ReleaseNo { get; set; }
///
///
[SugarColumn(ColumnName = "company")]
public string? Company { get; set; }
///
///
[SugarColumn(ColumnName = "factory")]
public string? Factory { get; set; }
///
/// 检验项目描述
///
[SugarColumn(ColumnName = "fcheck_item_desc")]
public string? FcheckItemDesc { get; set; }
///
/// 工序号
///
[SugarColumn(ColumnName = "proc_no")]
public string? ProcNo { get; set; }
///
/// 工作中心编码
///
[SugarColumn(ColumnName = "workshop_center_code")]
public string? WorkshopCenterCode { get; set; }
///
/// 单位
///
[SugarColumn(ColumnName = "funit")]
public string? Funit { get; set; }
///
/// 特定修改
/// 默认值: ((0))
///
[SugarColumn(ColumnName = "given_modify")]
public int? GivenModify { get; set; }
///
/// 检验工具
///
[SugarColumn(ColumnName = "fcheck_tool")]
public string? FcheckTool { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "lastupdate_by")]
public string? LastupdateBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "lastupdate_date")]
public DateTime? LastupdateDate { get; set; }
///
/// 不合格描述
///
[SugarColumn(ColumnName = "remarks")]
public string? Remarks { get; set; }
///
/// 排序
///
[SugarColumn(ColumnName = "forder")]
public int? Order { get; set; }
///
/// 样本数量
///
[SugarColumn(ColumnName = "ybsl")]
public int? Ybsl { get; set; }
///
/// 是否为首检认证信息
///
[SugarColumn(ColumnName = "IS_RZXX")]
public int? ISRZXX { get; set; }
///
/// 首检认证信息
///
[SugarColumn(ColumnName = "ipqc_rzxx")]
public string? IPQCRZXX { get; set; }
///
/// 样本已录入数
///
[SugarColumn(IsIgnore = true)]
public int? YbslIn { get; set; }
[SugarColumn(IsIgnore = true)] public int? Unqualified { get; set; }
}