|
@@ -30,11 +30,11 @@ public interface ChuanyunWorkHourDao extends GalaxisRepository<ChuanyunWorkHourD
|
|
|
"FROM chuanyun_day_log "+
|
|
|
"LEFT JOIN chuanyun_log ON chuanyun_day_log.parent_object_id = chuanyun_log.object_id " +
|
|
|
" WHERE chuanyun_log.user_id = ? " +
|
|
|
- "AND chuanyun_log.day_log_date>='2020-08-01'" +
|
|
|
+ "AND chuanyun_log.log_date>='2020-08-01'" +
|
|
|
" GROUP BY chuanyun_day_log.project_id," +
|
|
|
"chuanyun_log.user_id," +
|
|
|
"chuanyun_log.status," +
|
|
|
- "chuanyun_day_log.log_date",
|
|
|
+ "chuanyun_day_log.day_log_date",
|
|
|
nativeQuery = true)
|
|
|
List<ChuanyunWorkHourDO> getSelfWorkHour(String userId);
|
|
|
|