using SqlSugar;
namespace MES.Service.Modes;
///
/// 数据源导入
///
[SugarTable("Mes_Qa_Iqc")]
public class MesQaIqc
{
///
/// 接收水平
///
[SugarColumn(ColumnName = "ITEM_NO")]
public string? ItemNo { 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 = "FREQUENCY")]
public string? Frequency { get; set; }
///
/// 标准
///
[SugarColumn(ColumnName = "FSTAND")]
public decimal? 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 = "ISENABLED")]
public short? Isenabled { get; set; }
///
///
[SugarColumn(ColumnName = "EE")]
public short? Ee { get; set; }
///
///
[SugarColumn(ColumnName = "FTYPE")]
public string? Ftype { get; set; }
}