CollegeCurriculumExperience.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. package com.ygj.yuemum.domain.college;
  2. public class CollegeCurriculumExperience {
  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 m_name;
  12. private String m_address;
  13. private String latitude;
  14. private String longitude;
  15. private Integer credit;
  16. private String qrcode;
  17. private String cd_code;
  18. private String status;
  19. private Integer page;
  20. private Integer limit;
  21. public String getCd_code() {
  22. return cd_code;
  23. }
  24. public void setCd_code(String cd_code) {
  25. this.cd_code = cd_code;
  26. }
  27. public String getStatus() {
  28. return status;
  29. }
  30. public void setStatus(String status) {
  31. this.status = status;
  32. }
  33. public Integer getId() {
  34. return id;
  35. }
  36. public void setId(Integer id) {
  37. this.id = id;
  38. }
  39. public String getC_code() {
  40. return c_code;
  41. }
  42. public void setC_code(String c_code) {
  43. this.c_code = c_code;
  44. }
  45. public String getC_name() {
  46. return c_name;
  47. }
  48. public void setC_name(String c_name) {
  49. this.c_name = c_name;
  50. }
  51. public String getC_type() {
  52. return c_type;
  53. }
  54. public void setC_type(String c_type) {
  55. this.c_type = c_type;
  56. }
  57. public Integer getC_step() {
  58. return c_step;
  59. }
  60. public void setC_step(Integer c_step) {
  61. this.c_step = c_step;
  62. }
  63. public String getC_desc() {
  64. return c_desc;
  65. }
  66. public void setC_desc(String c_desc) {
  67. this.c_desc = c_desc;
  68. }
  69. public String getC_content() {
  70. return c_content;
  71. }
  72. public void setC_content(String c_content) {
  73. this.c_content = c_content;
  74. }
  75. public String getCity() {
  76. return city;
  77. }
  78. public void setCity(String city) {
  79. this.city = city;
  80. }
  81. public String getM_name() {
  82. return m_name;
  83. }
  84. public void setM_name(String m_name) {
  85. this.m_name = m_name;
  86. }
  87. public String getM_address() {
  88. return m_address;
  89. }
  90. public void setM_address(String m_address) {
  91. this.m_address = m_address;
  92. }
  93. public String getLatitude() {
  94. return latitude;
  95. }
  96. public void setLatitude(String latitude) {
  97. this.latitude = latitude;
  98. }
  99. public String getLongitude() {
  100. return longitude;
  101. }
  102. public void setLongitude(String longitude) {
  103. this.longitude = longitude;
  104. }
  105. public Integer getCredit() {
  106. return credit;
  107. }
  108. public void setCredit(Integer credit) {
  109. this.credit = credit;
  110. }
  111. public String getQrcode() {
  112. return qrcode;
  113. }
  114. public void setQrcode(String qrcode) {
  115. this.qrcode = qrcode;
  116. }
  117. public Integer getPage() {
  118. return page;
  119. }
  120. public void setPage(Integer page) {
  121. this.page = page;
  122. }
  123. public Integer getLimit() {
  124. return limit;
  125. }
  126. public void setLimit(Integer limit) {
  127. this.limit = limit;
  128. }
  129. }