ReDiscoveryClass.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace AirWheel.Cycling.Entity.ResponseMod
  7. {
  8. public class ReDiscoveryClass
  9. {
  10. #region Model
  11. private int _bdcid;
  12. private string _classname;
  13. private string _imageurl;
  14. private string _imageurlstr;
  15. private string _introduce;
  16. private int? _themetype;
  17. private DateTime? _adddate;
  18. private string _addname;
  19. private int? _softnum;
  20. private int? _rowstate;
  21. /// <summary>
  22. ///
  23. /// </summary>
  24. public int BDCID
  25. {
  26. set { _bdcid = value; }
  27. get { return _bdcid; }
  28. }
  29. /// <summary>
  30. /// 分类名称
  31. /// </summary>
  32. public string ClassName
  33. {
  34. set { _classname = value; }
  35. get { return _classname; }
  36. }
  37. /// <summary>
  38. /// 图片地址
  39. /// </summary>
  40. public string ImageUrl
  41. {
  42. set { _imageurl = value; }
  43. get { return _imageurl; }
  44. }
  45. /// <summary>
  46. ///
  47. /// </summary>
  48. public string ImageUrlStr
  49. {
  50. set { _imageurlstr = value; }
  51. get { return _imageurlstr; }
  52. }
  53. /// <summary>
  54. /// 介绍
  55. /// </summary>
  56. public string Introduce
  57. {
  58. set { _introduce = value; }
  59. get { return _introduce; }
  60. }
  61. /// <summary>
  62. /// 主题类型
  63. /// </summary>
  64. public int? themeType
  65. {
  66. set { _themetype = value; }
  67. get { return _themetype; }
  68. }
  69. /// <summary>
  70. /// 添加时间
  71. /// </summary>
  72. public DateTime? AddDate
  73. {
  74. set { _adddate = value; }
  75. get { return _adddate; }
  76. }
  77. /// <summary>
  78. /// 添加人
  79. /// </summary>
  80. public string AddName
  81. {
  82. set { _addname = value; }
  83. get { return _addname; }
  84. }
  85. /// <summary>
  86. ///
  87. /// </summary>
  88. public int? SoftNum
  89. {
  90. set { _softnum = value; }
  91. get { return _softnum; }
  92. }
  93. /// <summary>
  94. ///
  95. /// </summary>
  96. public int? RowState
  97. {
  98. set { _rowstate = value; }
  99. get { return _rowstate; }
  100. }
  101. #endregion Model
  102. }
  103. }