|
@@ -23,6 +23,9 @@
|
|
<result property="radiance" column="radiance"/>
|
|
<result property="radiance" column="radiance"/>
|
|
<result property="radIllumination" column="rad_illumination"/>
|
|
<result property="radIllumination" column="rad_illumination"/>
|
|
<result property="radTemp" column="rad_temp"/>
|
|
<result property="radTemp" column="rad_temp"/>
|
|
|
|
+ <result property="focalLength" column="focal_length"/>
|
|
|
|
+ <result property="rawData" column="raw_data"/>
|
|
|
|
+ <result property="processedData" column="processed_data"/>
|
|
<result property="createBy" column="create_by"/>
|
|
<result property="createBy" column="create_by"/>
|
|
<result property="createTime" column="create_time"/>
|
|
<result property="createTime" column="create_time"/>
|
|
<result property="updateBy" column="update_by"/>
|
|
<result property="updateBy" column="update_by"/>
|
|
@@ -49,6 +52,9 @@
|
|
mtitd.radiance,
|
|
mtitd.radiance,
|
|
mtitd.rad_illumination,
|
|
mtitd.rad_illumination,
|
|
mtitd.rad_temp,
|
|
mtitd.rad_temp,
|
|
|
|
+ mtitd.focal_length,
|
|
|
|
+ mtitd.raw_data,
|
|
|
|
+ mtitd.processed_data,
|
|
mtitd.create_by,
|
|
mtitd.create_by,
|
|
mtitd.create_time,
|
|
mtitd.create_time,
|
|
mtitd.update_by,
|
|
mtitd.update_by,
|
|
@@ -105,6 +111,9 @@
|
|
<if test="radiance != null">radiance,</if>
|
|
<if test="radiance != null">radiance,</if>
|
|
<if test="radIllumination != null">rad_illumination,</if>
|
|
<if test="radIllumination != null">rad_illumination,</if>
|
|
<if test="radTemp != null">rad_temp,</if>
|
|
<if test="radTemp != null">rad_temp,</if>
|
|
|
|
+ <if test="focalLength != null">focal_length,</if>
|
|
|
|
+ <if test="rawData != null">raw_data,</if>
|
|
|
|
+ <if test="processedData != null">processed_data,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
@@ -123,6 +132,9 @@
|
|
<if test="radiance != null">#{radiance},</if>
|
|
<if test="radiance != null">#{radiance},</if>
|
|
<if test="radIllumination != null">#{radIllumination},</if>
|
|
<if test="radIllumination != null">#{radIllumination},</if>
|
|
<if test="radTemp != null">#{radTemp},</if>
|
|
<if test="radTemp != null">#{radTemp},</if>
|
|
|
|
+ <if test="focalLength != null">#{focalLength},</if>
|
|
|
|
+ <if test="rawData != null">#{rawData},</if>
|
|
|
|
+ <if test="processedData != null">#{processedData},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
@@ -144,6 +156,9 @@
|
|
<if test="radiance != null">radiance = #{radiance},</if>
|
|
<if test="radiance != null">radiance = #{radiance},</if>
|
|
<if test="radIllumination != null">rad_illumination = #{radIllumination},</if>
|
|
<if test="radIllumination != null">rad_illumination = #{radIllumination},</if>
|
|
<if test="radTemp != null">rad_temp = #{radTemp},</if>
|
|
<if test="radTemp != null">rad_temp = #{radTemp},</if>
|
|
|
|
+ <if test="focalLength != null">focal_length = #{focalLength},</if>
|
|
|
|
+ <if test="rawData != null">raw_data = #{rawData},</if>
|
|
|
|
+ <if test="processedData != null">processed_data = #{processedData},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|