签到时间没有写入 修复

This commit is contained in:
苏竹红
2024-01-04 15:08:26 +08:00
parent f8a6b47e40
commit 54390e62eb

View File

@@ -686,6 +686,7 @@ public class ExhibitionServiceImpl implements ExhibitionService {
HyPartnerExhibitionDO partnerExhibition = hyPartnerExhibitionDAO.getPartnerExhibition(exhibitionId, lineId); HyPartnerExhibitionDO partnerExhibition = hyPartnerExhibitionDAO.getPartnerExhibition(exhibitionId, lineId);
partnerExhibition.setParticipationStatus(status); partnerExhibition.setParticipationStatus(status);
partnerExhibition.setUpdater(userInfo.getUserId()); partnerExhibition.setUpdater(userInfo.getUserId());
partnerExhibition.setCheckInTime(new Date());
hyPartnerExhibitionDAO.updateByPrimaryKeySelective(partnerExhibition); hyPartnerExhibitionDAO.updateByPrimaryKeySelective(partnerExhibition);
return Boolean.TRUE; return Boolean.TRUE;
} }