java110-bean/src/main/java/com/java110/dto/community/CommunityDto.java
@@ -37,6 +37,8 @@ private String parentAreaCode; private String parentAreaName; private String tel; private String payFeeMonth; private String feePrice; private String startTime; private String endTime; @@ -268,4 +270,20 @@ public void setEndTime(String endTime) { this.endTime = endTime; } public String getPayFeeMonth() { return payFeeMonth; } public void setPayFeeMonth(String payFeeMonth) { this.payFeeMonth = payFeeMonth; } public String getFeePrice() { return feePrice; } public void setFeePrice(String feePrice) { this.feePrice = feePrice; } } java110-bean/src/main/java/com/java110/po/community/CommunityMemberPo.java
@@ -17,6 +17,8 @@ private String memberId; private String memberTypeCd; private String auditStatusCd; private String startTime; private String endTime; public String getCommunityMemberId() { return communityMemberId; @@ -57,4 +59,20 @@ public void setAuditStatusCd(String auditStatusCd) { this.auditStatusCd = auditStatusCd; } public String getStartTime() { return startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getEndTime() { return endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } } java110-bean/src/main/java/com/java110/po/community/CommunityPo.java
@@ -25,6 +25,9 @@ private String bId; private String communityArea; private String payFeeMonth; private String feePrice; private String statusCd = "0"; @@ -131,4 +134,20 @@ public void setStatusCd(String statusCd) { this.statusCd = statusCd; } public String getPayFeeMonth() { return payFeeMonth; } public void setPayFeeMonth(String payFeeMonth) { this.payFeeMonth = payFeeMonth; } public String getFeePrice() { return feePrice; } public void setFeePrice(String feePrice) { this.feePrice = feePrice; } } service-community/src/main/java/com/java110/community/listener/community/AbstractCommunityBusinessServiceDataFlowListener.java
@@ -46,6 +46,8 @@ businessCommunityInfo.put("state", businessCommunityInfo.get("state")); businessCommunityInfo.put("communityArea", businessCommunityInfo.get("community_area")); businessCommunityInfo.put("tel", businessCommunityInfo.get("tel")); businessCommunityInfo.put("payFeeMonth", businessCommunityInfo.get("pay_fee_month")); businessCommunityInfo.put("feePrice", businessCommunityInfo.get("fee_price")); businessCommunityInfo.put("statusCd", statusCd); } @@ -121,6 +123,8 @@ currentCommunityInfo.put("state", currentCommunityInfo.get("state")); currentCommunityInfo.put("communityArea", currentCommunityInfo.get("community_area")); currentCommunityInfo.put("tel", currentCommunityInfo.get("tel")); currentCommunityInfo.put("payFeeMonth", currentCommunityInfo.get("pay_fee_month")); currentCommunityInfo.put("feePrice", currentCommunityInfo.get("fee_price")); currentCommunityInfo.put("operate", StatusConstant.OPERATE_DEL); getCommunityServiceDaoImpl().saveBusinessCommunityInfo(currentCommunityInfo);