T_Base_NewsInfo_Model.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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_Base_NewsInfo")]
  10. public class T_Base_NewsInfo
  11. {
  12. public T_Base_NewsInfo()
  13. {
  14. }
  15. [Key]
  16. [Column("F_SN")]
  17. [Display(Name = "F_SN")]
  18. public Guid F_SN { get; set; }
  19. [Column("F_NewsType")]
  20. [Display(Name = "F_NewsType")]
  21. public Guid F_NewsType { get; set; }
  22. [Column("F_NewsTitle")]
  23. [Display(Name = "F_NewsTitle")]
  24. public string F_NewsTitle { get; set; }
  25. [Column("F_AnotherName")]
  26. [Display(Name = "F_AnotherName")]
  27. public string F_AnotherName { get; set; }
  28. [Column("F_PicUrl")]
  29. [Display(Name = "F_PicUrl")]
  30. public string F_PicUrl { get; set; }
  31. [Column("F_NewsIntroduction")]
  32. [Display(Name = "F_NewsIntroduction")]
  33. public string F_NewsIntroduction { get; set; }
  34. [Column("F_NewsSeoTitle")]
  35. [Display(Name = "F_NewsSeoTitle")]
  36. public string F_NewsSeoTitle { get; set; }
  37. [Column("F_NewsSeoKey")]
  38. [Display(Name = "F_NewsSeoKey")]
  39. public string F_NewsSeoKey { get; set; }
  40. [Column("F_NewsSeoDesc")]
  41. [Display(Name = "F_NewsSeoDesc")]
  42. public string F_NewsSeoDesc { get; set; }
  43. [Column("F_NewsContent")]
  44. [Display(Name = "F_NewsContent")]
  45. public string F_NewsContent { get; set; }
  46. [Column("F_SortID")]
  47. [Display(Name = "F_SortID")]
  48. public int F_SortID { get; set; }
  49. [Column("F_ReadCount")]
  50. [Display(Name = "F_ReadCount")]
  51. public int F_ReadCount { get; set; }
  52. [Column("F_NewsSource")]
  53. [Display(Name = "F_NewsSource")]
  54. public string F_NewsSource { get; set; }
  55. [Column("F_ReleaseTime")]
  56. [Display(Name = "F_ReleaseTime")]
  57. public string F_ReleaseTime { get; set; }
  58. [Column("F_IsTop")]
  59. [Display(Name = "F_IsTop")]
  60. public int F_IsTop { get; set; }
  61. [Column("F_IsHot")]
  62. [Display(Name = "F_IsHot")]
  63. public int F_IsHot { get; set; }
  64. [Column("F_IsRecommend")]
  65. [Display(Name = "F_IsRecommend")]
  66. public int F_IsRecommend { get; set; }
  67. [Column("F_IsReview")]
  68. [Display(Name = "F_IsReview")]
  69. public int F_IsReview { get; set; }
  70. [Column("F_Status")]
  71. [Display(Name = "F_Status")]
  72. public int F_Status { get; set; }
  73. [Column("F_IsDel")]
  74. [Display(Name = "F_IsDel")]
  75. public int F_IsDel { get; set; }
  76. [Column("F_CreaterSN")]
  77. [Display(Name = "F_CreaterSN")]
  78. public Guid F_CreaterSN { get; set; }
  79. [Column("F_CreaterName")]
  80. [Display(Name = "F_CreaterName")]
  81. public string F_CreaterName { get; set; }
  82. [Column("F_CreateDate")]
  83. [Display(Name = "F_CreateDate")]
  84. public long F_CreateDate { get; set; }
  85. [Column("F_Company")]
  86. [Display(Name = "F_Company")]
  87. public string F_Company { get; set; }
  88. }
  89. }