using System.ComponentModel.DataAnnotations.Schema;
using SqlSugar;
namespace MES.Service.Modes;
///
/// 超期检验项目表 MES_CQ_ITEMS_DETECT_DETAIL5
///
[Table("MES_CQ_ITEMS_DETECT_DETAIL5")]
[SugarTable("MES_CQ_ITEMS_DETECT_DETAIL5")]
public class MesCqItemsDetectDetail5
{
///
/// 主键ID
///
[Column("ID")]
[SugarColumn(IsPrimaryKey = true, OracleSequenceName = "SEQ_CQ_ID", ColumnName = "ID")]
public decimal? Id { get; set; }
///
/// 检验单号
///
[SugarColumn(ColumnName = "RELEASE_NO")]
public string? ReleaseNo { get; set; }
///
/// 接受水准
///
[SugarColumn(ColumnName = "FAC_LEVEL")]
public string? FacLevel { get; set; }
///
/// 检验项目
///
[SugarColumn(ColumnName = "FCHECK_ITEM")]
public string? FcheckItem { get; set; }
///
/// 检验工具
///
[SugarColumn(ColumnName = "FCHECK_TOOL")]
public string? FcheckTool { get; set; }
///
/// 下限
///
[SugarColumn(ColumnName = "FDOWN_ALLOW")]
public string? FdownAllow { get; set; }
///
/// 检验等级
///
[SugarColumn(ColumnName = "FCHECK_LEVEL")]
public string? FcheckLevel { get; set; }
///
/// 标准值
///
[SugarColumn(ColumnName = "FSTAND")]
public string? Fstand { get; set; }
///
/// 上限
///
[SugarColumn(ColumnName = "FUP_ALLOW")]
public string? FupAllow { get; set; }
///
/// 样本量
///
[SugarColumn(ColumnName = "SAMPLE_SIZE_NO")]
public string? SampleSizeNo { get; set; }
///
/// 规格要求
///
[SugarColumn(ColumnName = "FSPEC_REQU")]
public string? FspecRequ { get; set; }
///
/// 拒收数量
///
[SugarColumn(ColumnName = "FRE_QTY")]
public decimal? FreQty { get; set; }
///
/// 应检数量
///
[SugarColumn(ColumnName = "CHECK_QYT")]
public decimal? CheckQyt { get; set; }
///
/// 检验结果
///
[SugarColumn(ColumnName = "FCHECK_RESU")]
public string? FcheckResu { get; set; }
///
/// 检验项目描述
///
[SugarColumn(ColumnName = "FCHECK_ITEM_DESC")]
public string? FcheckItemDesc { get; set; }
///
/// 单位
///
[SugarColumn(ColumnName = "FUNIT")]
public string? Funit { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "MEOM")]
public string? Meom { get; set; }
///
/// 工厂
///
[SugarColumn(ColumnName = "FACTORY")]
public string? Factory { get; set; }
///
/// 公司
///
[SugarColumn(ColumnName = "COMPANY")]
public string? Company { get; set; }
///
/// 已检数量
///
[SugarColumn(ColumnName = "FENTER_QTY")]
public int? FenterQty { get; set; }
///
/// 不良数量
///
[SugarColumn(ColumnName = "FNG_QTY")]
public int? FngQty { get; set; }
///
/// AC数(接收数量)
///
[SugarColumn(ColumnName = "FAC_QTY")]
public int? FacQty { get; set; }
///
/// 堆穴号(超期检验不使用)
///
[SugarColumn(IsIgnore = true)]
public string? Dnum { get; set; }
///
/// 不合格数(非数据库字段)
///
[SugarColumn(IsIgnore = true)]
public int? Unqualified { get; set; }
}