using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// 成品下线-滑轨 /// [Serializable] public class MesWmsHgOutPdlineInterface { [Column("work_order_no")] [DisplayName(" ")] public string work_order_no { get; set; } [Column("pdline_code")] [DisplayName(" ")] public string pdline_code { get; set; } [Column("part_no")] [DisplayName(" ")] public string part_no { get; set; } [Column("serial_number")] [DisplayName(" ")] public string serial_number { get; set; } [Column("qty")] [DisplayName(" ")] public string Qty { get; set; } [Column("lot_no")] [DisplayName(" ")] public string lot_no { get; set; } [Column("product_type")] [DisplayName(" ")] public string product_type { get; set; } [Column("product_version")] [DisplayName(" ")] public string product_version { get; set; } [Column("factory_code")] [DisplayName(" ")] public string factory_code { get; set; } [Column("IsRejects")] [DisplayName(" ")] public string IsRejects { get; set; } } }