🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## **获取学生家庭接口信息 getFamilyUrl** **接口描述** * 根据学生id,获取学生家庭关系 **请求URL** * [xxx.com/xxx](http://xxx.com/xxx) **请求方式** * GET **请求参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | studentId | string | 学生id | **返回参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | id| string | id| | relationship| string | 学生与家长的关系| | UnionID| string | 家长id| | faceUrl| string | 头像url| **返回参数** ``` { "status": 0, "msg": "success", "data": [ { "id": "1", "relationship": "父亲", "familyID": "123", "faceUrl": "abc.jpg" } ] } ```