|
@@ -78,7 +78,10 @@ public class FamilyMemberController extends AppBaseController {
|
|
|
@ApiOperation("家族树 列表")
|
|
|
@GetMapping("/treeList")
|
|
|
public AjaxResult treeList(Long familyId) {
|
|
|
- return null;
|
|
|
+ AppMemberVo memberVo = new AppMemberVo();
|
|
|
+ memberVo.setFamilyId(familyId);
|
|
|
+ List<AppMemberVo> list = memberService.selectFamilyTree(memberVo);
|
|
|
+ return AjaxResult.success(list);
|
|
|
}
|
|
|
|
|
|
@ApiOperation("添加/修改成员-家族树")
|