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#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("g_cspart_items")]
[Serializable]
public class GCspartItems : BaseEntity
{
[Column("order_no")]
[DisplayName(" ")]
public string OrderNo { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("item_part_no")]
[DisplayName(" ")]
public string ItemPartNo { get; set; }
[Column("need_qty")]
[DisplayName(" ")]
public int NeedQty { get; set; }
[Column("get_qty")]
[DisplayName(" ")]
public int GetQty { get; set; }
[Column("ship_qty")]
[DisplayName(" ")]
public int ShipQty { get; set; }
[Column("diff_qty")]
[DisplayName(" ")]
public int? DiffQty { get; set; }
[Column("trans_qty")]
[DisplayName(" ")]
public int? TransQty { get; set; }
[Column("factory_id")]
[DisplayName(" ")]
public int FactoryId { get; set; }
[Column("status")]
[DisplayName(" ")]
public string Status { get; set; }
[Column("req_ymd")]
[DisplayName(" ")]
public string ReqYmd { get; set; }
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
}
}