//------------------------------------------------------------------------------ // // 此代码已从模板生成。 // // 手动更改此文件可能导致应用程序出现意外的行为。 // 如果重新生成代码,将覆盖对此文件的手动更改。 // //------------------------------------------------------------------------------ namespace CK.SCP.Models.ScpEntity { using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; public partial class V_TM_HYANTOLIN_REVIEW { [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int UID { get; set; } [Key] public string ReviewBillNum { get; set; } public string RelationReviewNo { get; set; } public Nullable ReviewType { get; set; } public Nullable ReviewSite { get; set; } public string BarCode { get; set; } public string PartCode { get; set; } public string Batch { get; set; } public string ProjectId { get; set; } public Nullable Qty { get; set; } public string BadCouse { get; set; } public string ReviewResult { get; set; } public string UltimateDepart { get; set; } public string UltimateName { get; set; } public Nullable ClaimAmount { get; set; } public string OperName { get; set; } public Nullable BillDate { get; set; } public Nullable CreateTime { get; set; } public Nullable ReviewTime { get; set; } public System.Guid Guid { get; set; } public string Domain { get; set; } public Nullable State { get; set; } public string VendId { get; set; } public string VendName { get; set; } public string Currency { get; set; } public string Unit { get; set; } public string PartDesc { get; set; } public string CaimGUID { get; set; } public string InvoiceNum { get; set; } public int? InvoiceState { get; set; } [NotMapped] [DisplayName("开始时间")] public DateTime? BeginTime { get; set; } [NotMapped] [DisplayName("结束时间")] public DateTime? EndTime { get; set; } [NotMapped] public List UserInAddress { set; get; } [NotMapped] public List UserInVendIds { set; get; } [NotMapped] public List BillStateList { set; get; } } }