using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace DSWeb.Areas.SoftMng.DB { [Table("Feedback")] public class Feedback { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int id { get; set; } public string feedbackID { get; set; } public int? feedbackType { get; set; } public string question { get; set; } public string productName { get; set; } public int? status { get; set; } public string companyID { get; set; } public string department { get; set; } public string master { get; set; } public string masterPhone { get; set; } public string masterEmail { get; set; } public string custManager { get; set; } public string telephone { get; set; } public string email { get; set; } public string qq { get; set; } public string dirMaster { get; set; } public string dirPhone { get; set; } public string dirEmail { get; set; } public string dirQQ { get; set; } public string proMaster { get; set; } public string proPhone { get; set; } public string proEmail { get; set; } public string proQQ { get; set; } public DateTime? beginDate { get; set; } public DateTime? endDate { get; set; } public int? action { get; set; } public string actionType { get; set; } public decimal? expense { get; set; } public string project { get; set; } public DateTime? completeDate { get; set; } public string acceptanceSuggestion { get; set; } public string acceptanceMaster { get; set; } public DateTime? acceptanceDate { get; set; } public string createUser { get; set; } public DateTime? createDate { get; set; } public string modifyUser { get; set; } public DateTime? modifyDate { get; set; } public bool? isDelete { get; set; } public int? userType { get; set; } public string attachMent { get; set; } public string CUST_MOBILE { get; set; } public string COMPANY_NAME { get; set; } public string SOURCE_TYPE { get; set; } } }