多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 获取消息列表 ~~~[api] post:/127.0.0.1:9223/api/user/notice/getnoticelist *token=默认值# *sign# <<< success { "code": 1, "msg": "", "data": [         { "notice_id": 4, "send_id": 0, "receiver_id": 46, "notice_type": 1, "notice_content": "乐三方向您发送了【前端开发】的面试通知", "notice_addtime": "1578395121"         },         { "notice_id": 2, "send_id": 0, "receiver_id": 46, "notice_type": 2, "notice_content": "xx您有新的通知,请查看", "notice_addtime": "1578384301"         },         { "notice_id": 3, "send_id": 0, "receiver_id": 46, "notice_type": 3, "notice_content": "您向xx发送的请求已送达", "notice_addtime": "1578384301"         }, null     ] } <<< error 这里填写错误的返回码 以此类推,每个状态使用 <<< 分割, 第一行添加状态名称 ~~~ ## 获取某个类型的消息列表 ~~~[api] post:/127.0.0.1:9223/api/user/notice/getOneList *token=默认值# *sign# *type#消息类型 page#第几页 limit#每页展示条数 <<< success { "code": 1, "msg": "", "data": [         { "notice_id": 4, "send_id": 0, "receiver_id": 46, "notice_type": 1, "notice_content": "乐三方向您发送了【前端开发】的面试通知", "notice_addtime": "1578395121"         },         { "notice_id": 1, "send_id": 0, "receiver_id": 46, "notice_type": 1, "notice_content": "xx向您发送了【web工程师】的面试通知", "notice_addtime": "1578384301"         }     ] } <<< error { "code": 4001, "msg": "参数错误", "data": "" } ~~~ ## 获取关注我或者收藏我的数据列表 ~~~[api] post:/127.0.0.1:9223/api/user/notice/getStoreList *token=默认值# *sign# *type#消息类型(1为访问2为收藏) page#第几页 limit#每页展示条数 <<< success { "code": 1, "msg": "", "data": [         { "avatar": "", "truename": "123123", "edu_education_back_name": "博士", "puj_work_exp": "5-10年", "puj_city": null, "userid": 46, "title_name": "董事会秘书", "age": 0, "city_name": "浦东新区"         }     ] } <<< error { "code": 4001, "msg": "参数错误", "data": "" } ~~~ ## 点赞或者取消视频点赞 ~~~[api] post:/127.0.0.1:9223/api/user/video/addEduceLove *token=默认值# *sign# *id#视频id *type#操作类型1为点赞2为取消点赞 <<< success { "code": 1, "msg": "操作成功!", "data": "" } <<< error { "code": 4001, "msg": "参数错误", "data": "" } ~~~ ## 获取某条消息 ~~~[api] post:/127.0.0.1:9223/api/user/notice/getNoticeInfo *token=默认值# *sign# *notice_id#消息id值 <<< success { "code": 1, "msg": "", "data": { "com\_info\_logo": "company/20200114/8ce70a6d79d86318f40c88aa2eb18b3d.png", "com\_company\_name": "某某有限公司", "is\_yes": 0,//是否同意了面试邀约 "ut\_id": 9733, "telephone": "", "interview\_time": "20200117", "job\_title\_name": "后端开发", "job\_pay\_start\_name": "6000", "job\_pay\_end\_name": "10000", "job\_address\_name": null, "contact\_name": "菲菲", "interview_id": "9036", "telephone":"18724775626"     } } <<< error { 1 "code": 4001, "msg": "参数错误", "data": "" }