You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
498 B
22 lines
498 B
package com.dao;
|
|
|
|
import com.entity.NewsEntity;
|
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import com.baomidou.mybatisplus.plugins.pagination.Pagination;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
import com.entity.view.NewsView;
|
|
|
|
//**
|
|
// 公告信息 Dao 接口
|
|
//*
|
|
//* @author
|
|
//*/
|
|
public interface NewsDao extends BaseMapper<NewsEntity> {
|
|
|
|
List<NewsView> selectListView(Pagination page,@Param("params")Map<String,Object> params);
|
|
|
|
}
|