Commit 298e088f authored by 廖旭伟's avatar 廖旭伟

添加查询已受理事项列表接口

parent 5b10fb8a
......@@ -6,6 +6,7 @@ import com.mortals.framework.service.ICacheService;
import com.mortals.framework.util.ThreadPool;
import com.mortals.xhx.busiz.req.accept.ComplexAcceptReq;
import com.mortals.xhx.common.utils.AbstractThread;
import com.mortals.xhx.protocol.complex.matter.model.req.FindHandlingReq;
import com.mortals.xhx.protocol.complex.matter.model.req.ImplementationReq;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
......@@ -80,7 +81,7 @@ public class SendThread extends AbstractThread {
ImplementAcceptSendTask acceptSendTask = new ImplementAcceptSendTask(deviceCode, complexAcceptReq);
ThreadPool.getInstance().execute(acceptSendTask);
} else if ("handling/findPageWithPermission".equals(urlPath)) {
ImplementationReq implementationReq = JSONObject.parseObject(reqStr, ImplementationReq.class);
FindHandlingReq implementationReq = JSONObject.parseObject(reqStr, FindHandlingReq.class);
FindHandlingSendTask findHandlingSendTask = new FindHandlingSendTask(deviceCode, implementationReq);
ThreadPool.getInstance().execute(findHandlingSendTask);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment