| | |
| | | import com.qianwen.smartman.modules.notify.service.INotificationService; |
| | | |
| | | @Service |
| | | /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/service/impl/NotificationServiceImpl.class */ |
| | | |
| | | public class NotificationServiceImpl extends BaseServiceImpl<NotificationMapper, NotificationEntity> implements INotificationService { |
| | | private static final Logger log = LoggerFactory.getLogger(NotificationServiceImpl.class); |
| | | |
| | | |
| | | @Override // org.springblade.modules.notify.service.INotificationService |
| | | |
| | | public NotificationEntity findAndMarkRead(String id) { |
| | | update(Wrappers.<NotificationEntity>update().lambda().set(NotificationEntity::getStatus, 2).eq(NotificationEntity::getId, id)); |
| | | /* |