using SqlSugar;
namespace PadApplication.Entites.DbModels;
///
/// 首件检验从表2
///
[SugarTable("MES_QA_ITEMS_DETECT_DETAIL6")]
public class MesQaItemsDetectDetail6
{
///
///
[SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_QM_ID",
IsPrimaryKey = true)]
public decimal Id { get; set; }
///
/// 抽样结果
///
[SugarColumn(ColumnName = "FCHECK_RESU")]
public string FcheckResu { get; set; }
///
/// 已录入数量
///
[SugarColumn(ColumnName = "FENTER_QTY")]
public string FenterQty { get; set; }
///
/// 不合格数
///
[SugarColumn(ColumnName = "FNG_QTY")]
public string FngQty { get; set; }
///
/// 工序
///
[SugarColumn(ColumnName = "PROC_NO")]
public string ProcNo { get; set; }
///
/// 检查项目
///
[SugarColumn(ColumnName = "FCHECK_ITEM")]
public string FcheckItem { get; set; }
///
/// 检查方法
///
[SugarColumn(ColumnName = "FCHECK_TOOL")]
public string FcheckTool { get; set; }
///
/// 判定
///
[SugarColumn(ColumnName = "FSECOND_RESU")]
public string FsecondResu { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "MEMO")]
public string Memo { 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 = "DE023")]
public string De023 { get; set; }
///
/// 顺序号
///
[SugarColumn(ColumnName = "FORDER_NO")]
public decimal? ForderNo { get; set; }
///
///
[SugarColumn(ColumnName = "RELEASE_NO")]
public string ReleaseNo { get; set; }
///
/// 抽检数量
///
[SugarColumn(ColumnName = "CHECK_QTY")]
public decimal? CheckQty { get; set; }
///
/// 允收数量
///
[SugarColumn(ColumnName = "ACCEPTABLE_QTY")]
public decimal? AcceptableQty { get; set; }
///
///
[SugarColumn(ColumnName = "COMPANY")]
public string Company { get; set; }
///
///
[SugarColumn(ColumnName = "FACTORY")]
public string Factory { get; set; }
///
///
[SugarColumn(ColumnName = "FLIST")]
public string Flist { get; set; }
///
/// 规格要求
///
[SugarColumn(ColumnName = "FSPEC_REQU")]
public string FspecRequ { get; set; }
///
/// 条码
///
[SugarColumn(ColumnName = "BARCODE_A")]
public string BarcodeA { get; set; }
///
/// 不良原因
///
[SugarColumn(ColumnName = "BAD_REASON")]
public string BadReason { get; set; }
}