using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_vw_order_items")] [Serializable] public class GVwOrderItems : BaseEntity { [Column("factory_id")] [DisplayName(" ")] public int FactoryId { get; set; } [Column("runsheet_id")] [DisplayName(" ")] public int RunsheetId { get; set; } [Column("runsheet_no")] [DisplayName(" ")] public string RunsheetNo { get; set; } [Column("car_no")] [DisplayName(" ")] public string CarNo { get; set; } [Column("box_no")] [DisplayName(" ")] public int BoxNo { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("qty")] [DisplayName(" ")] public decimal Qty { get; set; } [Column("shipping_sn")] [DisplayName(" ")] public string ShippingSn { get; set; } [Column("tray_no")] [DisplayName(" ")] public string TrayNo { get; set; } [Column("stock_sn")] [DisplayName(" ")] public string StockSn { get; set; } [Column("status")] [DisplayName(" ")] public int Status { get; set; } [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } } }