|
@@ -20,6 +20,10 @@
|
|
|
<result property="status" column="status"/>
|
|
|
<result property="tiltAngle" column="tilt_angle"/>
|
|
|
<result property="forwardTiltAngle" column="forward_tilt_angle"/>
|
|
|
+ <result property="realX" column="real_x"/>
|
|
|
+ <result property="realY" column="real_y"/>
|
|
|
+ <result property="realLat" column="real_lat"/>
|
|
|
+ <result property="realLng" column="real_lng"/>
|
|
|
<result property="updateTime" column="update_time"/>
|
|
|
<result property="createTime" column="create_time"/>
|
|
|
<result property="createBy" column="create_by"/>
|
|
@@ -42,6 +46,10 @@
|
|
|
status,
|
|
|
tilt_angle,
|
|
|
forward_tilt_angle,
|
|
|
+ real_x,
|
|
|
+ real_y,
|
|
|
+ real_lat,
|
|
|
+ real_lng,
|
|
|
update_time,
|
|
|
create_time,
|
|
|
create_by,
|
|
@@ -93,6 +101,10 @@
|
|
|
<if test="status != null">status,</if>
|
|
|
<if test="tiltAngle != null ">tilt_angle,</if>
|
|
|
<if test="forwardTiltAngle != null ">forward_tilt_angle,</if>
|
|
|
+ <if test="realX != null">real_x,</if>
|
|
|
+ <if test="realY != null">real_y,</if>
|
|
|
+ <if test="realLat != null">real_lat,</if>
|
|
|
+ <if test="realLng != null">real_lng,</if>
|
|
|
<if test="updateTime != null">update_time,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
@@ -113,6 +125,10 @@
|
|
|
<if test="status != null">#{status},</if>
|
|
|
<if test="tiltAngle != null ">#{tiltAngle},</if>
|
|
|
<if test="forwardTiltAngle != null ">#{forwardTiltAngle},</if>
|
|
|
+ <if test="realX != null">#{realX},</if>
|
|
|
+ <if test="realY != null">#{realY},</if>
|
|
|
+ <if test="realLat != null">#{realLat},</if>
|
|
|
+ <if test="realLng != null">#{realLng},</if>
|
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
@@ -137,6 +153,10 @@
|
|
|
<if test="status != null">status = #{status},</if>
|
|
|
<if test="tiltAngle != null ">tilt_angle = #{tiltAngle},</if>
|
|
|
<if test="forwardTiltAngle != null ">forward_tilt_angle = #{forwardTiltAngle},</if>
|
|
|
+ <if test="realX != null">real_x = #{realX},</if>
|
|
|
+ <if test="realY != null">real_y = #{realY},</if>
|
|
|
+ <if test="realLat != null">real_lat = #{realLat},</if>
|
|
|
+ <if test="realLng != null">real_lng = #{realLng},</if>
|
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
@@ -158,6 +178,10 @@
|
|
|
<if test="status != null">status = #{status},</if>
|
|
|
<if test="tiltAngle != null ">tilt_angle = #{tiltAngle},</if>
|
|
|
<if test="forwardTiltAngle != null ">forward_tilt_angle = #{forwardTiltAngle},</if>
|
|
|
+ <if test="realX != null">real_x = #{realX},</if>
|
|
|
+ <if test="realY != null">real_y = #{realY},</if>
|
|
|
+ <if test="realLat != null">real_lat = #{realLat},</if>
|
|
|
+ <if test="realLng != null">real_lng = #{realLng},</if>
|
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|