|
@@ -1,71 +1,37 @@
|
|
|
-package com.java110.api.listener.parkingArea;
|
|
|
|
|
|
|
+package com.java110.community.cmd.parkingArea;
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
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.dto.community.CommunityDto;
|
|
|
|
|
-import com.java110.intf.community.IParkingAreaInnerServiceSMO;
|
|
|
|
|
|
|
+import com.java110.core.annotation.Java110Cmd;
|
|
|
|
|
+import com.java110.core.context.ICmdDataFlowContext;
|
|
|
|
|
+import com.java110.core.event.cmd.AbstractServiceCmdListener;
|
|
|
|
|
+import com.java110.core.event.cmd.CmdEvent;
|
|
|
import com.java110.dto.parking.ParkingAreaDto;
|
|
import com.java110.dto.parking.ParkingAreaDto;
|
|
|
-import com.java110.core.event.service.api.ServiceDataFlowEvent;
|
|
|
|
|
-import com.java110.utils.constant.ServiceCodeParkingAreaConstant;
|
|
|
|
|
|
|
+import com.java110.intf.community.IParkingAreaInnerServiceSMO;
|
|
|
|
|
+import com.java110.utils.exception.CmdException;
|
|
|
import com.java110.utils.util.Assert;
|
|
import com.java110.utils.util.Assert;
|
|
|
import com.java110.utils.util.BeanConvertUtil;
|
|
import com.java110.utils.util.BeanConvertUtil;
|
|
|
-import com.java110.vo.api.community.ApiCommunityDataVo;
|
|
|
|
|
import com.java110.vo.api.parkingArea.ApiParkingAreaDataVo;
|
|
import com.java110.vo.api.parkingArea.ApiParkingAreaDataVo;
|
|
|
import com.java110.vo.api.parkingArea.ApiParkingAreaVo;
|
|
import com.java110.vo.api.parkingArea.ApiParkingAreaVo;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.http.HttpMethod;
|
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
import org.springframework.http.HttpStatus;
|
|
|
import org.springframework.http.ResponseEntity;
|
|
import org.springframework.http.ResponseEntity;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
|
|
-
|
|
|
|
|
-/**
|
|
|
|
|
- * 查询小区侦听类
|
|
|
|
|
- */
|
|
|
|
|
-@Java110Listener("listParkingAreasListener")
|
|
|
|
|
-public class ListParkingAreasListener extends AbstractServiceApiListener {
|
|
|
|
|
-
|
|
|
|
|
|
|
+@Java110Cmd(serviceCode = "parkingArea.listParkingAreas")
|
|
|
|
|
+public class ListParkingAreasCmd extends AbstractServiceCmdListener {
|
|
|
@Autowired
|
|
@Autowired
|
|
|
private IParkingAreaInnerServiceSMO parkingAreaInnerServiceSMOImpl;
|
|
private IParkingAreaInnerServiceSMO parkingAreaInnerServiceSMOImpl;
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
- public String getServiceCode() {
|
|
|
|
|
- return ServiceCodeParkingAreaConstant.LIST_PARKINGAREAS;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- @Override
|
|
|
|
|
- public HttpMethod getHttpMethod() {
|
|
|
|
|
- return HttpMethod.GET;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- @Override
|
|
|
|
|
- public int getOrder() {
|
|
|
|
|
- return DEFAULT_ORDER;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- public IParkingAreaInnerServiceSMO getParkingAreaInnerServiceSMOImpl() {
|
|
|
|
|
- return parkingAreaInnerServiceSMOImpl;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public void setParkingAreaInnerServiceSMOImpl(IParkingAreaInnerServiceSMO parkingAreaInnerServiceSMOImpl) {
|
|
|
|
|
- this.parkingAreaInnerServiceSMOImpl = parkingAreaInnerServiceSMOImpl;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- @Override
|
|
|
|
|
- protected void validate(ServiceDataFlowEvent event, JSONObject reqJson) {
|
|
|
|
|
|
|
+ public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws CmdException {
|
|
|
Assert.hasKeyAndValue(reqJson, "communityId", "必填,请填写小区信息");
|
|
Assert.hasKeyAndValue(reqJson, "communityId", "必填,请填写小区信息");
|
|
|
super.validatePageInfo(reqJson);
|
|
super.validatePageInfo(reqJson);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
- protected void doSoService(ServiceDataFlowEvent event, DataFlowContext context, JSONObject reqJson) {
|
|
|
|
|
-
|
|
|
|
|
|
|
+ public void doCmd(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws CmdException {
|
|
|
ParkingAreaDto parkingAreaDto = BeanConvertUtil.covertBean(reqJson, ParkingAreaDto.class);
|
|
ParkingAreaDto parkingAreaDto = BeanConvertUtil.covertBean(reqJson, ParkingAreaDto.class);
|
|
|
|
|
|
|
|
int count = parkingAreaInnerServiceSMOImpl.queryParkingAreasCount(parkingAreaDto);
|
|
int count = parkingAreaInnerServiceSMOImpl.queryParkingAreasCount(parkingAreaDto);
|
|
@@ -95,7 +61,6 @@ public class ListParkingAreasListener extends AbstractServiceApiListener {
|
|
|
|
|
|
|
|
ResponseEntity<String> responseEntity = new ResponseEntity<String>(JSONObject.toJSONString(apiParkingAreaVo), HttpStatus.OK);
|
|
ResponseEntity<String> responseEntity = new ResponseEntity<String>(JSONObject.toJSONString(apiParkingAreaVo), HttpStatus.OK);
|
|
|
|
|
|
|
|
- context.setResponseEntity(responseEntity);
|
|
|
|
|
-
|
|
|
|
|
|
|
+ cmdDataFlowContext.setResponseEntity(responseEntity);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|