2021与蓝度共同重构项目,服务端
liuhaonan
2022-07-27 14dab1f82b2254193f92f6d00190d7d4095d946f
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.sandu.ximon.dao.mapper.C3mReportErrorMapper">
 
    <resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.C3mReportError">
            <id property="c3mErrorId" column="c3m_error_id" jdbcType="BIGINT"/>
            <result property="deviceCode" column="device_code" jdbcType="VARCHAR"/>
            <result property="errorCode" column="error_code" jdbcType="INTEGER"/>
            <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
            <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
            <result property="errorMsg" column="error_msg" jdbcType="VARCHAR"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        c3m_error_id,device_code,error_code,
        create_time,update_time,error_msg
    </sql>
</mapper>