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.
65 lines
1.5 KiB
C#
65 lines
1.5 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[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; }
|
|
|
|
|
|
}
|
|
}
|