|
|
@@ -1,36 +1,26 @@
|
|
|
-package com.java110.api.listener.index;
|
|
|
-
|
|
|
+package com.java110.community.cmd.index;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
-import com.java110.api.listener.AbstractServiceApiDataFlowListener;
|
|
|
-import com.java110.utils.constant.ServiceCodeConstant;
|
|
|
-import com.java110.utils.util.Assert;
|
|
|
-import com.java110.utils.util.BeanConvertUtil;
|
|
|
-import com.java110.core.annotation.Java110Listener;
|
|
|
-import com.java110.core.context.DataFlowContext;
|
|
|
-import com.java110.intf.user.IOwnerInnerServiceSMO;
|
|
|
-import com.java110.intf.community.IParkingSpaceInnerServiceSMO;
|
|
|
-import com.java110.intf.community.IRoomInnerServiceSMO;
|
|
|
+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.RoomDto;
|
|
|
import com.java110.dto.owner.OwnerDto;
|
|
|
import com.java110.dto.parking.ParkingSpaceDto;
|
|
|
-import com.java110.dto.RoomDto;
|
|
|
-import com.java110.core.event.service.api.ServiceDataFlowEvent;
|
|
|
+import com.java110.intf.community.IParkingSpaceInnerServiceSMO;
|
|
|
+import com.java110.intf.community.IRoomInnerServiceSMO;
|
|
|
+import com.java110.intf.user.IOwnerInnerServiceSMO;
|
|
|
+import com.java110.utils.exception.CmdException;
|
|
|
+import com.java110.utils.util.Assert;
|
|
|
+import com.java110.utils.util.BeanConvertUtil;
|
|
|
import com.java110.vo.api.ApiIndexStatisticVo;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.http.HttpMethod;
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
import org.springframework.http.ResponseEntity;
|
|
|
|
|
|
-/**
|
|
|
- * @ClassName FloorDto
|
|
|
- * @Description 查询首页统计信息
|
|
|
- * @Author wuxw
|
|
|
- * @Date 2019/4/24 8:52
|
|
|
- * @Version 1.0
|
|
|
- * add by wuxw 2019/4/24
|
|
|
- **/
|
|
|
-@Java110Listener("queryIndexStatistic")
|
|
|
-public class QueryIndexStatisticListener extends AbstractServiceApiDataFlowListener {
|
|
|
+@Java110Cmd(serviceCode = "index.queryIndexStatistic")
|
|
|
+public class QueryIndexStatisticCmd extends Cmd {
|
|
|
|
|
|
@Autowired
|
|
|
private IOwnerInnerServiceSMO ownerInnerServiceSMOImpl;
|
|
|
@@ -41,28 +31,15 @@ public class QueryIndexStatisticListener extends AbstractServiceApiDataFlowListe
|
|
|
|
|
|
@Autowired
|
|
|
private IParkingSpaceInnerServiceSMO parkingSpaceInnerServiceSMOImpl;
|
|
|
- @Override
|
|
|
- public String getServiceCode() {
|
|
|
- return ServiceCodeConstant.SERVICE_CODE_QUERY_INDEX_STATISTIC;
|
|
|
- }
|
|
|
|
|
|
@Override
|
|
|
- public HttpMethod getHttpMethod() {
|
|
|
- return HttpMethod.GET;
|
|
|
+ public void validate(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException {
|
|
|
+ Assert.jsonObjectHaveKey(reqJson, "communityId", "请求中未包含communityId信息");
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 业务层数据处理
|
|
|
- *
|
|
|
- * @param event 时间对象
|
|
|
- */
|
|
|
@Override
|
|
|
- public void soService(ServiceDataFlowEvent event) {
|
|
|
- DataFlowContext dataFlowContext = event.getDataFlowContext();
|
|
|
- //获取请求数据
|
|
|
- JSONObject reqJson = dataFlowContext.getReqJson();
|
|
|
- validateIndexStatistic(reqJson);
|
|
|
- // 查询业主 总数量
|
|
|
+ public void doCmd(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException {
|
|
|
+// 查询业主 总数量
|
|
|
ApiIndexStatisticVo apiIndexStatisticVo = new ApiIndexStatisticVo();
|
|
|
OwnerDto ownerDto = BeanConvertUtil.covertBean(reqJson, OwnerDto.class);
|
|
|
int ownerCount = ownerInnerServiceSMOImpl.queryOwnersCount(ownerDto);
|
|
|
@@ -94,47 +71,6 @@ public class QueryIndexStatisticListener extends AbstractServiceApiDataFlowListe
|
|
|
apiIndexStatisticVo.setShopCount(shopCount + "");
|
|
|
apiIndexStatisticVo.setFreeShopCount(freeShopCount + "");
|
|
|
ResponseEntity<String> responseEntity = new ResponseEntity<String>(JSONObject.toJSONString(apiIndexStatisticVo), HttpStatus.OK);
|
|
|
- dataFlowContext.setResponseEntity(responseEntity);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 校验查询条件是否满足条件
|
|
|
- *
|
|
|
- * @param reqJson 包含查询条件
|
|
|
- */
|
|
|
- private void validateIndexStatistic(JSONObject reqJson) {
|
|
|
- Assert.jsonObjectHaveKey(reqJson, "communityId", "请求中未包含communityId信息");
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public int getOrder() {
|
|
|
- return super.DEFAULT_ORDER;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public IOwnerInnerServiceSMO getOwnerInnerServiceSMOImpl() {
|
|
|
- return ownerInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOwnerInnerServiceSMOImpl(IOwnerInnerServiceSMO ownerInnerServiceSMOImpl) {
|
|
|
- this.ownerInnerServiceSMOImpl = ownerInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public IRoomInnerServiceSMO getRoomInnerServiceSMOImpl() {
|
|
|
- return roomInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRoomInnerServiceSMOImpl(IRoomInnerServiceSMO roomInnerServiceSMOImpl) {
|
|
|
- this.roomInnerServiceSMOImpl = roomInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
- public IParkingSpaceInnerServiceSMO getParkingSpaceInnerServiceSMOImpl() {
|
|
|
- return parkingSpaceInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setParkingSpaceInnerServiceSMOImpl(IParkingSpaceInnerServiceSMO parkingSpaceInnerServiceSMOImpl) {
|
|
|
- this.parkingSpaceInnerServiceSMOImpl = parkingSpaceInnerServiceSMOImpl;
|
|
|
+ context.setResponseEntity(responseEntity);
|
|
|
}
|
|
|
}
|