linwe
2023-11-09 365b5ad817c9c8a2992d505aa39eccfa2be0460e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.springblade.modules.notice.mapper.NoticeCommentMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="noticeCommentResultMap" type="org.springblade.modules.notice.entity.NoticeCommentEntity">
        <result column="id" property="id"/>
        <result column="notice_id" property="noticeId"/>
        <result column="content" property="content"/>
        <result column="user_id" property="userId"/>
        <result column="reply" property="reply"/>
        <result column="time" property="time"/>
        <result column="topping" property="topping"/>
        <result column="isexamine" property="isexamine"/>
    </resultMap>
 
 
    <select id="selectNoticeCommentPage" resultMap="noticeCommentResultMap">
        select * from jczz_notice_comment where is_deleted = 0
    </select>
 
 
</mapper>