解决启多个项目时,迁移成功后新建2个datainfo,(增加findById查询当前迁移的数据详情)。

web_backend_develope
chenlw 9 years ago
parent c20d5a3b45
commit f3fdce01f6

@ -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

Loading…
Cancel
Save