zhanghua
2023-09-26 27cb33cf918ee09eae680e2ee006af13716e12f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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.mapper.OdsAlarmMsgMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ycl.entity.smoke.OdsAlarmMsg">
        <id column="id" property="id" />
        <result column="mn" property="mn" />
        <result column="acquit_at" property="acquitAt" />
        <result column="owner" property="owner" />
        <result column="content" property="content" />
        <result column="msg_type" property="msgType" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, mn, acquit_at, owner, content, msg_type
    </sql>
 
</mapper>