namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class Base_ProviderContract { [Key] public int Contract_Id { get; set; } [StringLength(50)] public string ContractCode { get; set; } public int? Provider_Id { get; set; } [StringLength(50)] public string ProviderCode { get; set; } [StringLength(50)] public string ProviderName { get; set; } [StringLength(50)] public string ProviderShortName { get; set; } public int? ConsignorId { get; set; } [StringLength(50)] public string ConsignorCode { get; set; } [StringLength(50)] public string ConsignorName { get; set; } [StringLength(50)] public string ContractPrice { get; set; } public DateTime? AccountStartdate { get; set; } public DateTime? AccountEnddate { get; set; } public DateTime? BillingStartdate { get; set; } public DateTime? BillingEnddate { get; set; } public DateTime? PaymentStartdate { get; set; } public DateTime? PaymentEnddate { get; set; } [StringLength(50)] public string ResponsiblePerson { get; set; } [StringLength(50)] public string InvoiceName { get; set; } [StringLength(50)] public string ReceivablesName { get; set; } [StringLength(50)] public string MonthWay { get; set; } [StringLength(50)] public string InvoiceCategory { get; set; } [StringLength(50)] public string InvoiceType { get; set; } public decimal? TaxPoint { get; set; } [StringLength(50)] public string ContractType { get; set; } public DateTime? ContractStart { get; set; } public DateTime? ContractEnd { get; set; } [StringLength(50)] public string QuotaTions { get; set; } public string InvoiceInfo { get; set; } public string Remark { get; set; } public int? CreateID { get; set; } [StringLength(50)] public string Creator { get; set; } public DateTime? CreateDate { get; set; } public int? ModifyID { get; set; } [StringLength(50)] public string Modifier { get; set; } public DateTime? ModifyDate { get; set; } public int? Enable { get; set; } public int? PlatUser_Id { get; set; } public int? UserProduct_Id { get; set; } [StringLength(50)] public string CustomNo { get; set; } public string ExpandFields { get; set; } } }