|
|
@@ -1,32 +1,27 @@
|
|
|
-package com.java110.api.listener.community;
|
|
|
+package com.java110.community.cmd.community;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
-import com.java110.api.listener.AbstractServiceApiListener;
|
|
|
-import com.java110.core.annotation.Java110Listener;
|
|
|
-import com.java110.core.context.DataFlowContext;
|
|
|
-import com.java110.core.event.service.api.ServiceDataFlowEvent;
|
|
|
+import com.java110.core.annotation.Java110Cmd;
|
|
|
+import com.java110.core.context.ICmdDataFlowContext;
|
|
|
+import com.java110.core.event.cmd.Cmd;
|
|
|
+import com.java110.core.event.cmd.CmdEvent;
|
|
|
import com.java110.dto.area.AreaDto;
|
|
|
import com.java110.dto.community.CommunityDto;
|
|
|
import com.java110.intf.common.IAreaInnerServiceSMO;
|
|
|
import com.java110.intf.community.ICommunityInnerServiceSMO;
|
|
|
-import com.java110.utils.constant.ServiceCodeConstant;
|
|
|
+import com.java110.utils.exception.CmdException;
|
|
|
import com.java110.utils.util.BeanConvertUtil;
|
|
|
import com.java110.vo.api.community.ApiCommunityDataVo;
|
|
|
import com.java110.vo.api.community.ApiCommunityVo;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.http.HttpMethod;
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
import org.springframework.http.ResponseEntity;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
|
|
|
-
|
|
|
-/**
|
|
|
- * 查询小区侦听类
|
|
|
- */
|
|
|
-@Java110Listener("listCommunitysListener")
|
|
|
-public class ListCommunitysListener extends AbstractServiceApiListener {
|
|
|
+@Java110Cmd(serviceCode = "community.listCommunitys")
|
|
|
+public class ListCommunitysCmd extends Cmd {
|
|
|
|
|
|
@Autowired
|
|
|
private IAreaInnerServiceSMO areaInnerServiceSMOImpl;
|
|
|
@@ -35,38 +30,12 @@ public class ListCommunitysListener extends AbstractServiceApiListener {
|
|
|
private ICommunityInnerServiceSMO communityInnerServiceSMOImpl;
|
|
|
|
|
|
@Override
|
|
|
- public String getServiceCode() {
|
|
|
- return ServiceCodeConstant.SERVICE_CODE_LIST_COMMUNITYS;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public HttpMethod getHttpMethod() {
|
|
|
- return HttpMethod.GET;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- @Override
|
|
|
- public int getOrder() {
|
|
|
- return DEFAULT_ORDER;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public ICommunityInnerServiceSMO getCommunityInnerServiceSMOImpl() {
|
|
|
- return communityInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCommunityInnerServiceSMOImpl(ICommunityInnerServiceSMO communityInnerServiceSMOImpl) {
|
|
|
- this.communityInnerServiceSMOImpl = communityInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- protected void validate(ServiceDataFlowEvent event, JSONObject reqJson) {
|
|
|
+ public void validate(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException {
|
|
|
super.validatePageInfo(reqJson);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- protected void doSoService(ServiceDataFlowEvent event, DataFlowContext context, JSONObject reqJson) {
|
|
|
-
|
|
|
+ public void doCmd(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException {
|
|
|
CommunityDto communityDto = BeanConvertUtil.covertBean(reqJson, CommunityDto.class);
|
|
|
|
|
|
int count = communityInnerServiceSMOImpl.queryCommunitysCount(communityDto);
|
|
|
@@ -118,12 +87,4 @@ public class ListCommunitysListener extends AbstractServiceApiListener {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- public IAreaInnerServiceSMO getAreaInnerServiceSMOImpl() {
|
|
|
- return areaInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAreaInnerServiceSMOImpl(IAreaInnerServiceSMO areaInnerServiceSMOImpl) {
|
|
|
- this.areaInnerServiceSMOImpl = areaInnerServiceSMOImpl;
|
|
|
- }
|
|
|
}
|