fix:审核模块 审核添加接口
All checks were successful
代码检查 / 代码检查 (pull_request) Successful in 30s

This commit is contained in:
xiangZr-hhh 2024-04-18 23:13:14 +08:00
parent 2f706d5997
commit b03ff092a3

View File

@ -93,6 +93,13 @@ public class ProjectDailyServiceImpl implements ProjectDailyService {
Date beginTime,
Date endTime,
HttpServletRequest request) {
// 获取用户id
Long userId = Processing.getAuthHeaderToUserId(request);
// 获取 我发布的及自己负责的项目下 的日报
List<ProjectDailyDO> projectDailyDOList =
projectDailyDAO.getMyProjectDaily(userId);
return null;
}