| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package com.goafanti.achievement.bo;
- public class AchievementListBo extends InputAchievement{
- private String countInterest;
-
- private String field1;
-
- private String field2;
-
- private String interested;
- public String getCountInterest() {
- return countInterest;
- }
- public void setCountInterest(String countInterest) {
- this.countInterest = countInterest;
- }
- public String getField1() {
- return field1;
- }
- public void setField1(String field1) {
- this.field1 = field1;
- }
- public String getField2() {
- return field2;
- }
- public void setField2(String field2) {
- this.field2 = field2;
- }
- public String getInterested() {
- return interested;
- }
- public void setInterested(String interested) {
- this.interested = interested;
- }
-
- }
|