第 3 篇 Scrum 冲刺博客

作业概述

这个作业属于哪个课程 软件工程
这个作业要求在哪里 作业链接
这个作业的目标 1、站立式会议 2、项目燃尽图 3、代码/文档签入记录 4、项目程序/模块的最新(运行)截图 5、每日每人总结
作业所属团队 就吃西兰花🥦队
团队成员 李嘉鹏、田小古、李境豪、詹炜昊、黄俊强、陈梓杨

会议

会议照片

昨天已完成的工作/今天计划完成的工作

已完成

完善视频推荐功能
视频上传功能的完善
个人主页界面的编写和ui设计

计划完成

完善个人主页界面的编写和ui设计
初步设计完成评论功能
测试视频上传和推荐

工作中遇到的困难

  • 视频上传过慢,尝试对分片进行调整

  • 对于个人界面的编写出现些许bug

项目燃尽图

代码/文档签入记录

issue截图

项目程序/模块的最新(运行)截图

最新模块的代码

点击查看代码
@RestController
@RequestMapping("/comment")
public class CommentController {
    @Resource
    private CommentService commentService;
    @Resource
    private UserService  userService;
    @Resource
    private CommentMapper commentMapper;
     @RequestMapping("/page")
    public CommonResult<List<CommentVo>> getComments(@RequestBody CommentDto commentDto) {
         List<CommentVo> commentVos = commentMapper.selectComment(commentDto.getVideoId(), commentDto.getStart());
         return CommonResult.operateSuccess(commentVos);
    }

    @GetMapping("/page/childComments")
    public CommonResult<List<CommentVo>> getChildComments(@RequestBody CommentChildDto commentChildDto){
        List<CommentVo> childCommentsByPage = commentMapper.selectCommentChilds(commentChildDto.getParentId(),commentChildDto.getStart());
        return CommonResult.operateSuccess(childCommentsByPage);
    }
}

点击查看代码
<sql id="Base_Column_List">
    id,video_id,content,
    user_id,parent_id,create_time,
    reply_id
</sql>

<select id="selectComment" resultType="com.model.vo.CommentVo">
    SELECT c.content,c.user_id,c.create_time,u.img_url,u.username FROM `comment` c,user  u where c.user_id=u.id and c.video_id=#{id} limit #{start},10
</select>

<select id="selectCommentChilds" resultType="com.model.vo.CommentVo">
  SELECT c.content,c.user_id,c.create_time,u.img_url,u.username FROM `comment` c,user  u where c.user_id=u.id and c.parent_id=#{id} limit #{start},5
</select>

运行结果截图

与昨天相比暂无变化。。。

每日每人总结

成员 总结
李嘉鹏 坚持就是胜利
田小古 加快开发进度
陈梓杨 对程序进行进一步的提升,程序更加完美了
詹炜昊 坚持设计,提升小组活跃度
黄俊强 完成一日小目标的感觉真好
李境豪 检验代码测试方案可行性
posted @ 2023-11-22 19:43  awsdl  阅读(52)  评论(0)    收藏  举报