Просмотр исходного кода

APP地址、关注数显示条件更改

anderx лет назад: 8
Родитель
Сommit
5a7be1b258

+ 1 - 1
src/main/java/com/goafanti/achievement/bo/AchievementListBo.java

@@ -382,7 +382,7 @@ public class AchievementListBo {
 
 
 	public String getCountInterest() {
-		return countInterest;
+		return String.valueOf(Integer.valueOf(countInterest)+20);
 	}
 
 	public void setCountInterest(String countInterest) {

+ 2 - 2
src/main/java/com/goafanti/achievement/bo/AchievementPartnerListBo.java

@@ -251,12 +251,12 @@ public class AchievementPartnerListBo {
 	
 
 	public String getCountInterest() {
-	    
 		return String.valueOf(Integer.valueOf(countInterest)+20);
 	}
 
 	public void setCountInterest(String countInterest) {
-		this.countInterest = countInterest;
+		
+		this.countInterest =countInterest;
 	}
 
 	public Integer getBoutique() {

+ 1 - 0
src/main/java/com/goafanti/demand/service/impl/DemandServiceImpl.java

@@ -871,6 +871,7 @@ public class DemandServiceImpl extends BaseMybatisDao<DemandMapper> implements D
 		if (StringUtils.isNotBlank(TokenManager.getUserId())) {
 			params.put("uid", TokenManager.getUserId());
 		}
+		//params.put("uid", "6d71349c-7bb8-4e8a-8c03-0c3f36fc66ae");
 		if (type==InterestType.POLICY.getCode()) {
 			Pagination<ObjectInterestListBo> p=(Pagination<ObjectInterestListBo>) findPage("findAppNewsInterestByPage", "findAppNewsInterestCount", params, pNo, pSize);
 			List<ObjectInterestListBo> l=(List<ObjectInterestListBo>) p.getList();