package com.lyms.talkonlineweb.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.lyms.talkonlineweb.domain.LymsArticle;
import com.lyms.talkonlineweb.service.LymsArticleService;
import com.lyms.talkonlineweb.mapper.LymsArticleMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
*
*/
@Service
public class LymsArticleServiceImpl extends ServiceImpl<LymsArticleMapper, LymsArticle>
implements LymsArticleService{
@Autowired
private LymsArticleMapper lymsArticleMapper;
@Override
public List<LymsArticle> sltNeedPush() {
return lymsArticleMapper.sltNeedPush();
}
}