You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.6 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("g_order_items")]
[Serializable]
public class GOrderItems : BaseEntity
{
[Column("factory_id")]
[DisplayName(" ")]
public int FactoryId { get; set; }
[Column("order_id")]
[DisplayName(" ")]
public int OrderId { get; set; }
[Column("order_detail_id")]
[DisplayName(" ")]
public int OrderDetailId { 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("stock_sn")]
[DisplayName(" ")]
public string StockSn { get; set; }
[Column("tray_seq")]
[DisplayName(" ")]
public int? TraySeq { get; set; }
[Column("tray_type")]
[DisplayName(" ")]
public string TrayType { get; set; }
[Column("status")]
[DisplayName(" ")]
public int Status { get; set; }
[Column("ship_status")]
[DisplayName(" ")]
public int? ShipStatus { get; set; }
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
}
}