|
|
@@ -1,66 +1,37 @@
|
|
|
-package com.java110.api.listener.inspectionPlanStaff;
|
|
|
+package com.java110.community.cmd.inspectionPlanStaff;
|
|
|
|
|
|
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.intf.community.IInspectionPlanStaffInnerServiceSMO;
|
|
|
+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.inspectionPlan.InspectionPlanStaffDto;
|
|
|
-import com.java110.core.event.service.api.ServiceDataFlowEvent;
|
|
|
-import com.java110.utils.constant.ServiceCodeInspectionPlanStaffConstant;
|
|
|
+import com.java110.intf.community.IInspectionPlanStaffInnerServiceSMO;
|
|
|
+import com.java110.utils.exception.CmdException;
|
|
|
import com.java110.utils.util.BeanConvertUtil;
|
|
|
import com.java110.vo.api.inspectionPlanStaff.ApiInspectionPlanStaffDataVo;
|
|
|
import com.java110.vo.api.inspectionPlanStaff.ApiInspectionPlanStaffVo;
|
|
|
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;
|
|
|
|
|
|
+@Java110Cmd(serviceCode = "inspectionPlanStaff.listInspectionPlanStaffs")
|
|
|
+public class ListInspectionPlanStaffsCmd extends Cmd {
|
|
|
|
|
|
-/**
|
|
|
- * 查询小区侦听类
|
|
|
- */
|
|
|
-@Java110Listener("listInspectionPlanStaffsListener")
|
|
|
-public class ListInspectionPlanStaffsListener extends AbstractServiceApiListener {
|
|
|
|
|
|
@Autowired
|
|
|
private IInspectionPlanStaffInnerServiceSMO inspectionPlanStaffInnerServiceSMOImpl;
|
|
|
|
|
|
@Override
|
|
|
- public String getServiceCode() {
|
|
|
- return ServiceCodeInspectionPlanStaffConstant.LIST_INSPECTIONPLANSTAFFS;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public HttpMethod getHttpMethod() {
|
|
|
- return HttpMethod.GET;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- @Override
|
|
|
- public int getOrder() {
|
|
|
- return DEFAULT_ORDER;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public IInspectionPlanStaffInnerServiceSMO getInspectionPlanStaffInnerServiceSMOImpl() {
|
|
|
- return inspectionPlanStaffInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setInspectionPlanStaffInnerServiceSMOImpl(IInspectionPlanStaffInnerServiceSMO inspectionPlanStaffInnerServiceSMOImpl) {
|
|
|
- this.inspectionPlanStaffInnerServiceSMOImpl = inspectionPlanStaffInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
- @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 {
|
|
|
|
|
|
InspectionPlanStaffDto inspectionPlanStaffDto = BeanConvertUtil.covertBean(reqJson, InspectionPlanStaffDto.class);
|
|
|
|
|
|
@@ -83,6 +54,5 @@ public class ListInspectionPlanStaffsListener extends AbstractServiceApiListener
|
|
|
ResponseEntity<String> responseEntity = new ResponseEntity<String>(JSONObject.toJSONString(apiInspectionPlanStaffVo), HttpStatus.OK);
|
|
|
|
|
|
context.setResponseEntity(responseEntity);
|
|
|
-
|
|
|
}
|
|
|
}
|