fuliqi
2024-10-17 8546b3d285af4235a0ef615a0c6e89486ae2c806
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?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="com.ycl.jxkg.mapper.ClassesNotifyMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ycl.jxkg.domain.vo.ClassesNotifyVO">
        <result column="classes_id" property="classesId" />
        <result column="teacher_id" property="teacherId" />
        <result column="notify_content" property="notifyContent" />
        <result column="create_time" property="createTime" />
    </resultMap>
 
 
 
 
 
 
 
    <select id="getById" resultMap="BaseResultMap">
        SELECT
            TCN.classes_id,
            TCN.teacher_id,
            TCN.notify_content,
            TCN.create_time,
            TCN.id
        FROM
            t_classes_notify TCN
        WHERE
            TCN.id = #{id} AND TCN.deleted = 0
    </select>
 
 
    <select id="getPage" resultMap="BaseResultMap">
        SELECT
            TCN.classes_id,
            TCN.teacher_id,
            TCN.notify_content,
            TCN.create_time,
            TCN.id
        FROM
            t_classes_notify TCN
        WHERE
            TCN.deleted = 0
    </select>
 
</mapper>