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
47
48
49
<?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.ThresholdValueMapper">
  <resultMap id="BaseResultMap" type="com.flightfeather.obd.domain.entity.ThresholdValue">
    <!--
      WARNING - @mbg.generated
    -->
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="obd_vin" jdbcType="VARCHAR" property="obdVin" />
    <result column="th_mil" jdbcType="INTEGER" property="thMil" />
    <result column="th_fault_code_num" jdbcType="INTEGER" property="thFaultCodeNum" />
    <result column="th_fault_code" jdbcType="VARCHAR" property="thFaultCode" />
    <result column="th_speed" jdbcType="INTEGER" property="thSpeed" />
    <result column="th_air_pressure" jdbcType="DOUBLE" property="thAirPressure" />
    <result column="th_engine_torque" jdbcType="DOUBLE" property="thEngineTorque" />
    <result column="th_friction_torque" jdbcType="DOUBLE" property="thFrictionTorque" />
    <result column="th_engine_rpm" jdbcType="INTEGER" property="thEngineRpm" />
    <result column="th_start_fuel_flow" jdbcType="DOUBLE" property="thStartFuelFlow" />
    <result column="th_scr_upstream_NO" jdbcType="DOUBLE" property="thScrUpstreamNo" />
    <result column="th_scr_downstream_NO" jdbcType="DOUBLE" property="thScrDownstreamNo" />
    <result column="th_remain_reactant" jdbcType="DOUBLE" property="thRemainReactant" />
    <result column="th_air_input" jdbcType="DOUBLE" property="thAirInput" />
    <result column="th_scr_input_temp" jdbcType="DOUBLE" property="thScrInputTemp" />
    <result column="th_scr_output_temp" jdbcType="DOUBLE" property="thScrOutputTemp" />
    <result column="th_DPF" jdbcType="DOUBLE" property="thDpf" />
    <result column="th_engine_coolant_temp" jdbcType="DOUBLE" property="thEngineCoolantTemp" />
    <result column="th_fuel_level" jdbcType="DOUBLE" property="thFuelLevel" />
    <result column="th_location_status" jdbcType="INTEGER" property="thLocationStatus" />
    <result column="th_total_mileage" jdbcType="DOUBLE" property="thTotalMileage" />
    <result column="th_engine_torque_mode" jdbcType="VARCHAR" property="thEngineTorqueMode" />
    <result column="th_accelerator_pedal" jdbcType="DOUBLE" property="thAcceleratorPedal" />
    <result column="th_total_oil_consumption" jdbcType="DOUBLE" property="thTotalOilConsumption" />
    <result column="th_urea_box_temp" jdbcType="DOUBLE" property="thUreaBoxTemp" />
    <result column="th_urea_volume" jdbcType="INTEGER" property="thUreaVolume" />
    <result column="th_total_urea_consume" jdbcType="DOUBLE" property="thTotalUreaConsume" />
    <result column="th_DPF_temp" jdbcType="DOUBLE" property="thDpfTemp" />
  </resultMap>
  <sql id="Base_Column_List">
    <!--
      WARNING - @mbg.generated
    -->
    id, obd_vin, th_mil, th_fault_code_num, th_fault_code, th_speed, th_air_pressure, 
    th_engine_torque, th_friction_torque, th_engine_rpm, th_start_fuel_flow, th_scr_upstream_NO, 
    th_scr_downstream_NO, th_remain_reactant, th_air_input, th_scr_input_temp, th_scr_output_temp, 
    th_DPF, th_engine_coolant_temp, th_fuel_level, th_location_status, th_total_mileage, 
    th_engine_torque_mode, th_accelerator_pedal, th_total_oil_consumption, th_urea_box_temp, 
    th_urea_volume, th_total_urea_consume, th_DPF_temp
  </sql>
</mapper>