| | |
| | | import com.qianwen.smartman.modules.system.service.IDictService; |
| | | |
| | | @Service |
| | | /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/service/impl/NotifySystemServiceImpl.class */ |
| | | |
| | | public class NotifySystemServiceImpl extends BaseServiceImpl<NotifySystemMapper, NotifySystem> implements INotifySystemService { |
| | | @Autowired |
| | | @Lazy |
| | |
| | | @Autowired |
| | | private IDictService dictService; |
| | | |
| | | @Override // org.springblade.modules.notify.service.INotifySystemService |
| | | |
| | | public NotifySystemUnreadVO getUnreadList() { |
| | | |
| | | List<Dict> dicts = this.dictService.list(Wrappers.<Dict>lambdaQuery().select(Dict::getDictKey, Dict::getDictValue).eq(Dict::getCode, DictConstant.NOTICE_CODE)); |
| | |
| | | return notifySystemUnreadVO; |
| | | } |
| | | |
| | | @Override // org.springblade.modules.notify.service.INotifySystemService |
| | | |
| | | public IPage<NotifySystemVO> pageNotifySystem(NotifySystemSelectVO selectVO, IPage<NotifySystem> page) { |
| | | Long userId = AuthUtil.getUserId(); |
| | | Integer notifyType = selectVO.getNotifyType(); |
| | |
| | | } |
| | | } |
| | | |
| | | @Override // org.springblade.modules.notify.service.INotifySystemService |
| | | |
| | | public NotifySystemVO detail(String id) { |
| | | NotifySystem system = (NotifySystem) getById(id); |
| | | Integer notifyType = system.getNotifyType(); |