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.
125 lines
3.1 KiB
C#
125 lines
3.1 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_cspart_master")]
|
|
[Serializable]
|
|
public class GCspartMaster : BaseEntity
|
|
{
|
|
[Column("order_no")]
|
|
[DisplayName(" ")]
|
|
public string OrderNo { get; set; }
|
|
|
|
[Column("type")]
|
|
[DisplayName(" ")]
|
|
public string Type { get; set; }
|
|
|
|
[Column("cust_part_no")]
|
|
[DisplayName(" ")]
|
|
public string CustPartNo { get; set; }
|
|
|
|
[Column("cust_part_spec")]
|
|
[DisplayName(" ")]
|
|
public string CustPartSpec { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName(" ")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("need_qty")]
|
|
[DisplayName(" ")]
|
|
public int NeedQty { get; set; }
|
|
|
|
[Column("cust_ship_qty")]
|
|
[DisplayName(" ")]
|
|
public int CustShipQty { get; set; }
|
|
|
|
[Column("factory_id")]
|
|
[DisplayName(" ")]
|
|
public int FactoryId { get; set; }
|
|
|
|
[Column("item_no")]
|
|
[DisplayName(" ")]
|
|
public int ItemNo { get; set; }
|
|
|
|
[Column("type_name")]
|
|
[DisplayName(" ")]
|
|
public string TypeName { get; set; }
|
|
|
|
[Column("po_no")]
|
|
[DisplayName(" ")]
|
|
public string PoNo { get; set; }
|
|
|
|
[Column("order_status")]
|
|
[DisplayName(" ")]
|
|
public string OrderStatus { get; set; }
|
|
|
|
[Column("po_due_date")]
|
|
[DisplayName(" ")]
|
|
public string PoDueDate { get; set; }
|
|
|
|
[Column("po_create_date")]
|
|
[DisplayName(" ")]
|
|
public string PoCreateDate { get; set; }
|
|
|
|
[Column("po_ship_date")]
|
|
[DisplayName(" ")]
|
|
public string PoShipDate { get; set; }
|
|
|
|
[Column("po_ship_qty")]
|
|
[DisplayName(" ")]
|
|
public int? PoShipQty { get; set; }
|
|
|
|
[Column("emp_name")]
|
|
[DisplayName(" ")]
|
|
public string EmpName { get; set; }
|
|
|
|
[Column("cust_emp_name")]
|
|
[DisplayName(" ")]
|
|
public string CustEmpName { get; set; }
|
|
|
|
[Column("trans_amount")]
|
|
[DisplayName(" ")]
|
|
public decimal? TransAmount { get; set; }
|
|
|
|
[Column("last_rec_date")]
|
|
[DisplayName(" ")]
|
|
public string LastRecDate { get; set; }
|
|
|
|
[Column("rec_qty")]
|
|
[DisplayName(" ")]
|
|
public int? RecQty { get; set; }
|
|
|
|
[Column("invoice_qty")]
|
|
[DisplayName(" ")]
|
|
public int? InvoiceQty { get; set; }
|
|
|
|
[Column("invoice_price")]
|
|
[DisplayName(" ")]
|
|
public decimal? InvoicePrice { get; set; }
|
|
|
|
[Column("invoice_amount")]
|
|
[DisplayName(" ")]
|
|
public decimal? InvoiceAmount { get; set; }
|
|
|
|
[Column("invoice_price_date")]
|
|
[DisplayName(" ")]
|
|
public string InvoicePriceDate { get; set; }
|
|
|
|
[Column("remark")]
|
|
[DisplayName(" ")]
|
|
public string Remark { get; set; }
|
|
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
|
|
}
|
|
}
|