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
<?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.flightfeather.obd.domain.mapper.ObdInfoMapper">
  <resultMap id="BaseResultMap" type="com.flightfeather.obd.domain.entity.ObdInfo">
    <!--
      WARNING - @mbg.generated
    -->
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="obd_device_code" jdbcType="VARCHAR" property="obdDeviceCode" />
    <result column="obd_create_time" jdbcType="TIMESTAMP" property="obdCreateTime" />
    <result column="obd_data_time" jdbcType="TIMESTAMP" property="obdDataTime" />
    <result column="obd_serial_num" jdbcType="INTEGER" property="obdSerialNum" />
    <result column="obd_protocol" jdbcType="INTEGER" property="obdProtocol" />
    <result column="obd_mil" jdbcType="INTEGER" property="obdMil" />
    <result column="obd_diagnosis_support_status" jdbcType="VARCHAR" property="obdDiagnosisSupportStatus" />
    <result column="obd_diagnosis_ready_status" jdbcType="VARCHAR" property="obdDiagnosisReadyStatus" />
    <result column="obd_vin" jdbcType="VARCHAR" property="obdVin" />
    <result column="obd_crn" jdbcType="VARCHAR" property="obdCrn" />
    <result column="obd_cvn" jdbcType="VARCHAR" property="obdCvn" />
    <result column="obd_iupr" jdbcType="VARCHAR" property="obdIupr" />
    <result column="obd_fault_code_num" jdbcType="INTEGER" property="obdFaultCodeNum" />
    <result column="obd_fault_code" jdbcType="VARCHAR" property="obdFaultCode" />
    <result column="obd_status" jdbcType="BIT" property="obdStatus" />
  </resultMap>
  <sql id="Base_Column_List">
    <!--
      WARNING - @mbg.generated
    -->
    id, obd_device_code, obd_create_time, obd_data_time, obd_serial_num, obd_protocol, 
    obd_mil, obd_diagnosis_support_status, obd_diagnosis_ready_status, obd_vin, obd_crn, 
    obd_cvn, obd_iupr, obd_fault_code_num, obd_fault_code, obd_status
  </sql>
</mapper>