Browse Source

APP服务等接口字段补全

anderx 8 years ago
parent
commit
d53d81b9b6

+ 7 - 0
src/main/java/com/goafanti/app/bo/consultantListBo.java

@@ -7,6 +7,7 @@ public class consultantListBo {
 	private String introduction;
 	private String consultant;
 	private String interest;
+	private String reservationCount;
 	public String getId() {
 		return id;
 	}
@@ -44,4 +45,10 @@ public class consultantListBo {
 	public void setInterest(String interest) {
 		this.interest = interest;
 	}
+	public String getReservationCount() {
+		return reservationCount;
+	}
+	public void setReservationCount(String reservationCount) {
+		this.reservationCount = reservationCount;
+	}
 }

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

@@ -927,6 +927,7 @@ public class DemandServiceImpl extends BaseMybatisDao<DemandMapper> implements D
 		if (StringUtils.isNotBlank(TokenManager.getUserId())) {
 			params.put("employerId", TokenManager.getUserId());
 		}
+		//params.put("employerId", "46433140-0a90-471e-a32f-6bc89c562e3d");
 		return (Pagination<DemandSearchListBo>) findPage("findAppMyDemandListByPage", "findAppMyDemandCount", params, pNo, pSize);
 	}