using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_roll_stock")] [Serializable] public class GRollStock : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("factory_id")] [DisplayName(" ")] public int? FactoryId { get; set; } [Column("roll_no")] [DisplayName(" ")] public int? RollNo { get; set; } [Column("location")] [DisplayName("托盘在发运通道中的排序位置")] public int? Location { get; set; } [Column("cust_pdline_id")] [DisplayName(" ")] public int? CustPdlineId { get; set; } [Column("tray_no")] [DisplayName(" ")] public string TrayNo { get; set; } [Column("tray_type")] [DisplayName(" ")] public string TrayType { get; set; } [Column("tray_index")] [DisplayName(" ")] public string TrayIndex { get; set; } [Column("serial_number")] [DisplayName(" ")] public string SerialNumber { get; set; } [Column("in_stock_time")] [DisplayName(" ")] public DateTime? InStockTime { get; set; } [Column("out_stock_time")] [DisplayName(" ")] public DateTime? OutStockTime { get; set; } [Column("qty")] [DisplayName(" ")] public int? Qty { get; set; } [Column("status")] [DisplayName(" ")] public int? Status { get; set; } [Column("model_id")] [DisplayName(" ")] public string ModelId { get; set; } [Column("vin")] [DisplayName(" ")] public string Vin { get; set; } } }