Commit 9722c268 by lzy

更新

parent 1514a33d
...@@ -23,5 +23,5 @@ public class PlatSpaceVO extends BaseIdDTO { ...@@ -23,5 +23,5 @@ public class PlatSpaceVO extends BaseIdDTO {
private String parentId; private String parentId;
@ApiModelProperty("子集") @ApiModelProperty("子集")
private List<PlatSpaceVO> child; private List<PlatSpaceVO> children;
} }
...@@ -137,7 +137,7 @@ public class PlatSpaceServiceImpl extends ServiceImpl<PlatSpaceMapper, PlatSpace ...@@ -137,7 +137,7 @@ public class PlatSpaceServiceImpl extends ServiceImpl<PlatSpaceMapper, PlatSpace
this.child(dto,map); this.child(dto,map);
listChild.add(dto); listChild.add(dto);
} }
vo.setChild(listChild); vo.setChildren(listChild);
return vo; return vo;
} }
......
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 sign in to comment