using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_ship_detail")] [Serializable] public class GShipDetail : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("seq")] [DisplayName(" ")] public int? Seq { get; set; } [Column("roll_no")] [DisplayName(" ")] public string RollNo { get; set; } [Column("roll_type")] [DisplayName(" ")] public string RollType { get; set; } [Column("model_no")] [DisplayName(" ")] public string ModelNo { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("part_location")] [DisplayName(" ")] public string PartLocation { get; set; } [Column("tray_no")] [DisplayName(" ")] public string TrayNo { get; set; } [Column("shipping_sn")] [DisplayName(" ")] public string ShippingSn { get; set; } [Column("status")] [DisplayName(" ")] public int Status { get; set; } [Column("shipment_status")] [DisplayName(" ")] public int? ShipmentStatus { get; set; } } }