package com.java110.community.cmd.parkingSpace; import com.alibaba.fastjson.JSONObject; import com.java110.core.annotation.Java110Cmd; import com.java110.core.context.DataFlowContext; import com.java110.core.context.ICmdDataFlowContext; import com.java110.core.event.cmd.Cmd; import com.java110.core.event.cmd.CmdEvent; import com.java110.dto.owner.OwnerCarDto; import com.java110.intf.community.IParkingSpaceInnerServiceSMO; import com.java110.intf.user.IOwnerCarInnerServiceSMO; import com.java110.utils.exception.CmdException; import com.java110.utils.util.Assert; import com.java110.utils.util.BeanConvertUtil; import com.java110.vo.api.owner.ApiOwnerCarDataVo; import com.java110.vo.api.owner.ApiOwnerCarVo; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import java.text.ParseException; import java.util.ArrayList; import java.util.List; @Java110Cmd(serviceCode = "parkingSpace.queryParkingSpaceCars") public class QueryParkingSpaceCarsCmd extends Cmd { @Autowired private IParkingSpaceInnerServiceSMO parkingSpaceInnerServiceSMOImpl; @Autowired private IOwnerCarInnerServiceSMO ownerCarInnerServiceSMOImpl; @Override public void validate(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException { Assert.jsonObjectHaveKey(reqJson, "page", "请求中未包含page信息"); Assert.jsonObjectHaveKey(reqJson, "row", "请求中未包含row信息"); Assert.jsonObjectHaveKey(reqJson, "communityId", "请求中未包含communityId信息"); Assert.isInteger(reqJson.getString("page"), "不是有效数字"); Assert.isInteger(reqJson.getString("row"), "不是有效数字"); } @Override public void doCmd(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException, ParseException { refreshReqJson(reqJson); //根据车牌号去查询 车位信息 queryParkingSpaceCar(reqJson, context); } /** * 根据车牌号 查询 停车位 * * @param reqJson 请求报文 * @param dataFlowContext 上线文对象 */ private void queryParkingSpaceCar(JSONObject reqJson,ICmdDataFlowContext dataFlowContext) { ApiOwnerCarVo apiOwnerCarVo = new ApiOwnerCarVo(); int row = reqJson.getInteger("row"); //查询总记录数 OwnerCarDto ownerCarDto = BeanConvertUtil.covertBean(reqJson, OwnerCarDto.class); int total = ownerCarInnerServiceSMOImpl.queryOwnerCarsCount(ownerCarDto); apiOwnerCarVo.setTotal(total); if (total > 0) { List ownerCarDtos = ownerCarInnerServiceSMOImpl.queryOwnerCars(ownerCarDto); apiOwnerCarVo.setOwnerCars(BeanConvertUtil.covertBeanList(ownerCarDtos, ApiOwnerCarDataVo.class)); } apiOwnerCarVo.setRecords((int) Math.ceil((double) total / (double) row)); ResponseEntity responseEntity = new ResponseEntity(JSONObject.toJSONString(apiOwnerCarVo), HttpStatus.OK); dataFlowContext.setResponseEntity(responseEntity); } /** * 获取 停车位Ids * * @param ownerCarDtos 业主车位 * @return 停车位Ids */ private String[] getPsIds(List ownerCarDtos) { List psIds = new ArrayList(); for (OwnerCarDto ownerCarDto : ownerCarDtos) { psIds.add(ownerCarDto.getPsId()); } return psIds.toArray(new String[psIds.size()]); } /** * 请求数据处理 * * @param reqJson 请求数据对象 */ private void refreshReqJson(JSONObject reqJson) { if (!reqJson.containsKey("state")) { return; } if ("SH".equals(reqJson.getString("state"))) { reqJson.put("states", new String[]{"S", "H"}); reqJson.remove("state"); } } }