|
|
@@ -1,62 +1,32 @@
|
|
|
-package com.java110.api.listener.auditOrder;
|
|
|
+package com.java110.common.cmd.auditUser;
|
|
|
|
|
|
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.common.IComplaintUserInnerServiceSMO;
|
|
|
+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.entity.audit.AuditUser;
|
|
|
-import com.java110.core.event.service.api.ServiceDataFlowEvent;
|
|
|
-import com.java110.utils.constant.ServiceCodeAuditUserConstant;
|
|
|
+import com.java110.intf.common.IComplaintUserInnerServiceSMO;
|
|
|
+import com.java110.utils.exception.CmdException;
|
|
|
import com.java110.utils.util.Assert;
|
|
|
import com.java110.utils.util.BeanConvertUtil;
|
|
|
import com.java110.vo.api.complaint.ApiComplaintDataVo;
|
|
|
import com.java110.vo.api.complaint.ApiComplaintVo;
|
|
|
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("listAuditComplaintsListener")
|
|
|
-public class ListAuditComplaintsListener extends AbstractServiceApiListener {
|
|
|
+@Java110Cmd(serviceCode = "auditUser.listAuditComplaints")
|
|
|
+public class ListAuditComplaintsCmd extends Cmd {
|
|
|
|
|
|
@Autowired
|
|
|
private IComplaintUserInnerServiceSMO complaintUserInnerServiceSMOImpl;
|
|
|
|
|
|
@Override
|
|
|
- public String getServiceCode() {
|
|
|
- return ServiceCodeAuditUserConstant.LIST_AUDIT_COMPLAINTS;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public HttpMethod getHttpMethod() {
|
|
|
- return HttpMethod.GET;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- @Override
|
|
|
- public int getOrder() {
|
|
|
- return DEFAULT_ORDER;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public IComplaintUserInnerServiceSMO getComplaintUserInnerServiceSMOImpl() {
|
|
|
- return complaintUserInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setComplaintUserInnerServiceSMOImpl(IComplaintUserInnerServiceSMO complaintUserInnerServiceSMOImpl) {
|
|
|
- this.complaintUserInnerServiceSMOImpl = complaintUserInnerServiceSMOImpl;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- protected void validate(ServiceDataFlowEvent event, JSONObject reqJson) {
|
|
|
+ public void validate(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException {
|
|
|
Assert.hasKeyAndValue(reqJson, "storeId", "必填,请填写商户ID");
|
|
|
Assert.hasKeyAndValue(reqJson, "userId", "必填,请填写用户ID");
|
|
|
Assert.hasKeyAndValue(reqJson, "communityId", "必填,请填写小区ID");
|
|
|
@@ -67,15 +37,14 @@ public class ListAuditComplaintsListener extends AbstractServiceApiListener {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- protected void doSoService(ServiceDataFlowEvent event, DataFlowContext context, JSONObject reqJson) {
|
|
|
-
|
|
|
+ public void doCmd(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException {
|
|
|
AuditUser auditUser = new AuditUser();
|
|
|
auditUser.setUserId(reqJson.getString("userId"));
|
|
|
auditUser.setStoreId(reqJson.getString("storeId"));
|
|
|
auditUser.setCommunityId(reqJson.getString("communityId"));
|
|
|
auditUser.setPage(reqJson.getInteger("page"));
|
|
|
auditUser.setRow(reqJson.getInteger("row"));
|
|
|
-
|
|
|
+
|
|
|
|
|
|
long count = complaintUserInnerServiceSMOImpl.getUserTaskCount(auditUser);
|
|
|
|
|
|
@@ -96,6 +65,5 @@ public class ListAuditComplaintsListener extends AbstractServiceApiListener {
|
|
|
ResponseEntity<String> responseEntity = new ResponseEntity<String>(JSONObject.toJSONString(apiComplaintVo), HttpStatus.OK);
|
|
|
|
|
|
context.setResponseEntity(responseEntity);
|
|
|
-
|
|
|
}
|
|
|
}
|