19 lines
431 B
Java
19 lines
431 B
Java
|
package com.xubx.springboot_01demo.mapper;
|
||
|
|
||
|
import com.xubx.springboot_01demo.pojo.Blogs;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface BlogsMapper {
|
||
|
//获取所有博客文章信息
|
||
|
List<Blogs> findAllBlogs();
|
||
|
//根据id获取博客
|
||
|
Blogs findByIdBlogs(int id);
|
||
|
//新增博客
|
||
|
void addBlogs(Blogs blogs);
|
||
|
//更新博客
|
||
|
void updateBlogs(Blogs blogs);
|
||
|
//删除博客
|
||
|
void deleteBlogs(int id);
|
||
|
}
|