using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Model.ExcelModel { /// ///批次追溯查询 /// [Serializable] public class LotDefine { [Column("serial_number")] [DisplayName("合格证条码")] public string SerialNumber { get; set; } [Column("part_no")] [DisplayName("总成零件号")] public string PartNo { get; set; } [Column("part_spec")] [DisplayName("描述")] public string PartSpec { get; set; } [Column("car_no")] [DisplayName("车身号")] public string CarNo { get; set; } [Column("item_part_no")] [DisplayName("关键零件号")] public string ItemPartNo { get; set; } } }