yangys
2024-05-18 cc0bdfb33ef638dfafe3185c92c7076d815e1c9b
smart-man-boot/src/main/java/com/qianwen/smartman/modules/notify/service/impl/NotifySystemServiceImpl.java
@@ -32,7 +32,7 @@
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
@@ -40,7 +40,7 @@
    @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));
@@ -77,7 +77,7 @@
        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();
@@ -120,7 +120,7 @@
        }
    }
    @Override // org.springblade.modules.notify.service.INotifySystemService
    public NotifySystemVO detail(String id) {
        NotifySystem system = (NotifySystem) getById(id);
        Integer notifyType = system.getNotifyType();