namespace CK.SCP.Models.ScpEntity { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; public partial class V_TB_PO_DETAIL:RecordEntity { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public long UID { get; set; } [StringLength(50)] public string PoBillNum { get; set; } public int PoLine { get; set; } public string PartCode { get; set; } public decimal PlanQty { get; set; } public decimal ShippedQty { get; set; } public decimal ReceivedQty { get; set; } public string RejectQty { get; set; } public string ArriveQty { get; set; } public Nullable BeginTime { get; set; } public Nullable EndTime { get; set; } public string PoUnit { get; set; } public string LocUnit { get; set; } public decimal Price { get; set; } public string Currency { get; set; } public decimal PackQty { get; set; } public decimal UnConv { get; set; } public string DockCode { get; set; } public int? State { get; set; } public string Remark { get; set; } public string PartDesc1 { get; set; } public string CurrencyDesc { get; set; } public string ErpBillNum { get; set; } public Nullable ModType { get; set; } public string Contacter { get; set; } public string Site { get; set; } public string Buyer { get; set; } public string BuyerPhone { get; set; } public string VendName { get; set; } public string PartDesc2 { get; set; } public string ProjectId { get; set; } [StringLength(50)] public string State_DESC { get; set; } [StringLength(50)] public string VendId { get; set; } public string ReceivedPort { get; set; } [NotMapped] public Nullable TempQty { get; set; } [NotMapped] public decimal? PublishQty { get; set; } [NotMapped] public decimal? ContractPrice { get; set; } [NotMapped] public decimal? BlancePrice { get; set; } public string Extend1 { get; set; } public string Extend2 { get; set; } public string Extend3 { get; set; } public string SubSite { get; set; } [NotMapped] public string Subpartspec { get; set; }//子件规格 [NotMapped] public string ContractNo { get; set; }//合同编号 [NotMapped] public string ContractMonth { get; set; }//合同月 } }