冲刺博客Day4
DAY4
1.会议照片
2.工作详情
成员 | 昨天已完成的工作 | 今天计划完成的工作 | 工作中遇到的困难 |
---|---|---|---|
周讯超 | 接上后台登录接口进行测试 | 完成随心贴模块 | 无 |
林佳浩 | 图片模块后端开发 | 随心贴模块代码的完成 | 暂时没有 |
黄欣茵 | 了解前后端交互 | 实现背景图片接口 | 用户界面不美观,没有吸引力 |
江男辉 | 模块基本设计完成 | 学习新功能所需要的编码 | 需要对前端有一点的了解 |
夏依达 | 小组计划交互以及计划发布功能优化 | 细节优化、测试完成 | 在开发过程中,算法是一个难题。因为文章推荐算法没有达到预期的效果。 |
阿卜杜乃比 | 小组计划交互以及计划发布功能优化 | 细节优化、测试完成 | 因为文章推荐算法没有达到预期的效果。 |
3.燃尽图
4.签入记录
5.主要代码截图
点击查看代码
// 1.插入随心贴
@PostMapping("/add")
public ReturnResult insertMlog(@RequestBody Mlog mlog) {
Integer mlogId = mlogService.insertMlog(mlog);
if (mlogId != null && mlogId != 0) {
HashMap map = new HashMap<>();
map.put("mlogId",mlogId);
returnResult.success(map);
} else {
returnResult.failed();
}
return returnResult;
}
// 2.根据随心贴id找到随心贴
@GetMapping("/findOne/{mlogId}")
public ReturnResult findOneMlog(@PathVariable(value = "mlogId", required = true) Integer mlogId) {
Mlog mlog = mlogService.findOneMlog(mlogId);
if (mlog != null) {
returnResult.success(mlog);
} else {
returnResult.failed();
}
return returnResult;
}
// 3.根据用户名找到所有的随心贴
@GetMapping("/findAll/{userId}")
public ReturnResult findAllMlogs(@PathVariable(value = "userId", required = true) Integer userId) {
List<Mlog> mlogs = mlogService.findAllMlogs(userId);
if (mlogs != null) {
returnResult.success(mlogs);
} else {
returnResult.failed();
}
return returnResult;
}
// 4.更新某条随心贴
@PostMapping("/update")
public ReturnResult updateContent(@RequestBody Mlog mlog) {
Integer result = mlogService.updateContent(mlog);
if (result != 0) {
returnResult.success(result);
} else {
returnResult.failed();
}
return returnResult;
}
// 5.根据随心贴id删除
@DeleteMapping("/delete/{mlogId}")
public ReturnResult deleteMlog(@PathVariable(value = "mlogId", required = true) Integer mlogId) {
Integer result = mlogService.deleteMlog(mlogId);
if (result != 0) {
returnResult.success(result);
} else {
returnResult.failed();
}
return returnResult;
}
}
6.运行截图
测试
运行
7.每日工作总结
成员 | 总结 |
---|---|
周讯超 | 完成了随心贴前端 |
林佳浩 | 今天完成了随心贴验证模块,明天继续肝 |
黄欣茵 | 完成总体页面的编写,完善页面 |
江男辉 | 学习新技能 |
夏依达 | 实例似乎设计不佳 |
阿卜杜乃比 | 实例似乎设计不怎么理想 |