| | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service |
| | | /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/service/impl/NotifyHistoryServiceImpl.class */ |
| | | |
| | | public class NotifyHistoryServiceImpl extends BaseServiceImpl<NotifyHistoryEntityMapper, NotifyHistoryEntity> implements INotifyHistoryService { |
| | | private static final Logger log = LoggerFactory.getLogger(NotifyHistoryServiceImpl.class); |
| | | private final NotifyHistoryEntityMapper notifyHistoryEntityMapper; |
| | |
| | | this.notifyConfigService = notifyConfigService; |
| | | } |
| | | |
| | | @Override // org.springblade.modules.notify.service.INotifyHistoryService |
| | | |
| | | public IPage<NotifyHistoryEntity> listPage(Query query, String state, String keyword, String beginTime, String endTime) { |
| | | IPage<NotifyHistoryEntity> iPage = this.notifyHistoryEntityMapper.listPage(Condition.getPage(query), (state == null || !state.contains(",")) ? state : null, keyword, beginTime, endTime); |
| | | List<NotifyHistoryEntity> records = iPage.getRecords(); |