//------------------------------------------------------------------------------ // // 此代码已从模板生成。 // // 手动更改此文件可能导致应用程序出现意外的行为。 // 如果重新生成代码,将覆盖对此文件的手动更改。 // //------------------------------------------------------------------------------ namespace CK.SCP.Models.ScpEntity { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; public partial class V_TA_VEND_PART { [Key] public long UID { get; set; } public string VendId { get; set; } public string PartCode { get; set; } public string VendPartCode { get; set; } public decimal VendPackQty { get; set; } public string PoUnit { get; set; } public string Site { get; set; } public Nullable PalletPackQty { get; set; } public Nullable MinPackQty { get; set; } public Nullable TransportationTime { get; set; } public string VendName { get; set; } public string PartDesc1 { get; set; } public string PartDesc2 { get; set; } public string ProjectId { get; set; } [NotMapped] public string PartDesc { get; set; } } }