Commit c00beab4 by jianan

新单跟进70

parent 51f7e180
...@@ -83,7 +83,7 @@ public class PolicyFollowVO implements Serializable { ...@@ -83,7 +83,7 @@ public class PolicyFollowVO implements Serializable {
PolicyFollowUpdateDto policyFollowUpdateDto = new PolicyFollowUpdateDto(); PolicyFollowUpdateDto policyFollowUpdateDto = new PolicyFollowUpdateDto();
BeanUtils.copyProperties(policyFollow, policyFollowUpdateDto); BeanUtils.copyProperties(policyFollow, policyFollowUpdateDto);
// 转换 signerList 字段 // 转换 signerList 字段
if (policyFollow.getSignerList() != null && !policyFollow.getSignerList().isEmpty()) { if (policyFollow.getSignerList() != null) {
policyFollowUpdateDto.setSignerList(GSONUtil.fromJson(policyFollow.getSignerList(), new TypeToken<List<PolicySigner>>() { policyFollowUpdateDto.setSignerList(GSONUtil.fromJson(policyFollow.getSignerList(), new TypeToken<List<PolicySigner>>() {
}.getType())); }.getType()));
} }
......
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