<?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.LightPoleHeelingProcessingMapper">
|
|
<resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.LightPoleHeelingProcessing">
|
<id property="processingNumber" column="processing_number" jdbcType="BIGINT"/>
|
<result property="warningNumber" column="warning_number" jdbcType="BIGINT"/>
|
<result property="processingState" column="processing_state" jdbcType="INTEGER"/>
|
<result property="processingOpinion" column="processing_opinion" jdbcType="VARCHAR"/>
|
<result property="processingPerson" column="processing_person" jdbcType="VARCHAR"/>
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
<result property="theXAxis" column="the_x_axis" jdbcType="DOUBLE"/>
|
<result property="theYAxis" column="the_y_axis" jdbcType="DOUBLE"/>
|
<result property="theZAxis" column="the_z_axis" jdbcType="DOUBLE"/>
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
processing_number,warning_number,processing_state,
|
processing_opinion,processing_person,create_time,
|
the_x_axis,the_y_axis,the_z_axis
|
</sql>
|
</mapper>
|