CollegePresentScholarships.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. package com.ygj.yuemum.domain.college;
  2. public class CollegePresentScholarships {
  3. private Integer id;
  4. private String name;
  5. private Integer level;
  6. private Integer type;
  7. private String desc;
  8. private Integer coupon_id;
  9. private Integer scholarships;
  10. private String list_img_href;
  11. private String detail_img_href;
  12. private String redeem_img_href;
  13. private Integer postage;
  14. private Integer count;
  15. private Integer page;
  16. private Integer limit;
  17. public String getDesc() {
  18. return desc;
  19. }
  20. public void setDesc(String desc) {
  21. this.desc = desc;
  22. }
  23. public String getRedeem_img_href() {
  24. return redeem_img_href;
  25. }
  26. public void setRedeem_img_href(String redeem_img_href) {
  27. this.redeem_img_href = redeem_img_href;
  28. }
  29. public Integer getId() {
  30. return id;
  31. }
  32. public void setId(Integer id) {
  33. this.id = id;
  34. }
  35. public String getName() {
  36. return name;
  37. }
  38. public void setName(String name) {
  39. this.name = name;
  40. }
  41. public Integer getLevel() {
  42. return level;
  43. }
  44. public void setLevel(Integer level) {
  45. this.level = level;
  46. }
  47. public Integer getType() {
  48. return type;
  49. }
  50. public void setType(Integer type) {
  51. this.type = type;
  52. }
  53. public Integer getCoupon_id() {
  54. return coupon_id;
  55. }
  56. public void setCoupon_id(Integer coupon_id) {
  57. this.coupon_id = coupon_id;
  58. }
  59. public Integer getScholarships() {
  60. return scholarships;
  61. }
  62. public void setScholarships(Integer scholarships) {
  63. this.scholarships = scholarships;
  64. }
  65. public String getList_img_href() {
  66. return list_img_href;
  67. }
  68. public void setList_img_href(String list_img_href) {
  69. this.list_img_href = list_img_href;
  70. }
  71. public String getDetail_img_href() {
  72. return detail_img_href;
  73. }
  74. public void setDetail_img_href(String detail_img_href) {
  75. this.detail_img_href = detail_img_href;
  76. }
  77. public Integer getPostage() {
  78. return postage;
  79. }
  80. public void setPostage(Integer postage) {
  81. this.postage = postage;
  82. }
  83. public Integer getCount() {
  84. return count;
  85. }
  86. public void setCount(Integer count) {
  87. this.count = count;
  88. }
  89. public Integer getPage() {
  90. return page;
  91. }
  92. public void setPage(Integer page) {
  93. this.page = page;
  94. }
  95. public Integer getLimit() {
  96. return limit;
  97. }
  98. public void setLimit(Integer limit) {
  99. this.limit = limit;
  100. }
  101. }