using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Model.ExcelModel { /// ///台车零件收容数管理 /// [Serializable] public class CarrierPartManage { [Column("rack_part")] [DisplayName("料架零件")] public string RackPart { get; set; } [Column("part_package")] [DisplayName("零件满包")] public string PartPackage { get; set; } } }