Activity.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. package com.goafanti.common.model;
  2. import java.util.Date;
  3. public class Activity {
  4. private Long id;
  5. /**
  6. * 开始时间
  7. */
  8. private Date startTime;
  9. /**
  10. * 结束时间
  11. */
  12. private Date endTime;
  13. /**
  14. * 标题
  15. */
  16. private String name;
  17. /**
  18. * 状态
  19. */
  20. private Integer status;
  21. /**
  22. * 活动地址
  23. */
  24. private String address;
  25. /**
  26. * 主办单位
  27. */
  28. private String host;
  29. /**
  30. * 承办单位
  31. */
  32. private String undertake;
  33. /**
  34. * 协办单位,逗号隔开
  35. */
  36. private String asist;
  37. /**
  38. * 活动类型
  39. */
  40. private Integer type;
  41. /**
  42. * 活动形式
  43. */
  44. private Integer form;
  45. /**
  46. * 活动图片地址
  47. */
  48. private String imgUrls;
  49. /**
  50. * 活动结果描述
  51. */
  52. private String result;
  53. /**
  54. * 创建时间(报名开始时间)
  55. */
  56. private Date createTime;
  57. /**
  58. * 报名截止时间
  59. */
  60. private Date enrollDeadline;
  61. /**
  62. * 题图地址
  63. */
  64. private String titleUrl;
  65. /**
  66. * 描述
  67. */
  68. private String desc;
  69. public Long getId() {
  70. return id;
  71. }
  72. public void setId(Long id) {
  73. this.id = id;
  74. }
  75. public Date getStartTime() {
  76. return startTime;
  77. }
  78. public void setStartTime(Date startTime) {
  79. this.startTime = startTime;
  80. }
  81. public Date getEndTime() {
  82. return endTime;
  83. }
  84. public void setEndTime(Date endTime) {
  85. this.endTime = endTime;
  86. }
  87. public String getName() {
  88. return name;
  89. }
  90. public void setName(String name) {
  91. this.name = name;
  92. }
  93. public Integer getStatus() {
  94. return status;
  95. }
  96. public void setStatus(Integer status) {
  97. this.status = status;
  98. }
  99. public String getAddress() {
  100. return address;
  101. }
  102. public void setAddress(String address) {
  103. this.address = address;
  104. }
  105. public String getHost() {
  106. return host;
  107. }
  108. public void setHost(String host) {
  109. this.host = host;
  110. }
  111. public String getUndertake() {
  112. return undertake;
  113. }
  114. public void setUndertake(String undertake) {
  115. this.undertake = undertake;
  116. }
  117. public String getAsist() {
  118. return asist;
  119. }
  120. public void setAsist(String asist) {
  121. this.asist = asist;
  122. }
  123. public Integer getType() {
  124. return type;
  125. }
  126. public void setType(Integer type) {
  127. this.type = type;
  128. }
  129. public Integer getForm() {
  130. return form;
  131. }
  132. public void setForm(Integer form) {
  133. this.form = form;
  134. }
  135. public String getImgUrls() {
  136. return imgUrls;
  137. }
  138. public void setImgUrls(String imgUrls) {
  139. this.imgUrls = imgUrls;
  140. }
  141. public String getResult() {
  142. return result;
  143. }
  144. public void setResult(String result) {
  145. this.result = result;
  146. }
  147. public Date getCreateTime() {
  148. return createTime;
  149. }
  150. public void setCreateTime(Date createTime) {
  151. this.createTime = createTime;
  152. }
  153. public Date getEnrollDeadline() {
  154. return enrollDeadline;
  155. }
  156. public void setEnrollDeadline(Date enrollDeadline) {
  157. this.enrollDeadline = enrollDeadline;
  158. }
  159. public String getTitleUrl() {
  160. return titleUrl;
  161. }
  162. public void setTitleUrl(String titleUrl) {
  163. this.titleUrl = titleUrl;
  164. }
  165. public String getDesc() {
  166. return desc;
  167. }
  168. public void setDesc(String desc) {
  169. this.desc = desc;
  170. }
  171. }