{"info":{"_postman_id":"3047d6c7-caa9-430c-bdf8-491c554ffa3f","name":"BDAS-API","description":"<html><head></head><body><p>DBAS后端api\n请求参数支持form与json\n返回基本格式为</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,//正常返回为0或者200\n    \"data\":{},//数据内容\n    \"msg\": \"\"\n}\n</code></pre><p>用户的几种基本状态 <code>status</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>// active 激活用户\n// inactive 未激活用户\n// authenticating 认证中用户\n// suspend 被封禁用户\n\n</code></pre></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"8122584","collectionId":"3047d6c7-caa9-430c-bdf8-491c554ffa3f","publishedId":"TW6tNAck","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"8BA8F8","highlight":"EF5B25"},"publishDate":"2021-01-25T07:53:54.000Z"},"item":[{"name":"心跳，判断服务器时候正常","id":"7e9ef00f-d3cf-44e9-baac-69bca8cba34e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"http://bdas.xiaosiro.cn/api/v1/ping","description":"<p>测试后端是否正常<br />请求参数：无<br />返回</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>//正常返回\n{\n    \"code\": 0,\n    \"msg\": \"Pong\"\n}\n</code></pre>","urlObject":{"protocol":"http","path":["api","v1","ping"],"host":["bdas","xiaosiro","cn"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e9ef00f-d3cf-44e9-baac-69bca8cba34e"},{"name":"me 获取当前登陆的用户的类型","id":"b1d1df13-0e31-4aea-b005-2d3dcc7631a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:3000/api/v1/me","description":"<p>获取当前登陆的用户的类型</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": \"user\",\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","me"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1d1df13-0e31-4aea-b005-2d3dcc7631a0"},{"name":"user/register 普通用户注册","id":"bc18c871-2d38-416e-b98e-587ff84904da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"nickname","value":"一号普通用户","type":"text"},{"key":"user_name","value":"杨帆","type":"text"},{"key":"password","value":"123456","type":"text"},{"key":"password_confirm","value":"123456","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/user/register","description":"<p>游客进行用户注册<br /><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>nickname</td>\n<td>string</td>\n<td>是</td>\n<td>用户昵称，长度2**-**30</td>\n</tr>\n<tr>\n<td>user_name</td>\n<td>string</td>\n<td>是</td>\n<td>用户进行登录使用的账号，长度5**-**30，数字字母</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string</td>\n<td>是</td>\n<td>密码，长度8**-**40</td>\n</tr>\n<tr>\n<td>password_confirm</td>\n<td>string</td>\n<td>是</td>\n<td>确认密码（应与密码一致）</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 40001,\n    \"msg\": \"密码校验不够长\",\n    \"error\": \"xxxxxx详细描述xxxxx\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 3,\n        \"user_name\": \"yf123456\",\n        \"nickname\": \"一号普通用户\",\n        \"status\": \"inactive\",// 账号状态 ， active 激活用户inactive 未激活用户 suspend 被封禁用户\n        \"card_code\": \"\",//身份证号\n        \"created_at\": 1611562144 //世间戳\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","user","register"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc18c871-2d38-416e-b98e-587ff84904da"},{"name":"login 登陆","id":"6ef6e2f2-454b-4f83-a972-431fd57e8f17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"u_type","value":"university","description":"<p>admin，university，user</p>\n","type":"text"},{"key":"university_name","value":"宇宙第一大学","type":"text"},{"key":"user_name","value":"jxufe123","description":"<p>jxufe123，zlh123456，yf123456</p>\n","type":"text"},{"key":"password","value":"12345678","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/login","description":"<p>进行用户登入</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>u_type</td>\n<td>string</td>\n<td>是</td>\n<td>用户类型，包括 user(普通用户) admin(管理员用户) university(学校用户)</td>\n</tr>\n<tr>\n<td>university_name</td>\n<td>string</td>\n<td>否</td>\n<td>学校名称，非学校用户可不填</td>\n</tr>\n<tr>\n<td>user_name</td>\n<td>string</td>\n<td>是</td>\n<td>账号</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string</td>\n<td>是</td>\n<td>密码</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 40001,\n    \"msg\": \"账号或密码错误\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>// 返回当前登入用户的基本信息\n{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 3,\n        \"user_name\": \"yf123456\",\n        \"nickname\": \"一号普通用户\",\n        \"status\": \"inactive\",\n        \"card_code\": \"\",\n        \"created_at\": 1611562145\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","login"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"6ef6e2f2-454b-4f83-a972-431fd57e8f17"},{"name":"user/me 获取普通用户信息","id":"cc0d9a16-b936-462b-af5d-17f73f8335cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:3000/api/v1/user/me","description":"<p>（普通用户接口）：获取个人信息</p>\n<p><strong>参数</strong></p>\n<p>无                                                      |</p>\n<p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"未登入\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 3,\n        \"user_name\": \"yf123456\",\n        \"nickname\": \"一号普通用户\",\n        \"status\": \"inactive\",\n        \"card_code\": \"\",\n        \"created_at\": 1611562145\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","user","me"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc0d9a16-b936-462b-af5d-17f73f8335cb"},{"name":"modify/user 普通用户修改自己","id":"63d207f4-a2b7-4a3e-a0d4-9790019374e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"nickname","value":"我是杨帆阿","type":"text"},{"key":"old_password","value":"12345678","type":"text"},{"key":"new_password","value":"12345678","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/user/modify/user","description":"<p>（普通用户接口）：修改个人信息</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>nickname</td>\n<td>string</td>\n<td>否</td>\n<td>用户昵称</td>\n</tr>\n<tr>\n<td>old_password</td>\n<td>string</td>\n<td>否</td>\n<td>老密码</td>\n</tr>\n<tr>\n<td>new_password</td>\n<td>string</td>\n<td>否</td>\n<td>新密码，长度8-40</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 404,//状态码非0\n    \"msg\": \"未登入\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 3,\n        \"user_name\": \"yf123456\",\n        \"nickname\": \"我是杨帆阿\",\n        \"status\": \"inactive\",\n        \"card_code\": \"\",\n        \"created_at\": 1611562145\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","user","modify","user"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"63d207f4-a2b7-4a3e-a0d4-9790019374e7"},{"name":"user/logout  普通用户退出登陆","id":"5c1c4f27-88a2-40b6-99d4-04f26a4eb1c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://127.0.0.1:3000/api/v1/user/logout","description":"<p>（普通用户接口）：普通用户登出</p>\n<p><strong>参数</strong></p>\n<p>无</p>\n<p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 404,//状态码非0\n    \"msg\": \"未登入\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"msg\": \"登出成功\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","user","logout"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"5c1c4f27-88a2-40b6-99d4-04f26a4eb1c2"},{"name":"user/identity/auth  普通用户进行身份认证","id":"46ace72a-fa8b-4a13-8942-4512eefb87ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"杨帆小帅哥","type":"text"},{"key":"card_code","value":"xxxxxx","type":"text"},{"key":"front_face_img","value":"xxx-xxx-xx-xx","type":"text"},{"key":"back_face_img","value":"yyy-yyy-y-y-y-y","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/user/identity/auth","description":"<p>(普通用户接口）：身份认证</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>http://127.0.0.1:3000/api/v1/user/identity/auth\n</code></pre><p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>是</td>\n<td>真实名称</td>\n</tr>\n<tr>\n<td>card_code</td>\n<td>string</td>\n<td>是</td>\n<td>身份证号</td>\n</tr>\n<tr>\n<td>front_face_img</td>\n<td>string</td>\n<td>是</td>\n<td>手持身份证正面照图片链接(只需要上传后返回的文件名，下同)</td>\n</tr>\n<tr>\n<td>back_face_img</td>\n<td>string</td>\n<td>是</td>\n<td>手持身份证背面照图片链接</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"msg\": \"提交成功，请等待审核\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","user","identity","auth"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"46ace72a-fa8b-4a13-8942-4512eefb87ae"},{"name":"user/certification/list 获取学历证书列表","id":"0909df83-eec5-4e57-80a2-d98be4194c52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"http://127.0.0.1:3000/api/v1/user/certification/list","description":"<p>（用户接口）：学生查询自己身份证号所认证的全部信息</p>\n<p><strong>参数</strong></p>\n<p>无</p>\n<p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"items\": [\n            {\n                \"id\": 1,\n                \"created_at\": 1614347472,\n                \"card_code\": \"3624**********7111\",\n                \"address\": \"0x3e794432168f989896e429475a528c57894017089539be2c8e7cced93e481a4e\",\n                \"level\": \"本科\",\n                \"professional\": \"软件工程\"\n            }\n        ],\n        \"total\": 1\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","user","certification","list"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"0909df83-eec5-4e57-80a2-d98be4194c52"},{"name":"user/certification/getInfo 通过证书编号获得证书链接","id":"6a40332e-fde4-4de3-b47b-02827637cef6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:3000/api/v1/user/certification/getInfo?id=1","description":"<p>（用户接口）：学生根据认证信息的id获得证书链接</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>是</td>\n<td>认证信息的id</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": \"13c00753-b46d-43c7-8103-c51b0e18497c.jpg\",\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","user","certification","getInfo"],"host":["127","0","0","1"],"query":[{"key":"id","value":"1"}],"variable":[]}},"response":[],"_postman_id":"6a40332e-fde4-4de3-b47b-02827637cef6"},{"name":"user/certification/file/:xxx.jpg  下载（获得）证书文件","id":"8ad97a82-d11d-43b2-b6d3-11cc4e7d1d0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"http://127.0.0.1:3000/api/v1/user/certification/file/13c00753-b46d-43c7-8103-c51b0e18497c.jpg","description":"<p>（用户接口）：学生下载认证文件</p>\n<p><strong>参数</strong>  </p>\n<p>后面跟着文件名</p>\n<p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>具体文件\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","user","certification","file","13c00753-b46d-43c7-8103-c51b0e18497c.jpg"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ad97a82-d11d-43b2-b6d3-11cc4e7d1d0f"},{"name":"university/register  学校用户注册","id":"a0b1df9f-7819-418c-8141-242e4e2cabec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"university_name","value":"江西财经大学","type":"text"},{"key":"nickname","value":"软件学院管理员1","type":"text"},{"key":"user_name","value":"jxufe123","type":"text"},{"key":"password","value":"12345678","type":"text"},{"key":"password_confirm","value":"12345678","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/university/register","description":"<p>（管理员用户接口）：管理员用户注册学校账号</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>university_name</td>\n<td>string</td>\n<td>是</td>\n<td>学校名称</td>\n</tr>\n<tr>\n<td>nickname</td>\n<td>string</td>\n<td>是</td>\n<td>用户昵称</td>\n</tr>\n<tr>\n<td>user_name</td>\n<td>string</td>\n<td>是</td>\n<td>用户进行登录使用的账号，长度5**-**30，数字字母</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string</td>\n<td>是</td>\n<td>密码</td>\n</tr>\n<tr>\n<td>password_confirm</td>\n<td>string</td>\n<td>是</td>\n<td>确认密码</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 401,//状态码非0\n    \"msg\": \"未登入\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 1,\n        \"university_name\": \"江西财经大学\",\n        \"user_name\": \"jxufe123\",\n        \"nickname\": \"软件学院管理员1\",\n        \"status\": \"active\",\n        \"created_at\": 1611583969\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","university","register"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0b1df9f-7819-418c-8141-242e4e2cabec"},{"name":"university/me  获取学校用户信息","id":"b3ec0441-68ec-4dae-80e5-d02b3d699259","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:3000/api/v1/university/me","description":"<p>（学校用户接口）：学校用户获取个人信息</p>\n<p><strong>参数</strong></p>\n<p>无                                                </p>\n<p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 401,//状态码非0\n    \"msg\": \"未登入\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 1,\n        \"university_name\": \"江西财经大学\",\n        \"user_name\": \"jxufe123\",\n        \"nickname\": \"管理员233\",\n        \"status\": \"active\",\n        \"created_at\": 1611583969\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","university","me"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"b3ec0441-68ec-4dae-80e5-d02b3d699259"},{"name":"university/modify/university 学校用户修改自己","id":"eaf30805-da26-4921-908a-4fd1cfe82caa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"nickname","value":"管理员244","type":"text"},{"key":"old_password","value":"12345678","type":"text"},{"key":"new_password","value":"12345678","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/university/modify/university","description":"<p>（学校用户接口）：学校用户修改学校用户个人信息</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>nickname</td>\n<td>string</td>\n<td>否</td>\n<td>用户昵称</td>\n</tr>\n<tr>\n<td>old_password</td>\n<td>string</td>\n<td>否</td>\n<td>老密码</td>\n</tr>\n<tr>\n<td>new_password</td>\n<td>string</td>\n<td>否</td>\n<td>新密码</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 401,//状态码非0\n    \"msg\": \"未登入\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 1,\n        \"university_name\": \"江西财经大学\",\n        \"user_name\": \"jxufe123\",\n        \"nickname\": \"管理员244\",\n        \"status\": \"active\",\n        \"created_at\": 1611583969\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","university","modify","university"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"eaf30805-da26-4921-908a-4fd1cfe82caa"},{"name":"university/logout  学校用户退出登陆","id":"f9384c00-7971-4af7-a0f0-214e5e1e8b85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://127.0.0.1:3000/api/v1/university/logout","description":"<p>（学校用户接口）：学校用户登出</p>\n<p><strong>参数</strong></p>\n<p>无</p>\n<p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 401,//状态码非0\n    \"msg\": \"未登入\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"msg\": \"登出成功\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","university","logout"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9384c00-7971-4af7-a0f0-214e5e1e8b85"},{"name":"university/studentAuth 学校用户发起学生学历认证","id":"9048a2e1-a9f4-4d0d-9f9b-13977f840e1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"洋房魈咯咯","type":"text"},{"key":"sex","value":"1","type":"text"},{"key":"ethnic","value":"小日本","type":"text"},{"key":"birthday","value":"1614082918","type":"text"},{"key":"card_code","value":"362421200012057111","type":"text"},{"key":"education_category","value":"普通","type":"text"},{"key":"level","value":"本科","type":"text"},{"key":"university","value":"江西财经大学","type":"text"},{"key":"professional","value":"软件工程","type":"text"},{"key":"learning_format","value":"普通全日制","type":"text"},{"key":"educational_system","value":"四年","type":"text"},{"key":"admission_date","value":"2018年09月09日","type":"text"},{"key":"graduation_date","value":"2022年06月01日","type":"text"},{"key":"status","value":"毕业","type":"text"},{"key":"student_avatar","value":"121c2b4d-81fb-462a-8d9e-c87b01be995a.jpg","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/university/studentAuth","description":"<p>(学校接口）：认证学生信息</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>是</td>\n<td>学生姓名</td>\n</tr>\n<tr>\n<td>sex</td>\n<td>int</td>\n<td>是</td>\n<td>用户性别 1男 2女</td>\n</tr>\n<tr>\n<td>ethnic</td>\n<td>string</td>\n<td>是</td>\n<td>民族</td>\n</tr>\n<tr>\n<td>birthday</td>\n<td>int 世间戳</td>\n<td>是</td>\n<td>生日</td>\n</tr>\n<tr>\n<td>card_code</td>\n<td>string</td>\n<td>是</td>\n<td>身份证号</td>\n</tr>\n<tr>\n<td>education_category</td>\n<td>string</td>\n<td>是</td>\n<td>学历类别</td>\n</tr>\n<tr>\n<td>level</td>\n<td>string</td>\n<td>是</td>\n<td>层次</td>\n</tr>\n<tr>\n<td>university</td>\n<td>string</td>\n<td>是</td>\n<td>学校</td>\n</tr>\n<tr>\n<td>professional</td>\n<td>string</td>\n<td>是</td>\n<td>专业</td>\n</tr>\n<tr>\n<td>learning_format</td>\n<td>string</td>\n<td>是</td>\n<td>学习形式</td>\n</tr>\n<tr>\n<td>educational_system</td>\n<td>string</td>\n<td>是</td>\n<td>学制</td>\n</tr>\n<tr>\n<td>admission_date</td>\n<td>string</td>\n<td>是</td>\n<td>入学日期</td>\n</tr>\n<tr>\n<td>graduation_date</td>\n<td>string</td>\n<td>是</td>\n<td>毕业日期</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>是</td>\n<td>状态（是否结业）</td>\n</tr>\n<tr>\n<td>student_avatar</td>\n<td>string</td>\n<td>是</td>\n<td>照片（上传后回传的文件名)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"msg\": \"提交成功，请等待审核\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","university","studentAuth"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"9048a2e1-a9f4-4d0d-9f9b-13977f840e1c"},{"name":"university/studentAuth/list 学校用户获取以认证的信息","id":"32575728-a428-4c51-aed7-ed36520327f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"limit","value":"","type":"text"},{"key":"offset","value":"","type":"text"},{"key":"time_limit","value":"","type":"text"},{"key":"name","value":"","type":"text"},{"key":"status","value":"","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/university/studentAuth/list","description":"<p>(学校接口）: 获取已提交的学历请求列表（支持查询）</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>limit</td>\n<td>string</td>\n<td>否</td>\n<td>分页</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>int</td>\n<td>否</td>\n<td>分页</td>\n</tr>\n<tr>\n<td>time_limit</td>\n<td>int64</td>\n<td>否</td>\n<td>时间戳，会控制返回值创建时间在当前时间戳的月份</td>\n</tr>\n<tr>\n<td>name</td>\n<td>int</td>\n<td>否</td>\n<td>学生姓名，支持模糊查询</td>\n</tr>\n<tr>\n<td>status</td>\n<td>int</td>\n<td>否</td>\n<td>状态，1： 等待审核，2：证书生成中，3：生成失败，4：已通过，5：审核不通过</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"items\": [\n            {\n                \"id\": 2,\n                \"created_at\": 1615791982,\n                \"university_name\": \"江西财经大学\",\n                \"university_user_id\": 1,\n                \"message_id\": 3,\n                \"states\": 3,\n                \"student_name\": \"\"\n            },\n            {\n                \"id\": 3,\n                \"created_at\": 1615792100,\n                \"university_name\": \"江西财经大学\",\n                \"university_user_id\": 1,\n                \"message_id\": 3,\n                \"states\": 1,\n                \"student_name\": \"\"\n            }\n        ],\n        \"total\": 2\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","university","studentAuth","list"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"32575728-a428-4c51-aed7-ed36520327f8"},{"name":"university/studentAuth/list/msg  学校通过msg_id获取以前申请的消息","id":"7ecee6ec-6130-42bb-85ac-59f3d3c4abba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"msg_id","value":"6","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/university/studentAuth/list/msg","description":"<p>(学校接口）: 获取已提交的学历请求列表中具体的消息详细信息</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>msg_id</td>\n<td>int</td>\n<td>是</td>\n<td>消息id(message_id)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 3,\n        \"created_at\": 1614083447,\n        \"msg_type\": \"educational qualifications\",\n        \"description\": \"江西财经大学 请求学生认证\",\n        \"student_ac_msg\": {\n            // 这里面的是无用消息\n            \"id\": 0,\n            \"created_at\": -62135596800,\n            \"user_id\": 0,\n            \"name\": \"\",\n            \"card_code\": \"\",\n            \"front_face_img\": \"\",\n            \"back_face_img\": \"\"\n        },\n        \"educational_ac_msg\": {\n            \"id\": 1,\n            \"created_at\": 1614083447,\n            \"name\": \"洋房魈咯咯\",\n            \"sex\": 1,\n            \"ethnic\": \"小日本\",\n            \"birthday\": 1614082918,\n            \"card_code\": \"362421200012057111\",\n            \"education_category\": \"普通\",\n            \"level\": \"本科\",\n            \"university\": \"江西财经大学\",\n            \"professional\": \"软件工程\",\n            \"learning_format\": \"普通全日制\",\n            \"educational_system\": \"四年\",\n            \"admission_date\": \"2018年09月09日\",\n            \"graduation_date\": \"2022年06月01日\",\n            \"status\": \"毕业\",\n            \"student_avatar\": \"121c2b4d-81fb-462a-8d9e-c87b01be995a.jpg\"\n        }\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","university","studentAuth","list","msg"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"7ecee6ec-6130-42bb-85ac-59f3d3c4abba"},{"name":"admin/me 管理员信息","id":"78969fbf-3621-4cd0-a04d-533efc8f2caa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:3000/api/v1/admin/me","description":"<p>（管理员用户接口）：管理员用户登出</p>\n<p><strong>参数</strong></p>\n<p>无</p>\n<p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 401,//状态码非0\n    \"msg\": \"未登入\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 2,\n        \"user_name\": \"zlh123456\",\n        \"nickname\": \"纸老虎\",\n        \"status\": \"active\",\n        \"created_at\": 1611583620\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","admin","me"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"78969fbf-3621-4cd0-a04d-533efc8f2caa"},{"name":"admin/modify/admin  管理员修改信息","id":"7ced795e-24cb-4c8c-be6e-6cd62acf272d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"nickname","value":"可爱的纸老虎","type":"text"},{"key":"old_password","value":"12345678","type":"text"},{"key":"new_password","value":"12345678","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/admin/modify/admin","description":"<p>（管理员用户接口）：管理员用户修改个人信息</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>nickname</td>\n<td>string</td>\n<td>否</td>\n<td>用户昵称</td>\n</tr>\n<tr>\n<td>old_password</td>\n<td>string</td>\n<td>否</td>\n<td>密码</td>\n</tr>\n<tr>\n<td>new_password</td>\n<td>string</td>\n<td>否</td>\n<td>确认密码</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 401,//状态码非0\n    \"msg\": \"未登入\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 2,\n        \"user_name\": \"zlh123456\",\n        \"nickname\": \"可爱的纸老虎\",\n        \"status\": \"active\",\n        \"created_at\": 1611583620\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","admin","modify","admin"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"7ced795e-24cb-4c8c-be6e-6cd62acf272d"},{"name":"admin/modify/user","id":"e7782bc0-d8c9-4348-b561-27a8f8012d60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"3","type":"text"},{"key":"nickname","value":"杨帆小老板","type":"text"},{"key":"new_password","value":"","type":"text"},{"key":"status","value":"","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/admin/modify/user","description":"<p>（管理员用户接口）：管理员用户修改普通用户个人信息</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>是</td>\n<td>用户id</td>\n</tr>\n<tr>\n<td>nickname</td>\n<td>string</td>\n<td>否</td>\n<td>用户昵称</td>\n</tr>\n<tr>\n<td>new_password</td>\n<td>string</td>\n<td>否</td>\n<td>密码</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>否</td>\n<td>状态（active 激活用户inactive 未激活用户 suspend 被封禁用户）</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 401,//状态码非0\n    \"msg\": \"未登入\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 3,\n        \"user_name\": \"yf123456\",\n        \"nickname\": \"杨帆小老板\",\n        \"status\": \"inactive\",\n        \"card_code\": \"\",\n        \"created_at\": 1611562145\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","admin","modify","user"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7782bc0-d8c9-4348-b561-27a8f8012d60"},{"name":"admin/modify/university","id":"8c8ef210-0cbc-4732-af19-250006a06f3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"1","type":"text"},{"key":"nickname","value":"管理员233","type":"text"},{"key":"new_password","value":"","type":"text"},{"key":"status","value":"","type":"text"},{"key":"university_name","value":"","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/admin/modify/university","description":"<p>（管理员用户接口）：管理员用户修改学校用户个人信息</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>int</td>\n<td>是</td>\n<td>用户id</td>\n</tr>\n<tr>\n<td>nickname</td>\n<td>string</td>\n<td>否</td>\n<td>用户昵称</td>\n</tr>\n<tr>\n<td>new_password</td>\n<td>string</td>\n<td>否</td>\n<td>密码</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>否</td>\n<td>状态（active 激活用户inactive 未激活用户 suspend 被封禁用户）</td>\n</tr>\n<tr>\n<td>university_name</td>\n<td>string</td>\n<td>否</td>\n<td>学校名称</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 401,//状态码非0\n    \"msg\": \"未登入\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 1,\n        \"university_name\": \"江西财经大学\",\n        \"user_name\": \"jxufe123\",\n        \"nickname\": \"管理员233\",\n        \"status\": \"active\",\n        \"created_at\": 1611583969\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","admin","modify","university"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"8c8ef210-0cbc-4732-af19-250006a06f3f"},{"name":"admin/logout","id":"0dd1e494-d081-484b-a1e9-a6ccf4040a44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://127.0.0.1:3000/api/v1/admin/logout","description":"<p>（管理员用户接口）：管理员用户登出</p>\n<p><strong>参数</strong></p>\n<p>无                                             |</p>\n<p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 401,//状态码非0\n    \"msg\": \"未登入\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"msg\": \"登出成功\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","admin","logout"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"0dd1e494-d081-484b-a1e9-a6ccf4040a44"},{"name":"admin/msg/list  管理员获取需要处理的消息列表","id":"65871829-0652-470c-b06e-3e8888ae60d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"m_type","value":"educational qualifications","description":"<p>educational qualifications，student accreditation</p>\n","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/admin/msg/list","description":"<p>(管理员接口）：获取消息通知列表（支持分页）</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>limit</td>\n<td>int</td>\n<td>否</td>\n<td>每页的数量，默认12</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>int</td>\n<td>否</td>\n<td>跳过多少，默认0</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"items\": [\n            {\n                \"id\": 1,\n                \"created_at\": 1610892999,\n                \"msg_type\": \"sdada\",\n                \"description\": \"\",\n                \"StudentAcMsg\": {\n                    \"id\": 1,\n                    \"created_at\": 1610892999,\n                    \"user_id\": 123,\n                    \"name\": \"sfdsdf\",\n                    \"card_code\": \"\",\n                    \"front_face_img\": \"\",\n                    \"back_face_img\": \"\"\n                },\n                \"EducationalAcMsg\": {\n                    \"id\": 0,\n                    \"created_at\": -62135596800,\n                    \"name\": \"\",\n                    \"sex\": 0,\n                    \"ethnic\": \"\",\n                    \"birthday\": -62135596800,\n                    \"card_code\": \"\",\n                    \"education_category\": \"\",\n                    \"level\": \"\",\n                    \"university\": \"\",\n                    \"professional\": \"\",\n                    \"learning_format\": \"\",\n                    \"educational_system\": \"\",\n                    \"admission_date\": \"\",\n                    \"graduation_date\": \"\",\n                    \"status\": \"\",\n                    \"student_avatar\": \"\"\n                }\n            },\n            {\n                \"id\": 2,\n                \"created_at\": 1611931941,\n                \"msg_type\": \"student accreditation\",\n                \"description\": \"3 用户请求生份认证\",\n                \"StudentAcMsg\": {\n                    \"id\": 2,\n                    \"created_at\": 1611931941,\n                    \"user_id\": 3,\n                    \"name\": \"杨帆小帅哥\",\n                    \"card_code\": \"xxxxxx\",\n                    \"front_face_img\": \"xxx-xxx-xx-xx\",\n                    \"back_face_img\": \"yyy-yyy-y-y-y-y\"\n                },\n                \"EducationalAcMsg\": {\n                    \"id\": 0,\n                    \"created_at\": -62135596800,\n                    \"name\": \"\",\n                    \"sex\": 0,\n                    \"ethnic\": \"\",\n                    \"birthday\": -62135596800,\n                    \"card_code\": \"\",\n                    \"education_category\": \"\",\n                    \"level\": \"\",\n                    \"university\": \"\",\n                    \"professional\": \"\",\n                    \"learning_format\": \"\",\n                    \"educational_system\": \"\",\n                    \"admission_date\": \"\",\n                    \"graduation_date\": \"\",\n                    \"status\": \"\",\n                    \"student_avatar\": \"\"\n                }\n            }\n        ],\n        \"total\": 2\n    },\n    \"msg\": \"\"\n}\n</code></pre><p>各字段含义</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>// Message  各种需要管理员进行处理的通知\ntype Message struct {\n    ID               uint             `json:\"id\"`\n    CreatedAt        int64            `json:\"created_at\"`\n     // 两种通知 分别为普通用户进行身份认证，学校用户进行学历上链\n     // student accreditation 学生认证请求\n    // educational qualifications 学历认证请求\n    MsgType          string           `json:\"msg_type\"`\n    Description      string           `json:\"description\"`\n    // 不同类型对应的结构体，\n    StudentAcMsg     StudentAcMsg     `json:\"student_ac_msg\"`\n    EducationalAcMsg EducationalAcMsg `json:\"educational_ac_msg\"`\n}\n\ntype StudentAcMsg struct {\n    ID           uint   `json:\"id\"`\n    CreatedAt    int64  `json:\"created_at\"`\n    UserId       uint   `json:\"user_id\"`\n    Name         string `json:\"name\"`\n    CardCode     string `json:\"card_code\"`\n    FrontFaceImg string `json:\"front_face_img\"`\n    BackFaceImg  string `json:\"back_face_img\"`\n}\n\ntype EducationalAcMsg struct {\n    ID                uint   `json:\"id\"`\n    CreatedAt         int64  `json:\"created_at\"`\n    Name              string `json:\"name\"`\n    Sex               uint   `json:\"sex\"`                // 0 男 1女\n    Ethnic            string `json:\"ethnic\"`             // 民族\n    Birthday          int64  `json:\"birthday\"`           // 生日\n    CardCode          string `json:\"card_code\"`          // 身份证号\n    EducationCategory string `json:\"education_category\"` // 学历类别\n    Level             string `json:\"level\"`              // 层次\n    University        string `json:\"university\"`         // 学校\n    Professional      string `json:\"professional\"`       // 专业\n    LearningFormat    string `json:\"learning_format\"`    // 学习形式\n    EducationalSystem string `json:\"educational_system\"` // 学制\n    AdmissionDate     string `json:\"admission_date\"`     // 入学日期\n    GraduationDate    string `json:\"graduation_date\"`    // 毕业日期\n    Status            string `json:\"status\"`             // 状态（是否结业）\n    StudentAvatar     string `json:\"student_avatar\"`     // 照片\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","admin","msg","list"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"65871829-0652-470c-b06e-3e8888ae60d8"},{"name":"admin/authenticated/user 管理员进行学生认证","id":"6b686617-3e28-40a5-b794-f42b3db2f47d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"msg_id","value":"2","type":"text"},{"key":"op","value":"1","description":"<p>0通过 1不通过</p>\n","type":"text"},{"key":"msg","value":"通过","type":"text"},{"key":"name","value":"水果鱼","type":"text","disabled":true},{"key":"card_code","value":"xxxxxx身份证号xxxx","type":"text","disabled":true}]},"url":"http://127.0.0.1:3000/api/v1/admin/authenticated/user","description":"<p>(管理员接口）：激活普通用户</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>msg_id</td>\n<td>int</td>\n<td>是</td>\n<td>消息的id</td>\n</tr>\n<tr>\n<td>op</td>\n<td>uint</td>\n<td>否</td>\n<td>值非零则表示不通过</td>\n</tr>\n<tr>\n<td>msg</td>\n<td>string</td>\n<td>否</td>\n<td>拒绝的理由</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"msg\": \"用户激活成功\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","admin","authenticated","user"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"6b686617-3e28-40a5-b794-f42b3db2f47d"},{"name":"admin/academic/certification  管理员进行学历认证","id":"cc05c8d6-c7e7-42db-805c-54006dd97142","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"msg_id","value":"3","type":"text"},{"key":"msg","value":"通过","type":"text"},{"key":"op","value":"0","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/admin/academic/certification","description":"<p>（管理员接口）：认证学生的学历(涉及文件生成 数据上链，故秒级返回)</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>msg_id</td>\n<td>int</td>\n<td>是</td>\n<td>消息的id</td>\n</tr>\n<tr>\n<td>op</td>\n<td>uint</td>\n<td>否</td>\n<td>值非零则表示不通过</td>\n</tr>\n<tr>\n<td>msg</td>\n<td>string</td>\n<td>否</td>\n<td>拒绝的理由</td>\n</tr>\n<tr>\n<td><strong>失败返回</strong>(可能有多种返回，只示例一种)</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"msg\": \"用户激活成功\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","admin","academic","certification"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc05c8d6-c7e7-42db-805c-54006dd97142"},{"name":"admin/userInfo  管理员获取用户信息","id":"7c3d744f-930e-465e-8f48-befba62fada4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:3000/api/v1/admin/userInfo?u_type=user&uid=2","description":"<p>(管理员接口）：通过ID和用户类型获取用户</p>\n<p><strong>参数</strong>  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>u_type</td>\n<td>string</td>\n<td>是</td>\n<td>拥护类型</td>\n</tr>\n<tr>\n<td>uid</td>\n<td>uint</td>\n<td>是</td>\n<td>用户id</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 2,\n        \"user_name\": \"小米\",\n        \"nickname\": \"大王狗\",\n        \"status\": \"qweeqe\",\n        \"card_code\": \"\",\n        \"created_at\": 1610954523\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","admin","userInfo"],"host":["127","0","0","1"],"query":[{"key":"u_type","value":"user"},{"key":"uid","value":"2"}],"variable":[]}},"response":[],"_postman_id":"7c3d744f-930e-465e-8f48-befba62fada4"},{"name":"admin/msg 管理员获取一个待处理的消息","id":"0b7507cb-7848-4e68-be51-8d2349dbcdd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:3000/api/v1/admin/msg?m_type=student accreditation","description":"<p>(管理员接口）: 管理员获取一个待处理的消息</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>m_type</td>\n<td>string</td>\n<td>是</td>\n<td>消息类型  学生认证请求 student accreditation  学历认证请求 educational qualifications</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"id\": 2,\n        \"created_at\": 1611931941,\n        \"msg_type\": \"student accreditation\",\n        \"description\": \"3 用户请求生份认证\",\n        \"student_ac_msg\": {\n            \"id\": 2,\n            \"created_at\": 1611931941,\n            \"user_id\": 3,\n            \"name\": \"杨帆小帅哥\",\n            \"card_code\": \"xxxxxx\",\n            \"front_face_img\": \"xxx-xxx-xx-xx\",\n            \"back_face_img\": \"yyy-yyy-y-y-y-y\"\n        },\n        \"educational_ac_msg\": {\n            ...\n        }\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","admin","msg"],"host":["127","0","0","1"],"query":[{"key":"m_type","value":"student accreditation"}],"variable":[]}},"response":[],"_postman_id":"0b7507cb-7848-4e68-be51-8d2349dbcdd6"},{"name":"file/upload 文件上传","id":"7185d171-5f87-48d8-b1bb-8579fc917717","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"f1","type":"text","value":"","disabled":true}]},"url":"http://127.0.0.1:3000/api/v1/file/upload","description":"<p>文件上传</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>f1</td>\n<td>file</td>\n<td>是</td>\n<td>文件（必须小于5M,<code>Content-Type</code> 必须是 <code>multipart/form-data</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 40001,\n    \"msg\": \"参数错误\",\n    \"error\": \"http: no such file\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"fileName\": \"121c2b4d-81fb-462a-8d9e-c87b01be995a.jpg\"\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","file","upload"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"7185d171-5f87-48d8-b1bb-8579fc917717"},{"name":"file/download/:xxxx 文件下载","id":"8eb815ab-37d9-4db6-b551-57872daeb41d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:3000/api/v1/file/download/121c2b4d-81fb-462a-8d9e-c87b01be995a.jpg","description":"<p>文件下载</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>http://127.0.0.1:3000/api/v1/file/download/:fileName\n</code></pre><p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fileName</td>\n<td>string</td>\n<td>是</td>\n<td>文件名称</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>404 not a page\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>返回文件内容\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","file","download","121c2b4d-81fb-462a-8d9e-c87b01be995a.jpg"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"8eb815ab-37d9-4db6-b551-57872daeb41d"},{"name":"inbox/list 获取通知消息","id":"4c69d2c7-513d-45ec-9de3-0267ec6501a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"http://127.0.0.1:3000/api/v1/inbox/list","description":"<p>(通用接口）：获取收件箱消息，支持分页</p>\n<p><strong>参数</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>limit</td>\n<td>string</td>\n<td>否</td>\n<td>每页数量</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>int</td>\n<td>否</td>\n<td>跳过多少</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"items\": null,\n        \"total\": 0\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","inbox","list"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"4c69d2c7-513d-45ec-9de3-0267ec6501a9"},{"name":"list/unread 获取未读消息的数量","id":"dcb2be20-1e44-400b-9344-37d15dda13ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"http://127.0.0.1:3000/api/v1/inbox/list/unread","description":"<p>(通用接口）：获取收件箱未读消息数量</p>\n<p><strong>参数</strong>\n无</p>\n<p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": 0,\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","inbox","list","unread"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"dcb2be20-1e44-400b-9344-37d15dda13ab"},{"name":"inbox/looked 查看消息（消除未读标记）","id":"79fb6531-6634-4e52-9252-83986bc7c78a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"inbox_id","value":"1","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/inbox/looked","description":"<p>(通用接口）：消除红点点（标记消息已读）</p>\n<p><strong>参数</strong></p>\n<p>无</p>\n<p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","inbox","looked"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"79fb6531-6634-4e52-9252-83986bc7c78a"},{"name":"certificate/file 通过文件校验证书是否真实","id":"106455d0-3ede-4fcc-b929-e17429b985ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"file_url","value":"a1953e2f-6f8b-476a-906f-b9a6c71259fa.jpg","type":"text"},{"key":"file_id","value":"1","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/certificate/file","description":"<p>（通用接口）：判断证书真伪</p>\n<p><strong>参数</strong>  </p>\n<p>后面跟着文件名</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>file_url</td>\n<td>string</td>\n<td>是</td>\n<td>文件上传后的url</td>\n</tr>\n<tr>\n<td>file_id</td>\n<td>int</td>\n<td>是</td>\n<td>证书编号</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": true,\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","certificate","file"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"106455d0-3ede-4fcc-b929-e17429b985ab"},{"name":"certificate/address 通过信息校验数据是否真实","id":"110ed13e-07bf-4ef1-a533-1cd5f9c37da2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"address","value":"0xd08529f80bf7501151dd466282f61e71cef6b708ffa412dc1d1dace6ddcb5e7c","type":"text"},{"key":"card_code","value":"362421200012057111","type":"text"},{"key":"name","value":"洋房魈咯咯","type":"text"}]},"url":"http://127.0.0.1:3000/api/v1/certificate/address","description":"<p>（通用接口）：获取证书相应信息</p>\n<p><strong>参数</strong>  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>名称</th>\n<th>类型</th>\n<th>是否必须</th>\n<th>描述</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>address</td>\n<td>string</td>\n<td>是</td>\n<td>文件地址（hash地址，不是编号）</td>\n</tr>\n<tr>\n<td>card_code</td>\n<td>string</td>\n<td>是</td>\n<td>身份证号</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>是</td>\n<td>姓名</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>失败返回</strong>(可能有多种返回，只示例一种)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 403,\n    \"msg\": \"禁止访问\"\n}\n</code></pre><p><strong>成功返回</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"code\": 0,\n    \"data\": {\n        \"created_at\": 1614083447,\n        \"name\": \"洋房魈咯咯\",\n        \"sex\": 1,\n        \"ethnic\": \"小日本\",\n        \"birthday\": 1614082918,\n        \"card_code\": \"362421200012057111\",\n        \"education_category\": \"普通\",\n        \"level\": \"本科\",\n        \"university\": \"江西财经大学\",\n        \"professional\": \"软件工程\",\n        \"learning_format\": \"普通全日制\",\n        \"educational_system\": \"四年\",\n        \"admission_date\": \"2018年09月09日\",\n        \"graduation_date\": \"2022年06月01日\",\n        \"status\": \"毕业\",\n        \"student_avatar\": \"121c2b4d-81fb-462a-8d9e-c87b01be995a.jpg\",\n        \"file_id\": 1,\n        \"file_url\": \"13c00753-b46d-43c7-8103-c51b0e18497c.jpg\",\n        \"file_hash\": \"86ed0005a4debca65db9e6c2dee1003e60f28dfdd3d9a1207032b840138171e3\"\n    },\n    \"msg\": \"\"\n}\n</code></pre>","urlObject":{"protocol":"http","port":"3000","path":["api","v1","certificate","address"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[],"_postman_id":"110ed13e-07bf-4ef1-a533-1cd5f9c37da2"}],"event":[{"listen":"prerequest","script":{"id":"c1664143-4af6-48e4-b3c8-62d84a16759c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3ce16449-8ed5-4832-b996-b5aec06a7908","type":"text/javascript","exec":[""]}}]}