|
|
@@ -382,7 +382,8 @@ public class AchievementListBo {
|
|
|
|
|
|
|
|
|
public String getCountInterest() {
|
|
|
- return String.valueOf(Integer.valueOf(countInterest)+20);
|
|
|
+ if (StringUtils.isBlank(countInterest)) countInterest = "0";
|
|
|
+ return String.valueOf(Integer.valueOf(countInterest)+20);
|
|
|
}
|
|
|
|
|
|
public void setCountInterest(String countInterest) {
|