AchievementListBo.java 798 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package com.goafanti.achievement.bo;
  2. public class AchievementListBo extends InputAchievement{
  3. private String countInterest;
  4. private String field1;
  5. private String field2;
  6. private String interested;
  7. public String getCountInterest() {
  8. return countInterest;
  9. }
  10. public void setCountInterest(String countInterest) {
  11. this.countInterest = countInterest;
  12. }
  13. public String getField1() {
  14. return field1;
  15. }
  16. public void setField1(String field1) {
  17. this.field1 = field1;
  18. }
  19. public String getField2() {
  20. return field2;
  21. }
  22. public void setField2(String field2) {
  23. this.field2 = field2;
  24. }
  25. public String getInterested() {
  26. return interested;
  27. }
  28. public void setInterested(String interested) {
  29. this.interested = interested;
  30. }
  31. }