|
@@ -19,7 +19,7 @@ public interface ChuanyunSelfSubWorkHourDao extends GalaxisRepository<ChuanyunSe
|
|
|
* @param projectType
|
|
|
* @return
|
|
|
*/
|
|
|
- ChuanyunSelfSubWorkHourDO findByUserIdAndProjectIdAndProjectTypeAndDayLogDate(String userId, String projectId,String projectType,LocalDateTime dayLogDate);
|
|
|
+ List<ChuanyunSelfSubWorkHourDO> findByUserIdAndProjectIdAndProjectTypeAndDayLogDate(String userId, String projectId,String projectType,LocalDateTime dayLogDate);
|
|
|
|
|
|
/**
|
|
|
* 获取单日工时数据
|
|
@@ -30,7 +30,7 @@ public interface ChuanyunSelfSubWorkHourDao extends GalaxisRepository<ChuanyunSe
|
|
|
* @param status
|
|
|
* @return
|
|
|
*/
|
|
|
- ChuanyunSelfSubWorkHourDO findByUserIdAndProjectIdAndProjectTypeAndDayLogDateAndStatus(String userId, String projectId,String projectType,LocalDateTime dayLogDate,String status);
|
|
|
+ List<ChuanyunSelfSubWorkHourDO> findByUserIdAndProjectIdAndProjectTypeAndDayLogDateAndStatus(String userId, String projectId,String projectType,LocalDateTime dayLogDate,String status);
|
|
|
|
|
|
/**
|
|
|
* 根据用户ID获取每日工时
|