18 lines
476 B
Java
18 lines
476 B
Java
package cn.hezhaohui.thumb.service;
|
|
|
|
import cn.hezhaohui.thumb.model.entity.Blog;
|
|
import cn.hezhaohui.thumb.model.vo.BlogVO;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import jakarta.servlet.http.HttpServletRequest;
|
|
|
|
/**
|
|
* @author 23117
|
|
* @description 针对表【blog】的数据库操作Service
|
|
* @createDate 2025-10-18 14:50:16
|
|
*/
|
|
public interface BlogService extends IService<Blog> {
|
|
|
|
|
|
BlogVO getBlogVOById(long blogId, HttpServletRequest request);
|
|
}
|