using System; using System.Collections.Generic; using MiniExcelLibs.Attributes; using SqlSugar; /* * @author : xkdong@163.com * @date : 2024-2-1 * @desc : 总装车间 */ namespace DOAN.Model.MES.upload { /// /// 总装车间 /// [SugarTable("qc_yida_excel", TableDescription = "总装车间")] public class QcYidaExcel { /// /// /// [SugarColumn( IsPrimaryKey = true,ColumnName ="id")] [ExcelIgnore] public long? Id { get; set; } /// /// 供应商代码 /// /// [SugarColumn( ColumnName = "supplier_code")] [ExcelColumn(Name = "供应商代码", IndexName = "A")] public string SupplierCode { get; set; } /// /// 供应商名称 /// [SugarColumn( ColumnName = "supplier_name")] [ExcelColumn(Name = "供应商名称", IndexName = "B")] public string SupplierName { get; set; } /// /// 车型 /// [SugarColumn(ColumnName = "vehicle")] [ExcelColumn(Name = "车型", IndexName = "C")] public string Vehicle { get; set; } /// /// 零件号 /// [SugarColumn(ColumnName = "partnumber")] [ExcelColumn(Name = "零件号", IndexName = "D")] public string Partnumber { get; set; } /// /// 零件名称 /// [SugarColumn(ColumnName = "partname")] [ExcelColumn(Name = "零件名称", IndexName = "E")] public string Partname { get; set; } /// /// 配置 /// [SugarColumn(ColumnName = "config")] [ExcelColumn(Name = "配置", IndexName = "F")] public string Config { get; set; } /// /// 工位 /// [SugarColumn(ColumnName = "workstation")] [ExcelColumn(Name = "工位", IndexName = "G")] public string Workstation { get; set; } /// /// 参数 /// [SugarColumn(ColumnName = "paramter")] [ExcelColumn(Name = "参数", IndexName = "H")] public string Paramter { get; set; } /// /// 值 /// [SugarColumn(ColumnName = "value")] [ExcelColumn(Name = "值", IndexName = "I")] public decimal Value { get; set; } /// /// 中值 /// [SugarColumn(ColumnName = "middle_value")] [ExcelColumn(Name = "值", IndexName = "J")] public decimal MiddleValue { get; set; } /// /// 下公差 /// [SugarColumn(ColumnName = "low_limit")] [ExcelColumn(Name = "下公差", IndexName = "K")] public decimal LowLimit { get; set; } /// /// 上公差 /// [SugarColumn(ColumnName = "up_limit")] [ExcelColumn(Name = "上公差", IndexName = "L")] public decimal UpLimit { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "CREATED_BY")] [ExcelIgnore] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATED_TIME")] [ExcelIgnore] public DateTime CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "UPDATED_BY")] [ExcelIgnore] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "UPDATED_TIME")] [ExcelIgnore] public DateTime UpdatedTime { get; set; } } }