|
@ -261,7 +261,8 @@ public class ActInfoServiceImpl extends BaseServiceImpl<ActInfoDao, ActInfoEntit |
|
|
//1、查询用户活动关系
|
|
|
//1、查询用户活动关系
|
|
|
QueryWrapper<ActUserRelationEntity> actUserRelationWrapper = new QueryWrapper<>(); |
|
|
QueryWrapper<ActUserRelationEntity> actUserRelationWrapper = new QueryWrapper<>(); |
|
|
actUserRelationWrapper.eq("ACT_ID", actId) |
|
|
actUserRelationWrapper.eq("ACT_ID", actId) |
|
|
.eq("USER_ID", userId); |
|
|
.eq("USER_ID", userId) |
|
|
|
|
|
.orderByDesc("CREATED_TIME").last("limit 1"); |
|
|
ActUserRelationEntity actUserRelationEntity = actUserRelationDao.selectOne(actUserRelationWrapper); |
|
|
ActUserRelationEntity actUserRelationEntity = actUserRelationDao.selectOne(actUserRelationWrapper); |
|
|
//2、查询用户打卡记录
|
|
|
//2、查询用户打卡记录
|
|
|
List<ActUserClockLogEntity> actUserClockLogList = new ArrayList<ActUserClockLogEntity>(); |
|
|
List<ActUserClockLogEntity> actUserClockLogList = new ArrayList<ActUserClockLogEntity>(); |
|
|