blob: 817e555b1d1059082ff0454bdf353187c5936240 [file] [log] [blame]
刘嘉昕f28ea232025-04-15 16:55:43 +08001package com.pt5.pthouduan.mapper;
2
3import com.pt5.pthouduan.entity.Post;
4import com.baomidou.mybatisplus.core.mapper.BaseMapper;
5import org.apache.ibatis.annotations.Mapper;
6
7/**
8 * <p>
9 * Mapper 接口
10 * </p>
11 *
12 * @author ljx
13 * @since 2025-04-14
14 */
15@Mapper
16public interface PostMapper extends BaseMapper<Post> {
17
18}