Commit 6c1b42db authored by 赵啸非's avatar 赵啸非

修改配置文件

parent be0040d5
...@@ -91,7 +91,6 @@ public class WXHXPJYXKFRBG extends ComplexWindowAbstract { ...@@ -91,7 +91,6 @@ public class WXHXPJYXKFRBG extends ComplexWindowAbstract {
MatterRespInfo matterRespInfo = matterListInfos.get(0); MatterRespInfo matterRespInfo = matterListInfos.get(0);
String eventId = matterRespInfo.getEventId(); String eventId = matterRespInfo.getEventId();
String eventObjectType = matterRespInfo.getEventObjectType(); String eventObjectType = matterRespInfo.getEventObjectType();
AcceptReq acceptReq = new AcceptReq(); AcceptReq acceptReq = new AcceptReq();
//查询办理事项情形 //查询办理事项情形
...@@ -101,8 +100,6 @@ public class WXHXPJYXKFRBG extends ComplexWindowAbstract { ...@@ -101,8 +100,6 @@ public class WXHXPJYXKFRBG extends ComplexWindowAbstract {
ChildrenItem childrenItem = matterWorkInfo.getChildren().stream().filter(f -> "变更法人".equals(f.getLabel())).findFirst().orElseGet(() -> null); ChildrenItem childrenItem = matterWorkInfo.getChildren().stream().filter(f -> "变更法人".equals(f.getLabel())).findFirst().orElseGet(() -> null);
if (!ObjectUtils.isEmpty(childrenItem)) { if (!ObjectUtils.isEmpty(childrenItem)) {
//构建受理材料附件 //构建受理材料附件
List<MaterialsItem> materialsItemList = childrenItem.getMaterials().stream().map(item -> { List<MaterialsItem> materialsItemList = childrenItem.getMaterials().stream().map(item -> {
MaterialsItem materialsItem = new MaterialsItem(); MaterialsItem materialsItem = new MaterialsItem();
......
package com.lilosoft.complex.matter.model.req; package com.lilosoft.complex.matter.model.req;
import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map;
import lombok.Data; import lombok.Data;
@Data @Data
...@@ -12,7 +15,7 @@ public class AcceptReq{ ...@@ -12,7 +15,7 @@ public class AcceptReq{
private String isStaging; private String isStaging;
private ApplicantPersonal applicantPersonal; private ApplicantPersonal applicantPersonal;
private List<HandlingsItem> handlings; private List<HandlingsItem> handlings;
private InfoMap infoMap; private Map<String,String> infoMap=new HashMap<>();
private LegalProxy legalProxy; private LegalProxy legalProxy;
private Object thingId; private Object thingId;
} }
\ No newline at end of file
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