CollegeCurriculumPractice.java 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. package com.ygj.yuemum.domain.college;
  2. public class CollegeCurriculumPractice {
  3. private Integer id;
  4. private String c_code;
  5. private String c_name;
  6. private String c_type;
  7. private Integer c_step;
  8. private String c_desc;
  9. private String c_content;
  10. private String city;
  11. private String branches;
  12. private String address;
  13. private String startdate;
  14. private String enddate;
  15. private String deadline;
  16. private Integer maximum;
  17. private Integer pcount;
  18. private Integer credit;
  19. private String cd_code;
  20. private String status;
  21. private String qrcode;
  22. private Integer page;
  23. private Integer bookingid;
  24. private String openid;
  25. private String learningStatus;
  26. private Integer limit;
  27. private String img_href;
  28. public String getOpenid() {
  29. return openid;
  30. }
  31. public void setOpenid(String openid) {
  32. this.openid = openid;
  33. }
  34. public String getLearningStatus() {
  35. return learningStatus;
  36. }
  37. public void setLearningStatus(String learningStatus) {
  38. this.learningStatus = learningStatus;
  39. }
  40. public Integer getBookingid() {
  41. return bookingid;
  42. }
  43. public void setBookingid(Integer bookingid) {
  44. this.bookingid = bookingid;
  45. }
  46. public String getImg_href() {
  47. return img_href;
  48. }
  49. public void setImg_href(String img_href) {
  50. this.img_href = img_href;
  51. }
  52. public String getCd_code() {
  53. return cd_code;
  54. }
  55. public void setCd_code(String cd_code) {
  56. this.cd_code = cd_code;
  57. }
  58. public String getStatus() {
  59. return status;
  60. }
  61. public void setStatus(String status) {
  62. this.status = status;
  63. }
  64. public String getAddress() {
  65. return address;
  66. }
  67. public void setAddress(String address) {
  68. this.address = address;
  69. }
  70. public Integer getPcount() {
  71. return pcount;
  72. }
  73. public void setPcount(Integer pcount) {
  74. this.pcount = pcount;
  75. }
  76. public Integer getId() {
  77. return id;
  78. }
  79. public void setId(Integer id) {
  80. this.id = id;
  81. }
  82. public String getC_code() {
  83. return c_code;
  84. }
  85. public void setC_code(String c_code) {
  86. this.c_code = c_code;
  87. }
  88. public String getC_name() {
  89. return c_name;
  90. }
  91. public void setC_name(String c_name) {
  92. this.c_name = c_name;
  93. }
  94. public String getC_type() {
  95. return c_type;
  96. }
  97. public void setC_type(String c_type) {
  98. this.c_type = c_type;
  99. }
  100. public Integer getC_step() {
  101. return c_step;
  102. }
  103. public void setC_step(Integer c_step) {
  104. this.c_step = c_step;
  105. }
  106. public String getC_desc() {
  107. return c_desc;
  108. }
  109. public void setC_desc(String c_desc) {
  110. this.c_desc = c_desc;
  111. }
  112. public String getC_content() {
  113. return c_content;
  114. }
  115. public void setC_content(String c_content) {
  116. this.c_content = c_content;
  117. }
  118. public String getCity() {
  119. return city;
  120. }
  121. public void setCity(String city) {
  122. this.city = city;
  123. }
  124. public String getBranches() {
  125. return branches;
  126. }
  127. public void setBranches(String branches) {
  128. this.branches = branches;
  129. }
  130. public String getStartdate() {
  131. return startdate;
  132. }
  133. public void setStartdate(String startdate) {
  134. this.startdate = startdate;
  135. }
  136. public String getEnddate() {
  137. return enddate;
  138. }
  139. public void setEnddate(String enddate) {
  140. this.enddate = enddate;
  141. }
  142. public String getDeadline() {
  143. return deadline;
  144. }
  145. public void setDeadline(String deadline) {
  146. this.deadline = deadline;
  147. }
  148. public Integer getMaximum() {
  149. return maximum;
  150. }
  151. public void setMaximum(Integer maximum) {
  152. this.maximum = maximum;
  153. }
  154. public Integer getCredit() {
  155. return credit;
  156. }
  157. public void setCredit(Integer credit) {
  158. this.credit = credit;
  159. }
  160. public String getQrcode() {
  161. return qrcode;
  162. }
  163. public void setQrcode(String qrcode) {
  164. this.qrcode = qrcode;
  165. }
  166. public Integer getPage() {
  167. return page;
  168. }
  169. public void setPage(Integer page) {
  170. this.page = page;
  171. }
  172. public Integer getLimit() {
  173. return limit;
  174. }
  175. public void setLimit(Integer limit) {
  176. this.limit = limit;
  177. }
  178. }