|
@@ -720,5 +720,18 @@
|
|
|
where id = #{item.id}
|
|
|
</foreach>
|
|
|
</update>
|
|
|
+ <update id="updateAllChild">
|
|
|
+ update
|
|
|
+ m_archive_tree_contract
|
|
|
+ <set>
|
|
|
+ file_number_prefix = #{node.fileNumberPrefix},
|
|
|
+ storage_time = #{node.storageTime},
|
|
|
+ rollor = #{node.rollor},
|
|
|
+ reviewer = #{node.reviewer},
|
|
|
+ specification = #{node.specification},
|
|
|
+ archive_name_suffix = #{node.archiveNameSuffix}
|
|
|
+ </set>
|
|
|
+ where is_deleted = 0 and project_id = #{node.projectId} and FIND_IN_SET(#{node.id},ancestors) > 0
|
|
|
+ </update>
|
|
|
|
|
|
</mapper>
|