|
|
|
@ -68,6 +68,18 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
|
|
|
|
|
ORDER BY a.id
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<!-- 根据id查看某条记录信息 -->
|
|
|
|
|
<select id="findById" parameterType ="java.lang.Integer" resultType="com.platform.entities.DataInfoEntityMoveTmp">
|
|
|
|
|
SELECT
|
|
|
|
|
a.id id,a.regionalism_code regionalismCode,a.dst_path dstPath,a.complete_status completeStatus,
|
|
|
|
|
a.rate rate, a.lasttime lastTime, a.system_code systemCode,a.dst_volume_ip dstVolumeIp,a.dst_volume_path dstVolumePath
|
|
|
|
|
FROM
|
|
|
|
|
move_data_tmp a
|
|
|
|
|
<where>
|
|
|
|
|
a.id = #{id}
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<update id="update" parameterType="com.platform.entities.DataInfoEntityMoveTmp">
|
|
|
|
|
UPDATE
|
|
|
|
|
move_data_tmp
|
|
|
|
|