using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace MES.Service.Modes; /// /// 数据源导入 /// [SugarTable("MES_QA_IQC_ITEM")] public class MesQaIqcItem { /// /// /// [SugarColumn(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 = "FACTORY")] public string Factory { get; set; } /// /// /// [SugarColumn(ColumnName = "COMPANY")] public string Company { get; set; } /// /// /// [SugarColumn(ColumnName = "CHECK_QYT")] public decimal? CheckQyt { get; set; } /// /// /// [SugarColumn(ColumnName = "FRE_QTY")] //用于SqlSugar public decimal? FreQty { get; set; } }