T_Logic_ServiceAssess_Model.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. namespace JSWX_Model.SignUp
  8. {
  9. [Table("T_Logic_ServiceAssess")]
  10. public class T_Logic_ServiceAssess
  11. {
  12. public T_Logic_ServiceAssess()
  13. {
  14. }
  15. [Key]
  16. [Column("F_ID")]
  17. [Display(Name = "F_ID")]
  18. public int F_ID { get; set; }
  19. [Column("F_SNo")]
  20. [Display(Name = "F_SNo")]
  21. public string F_SNo { get; set; }
  22. [Column("F_PayStatus")]
  23. [Display(Name = "F_PayStatus")]
  24. public string F_PayStatus { get; set; }
  25. [Column("F_Payment")]
  26. [Display(Name = "F_Payment")]
  27. public decimal F_Payment { get; set; }
  28. [Column("F_Score1")]
  29. [Display(Name = "F_Score1")]
  30. public string F_Score1 { get; set; }
  31. [Column("F_Score2")]
  32. [Display(Name = "F_Score2")]
  33. public string F_Score2 { get; set; }
  34. [Column("F_Score3")]
  35. [Display(Name = "F_Score3")]
  36. public string F_Score3 { get; set; }
  37. [Column("F_Date")]
  38. [Display(Name = "F_Date")]
  39. public DateTime F_Date { get; set; }
  40. [Column("F_Suggest")]
  41. [Display(Name = "F_Suggest")]
  42. public string F_Suggest { get; set; }
  43. }
  44. }