using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Model.ExcelModel { /// ///生产指令调整 /// [Serializable] public class AdjustOrder { [Column("seq")] [DisplayName("顺序号")] public string Seq { get; set; } [Column("serial_number")] [DisplayName("座椅总成条码")] public string SerialNumber { get; set; } [Column("model_no")] [DisplayName("配置")] public string ModelNo { get; set; } [Column("part_no")] [DisplayName("零件号")] public string PartNo { get; set; } [Column("part_spec")] [DisplayName("零件描述")] public string PartSpec { get; set; } [Column("cust_part_no")] [DisplayName("客户零件号")] public string CustPartNo { get; set; } [Column("create_time")] [DisplayName("释放日期")] public string CreateTime { get; set; } } }