namespace CK.SCP.Models.ScpEntity { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Serializable] public partial class V_TB_REEEE { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public long UID { get; set; } public string PoBillNum { get; set; } [StringLength(50)] public string PartCode { get; set; } public string DockCode { get; set; } public decimal Qty { get; set; } public string VendId { get; set; } public DateTime? CreateTime { get; set; } public string VendName { get; set; } public string PartDesc2 { get; set; } public string CreateUser { get; set; } public string PartGroup { get; set; } public string Describe { get; set; } public string Buyer { get; set; } //public string Extend2 { get; set; } [NotMapped] public Nullable ReceiveTimeBegin { get; set; } [NotMapped] public Nullable ReceiveTimeEnd { get; set; } } }