LymsArticleService.java 413 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
package com.lyms.talkonlineweb.service;

import com.lyms.talkonlineweb.domain.LymsArticle;
import com.baomidou.mybatisplus.extension.service.IService;
import com.lyms.talkonlineweb.mapper.LymsArticleMapper;
import org.springframework.beans.factory.annotation.Autowired;

import java.util.List;

/**
*
*/
public interface LymsArticleService extends IService<LymsArticle> {
List<LymsArticle> sltNeedPush();
}