|
@@ -27,34 +27,4 @@ public interface SceneImportMapper {
|
|
|
|
|
|
void deleteImportTask(SceneImportPO po);
|
|
|
|
|
|
- @Update("update scene_natural\n" +
|
|
|
- "set is_deleted = '1',\n" +
|
|
|
- " modify_user_id = #{po.modifyUserId},\n" +
|
|
|
- " modify_time = #{po.modifyTime}\n" +
|
|
|
- "where natural_name in (select scene_names\n" +
|
|
|
- " from scene_import_task\n" +
|
|
|
- " where id = #{po.id}\n" +
|
|
|
- ")")
|
|
|
- void deleteNaturalByTaskId(@Param("po") SceneImportPO sceneImportPO);
|
|
|
-
|
|
|
- @Update("update scene_standards_regulations\n" +
|
|
|
- "set is_deleted = '1',\n" +
|
|
|
- " modify_user_id = #{po.modifyUserId},\n" +
|
|
|
- " modify_time = #{po.modifyTime}\n" +
|
|
|
- "where scene_name in (select scene_names\n" +
|
|
|
- " from scene_import_task\n" +
|
|
|
- " where id = #{po.id}\n" +
|
|
|
- ")")
|
|
|
- void deleteStandardsByTaskId(@Param("po") SceneImportPO sceneImportPO);
|
|
|
-
|
|
|
- @Update("update scene_accident\n" +
|
|
|
- "set is_deleted = '1',\n" +
|
|
|
- " modify_user_id = #{po.modifyUserId},\n" +
|
|
|
- " modify_time = #{po.modifyTime}\n" +
|
|
|
- "where scene_name in (select scene_names\n" +
|
|
|
- " from scene_import_task\n" +
|
|
|
- " where id = #{po.id}\n" +
|
|
|
- ")")
|
|
|
- void deleteAccidentByTaskId(@Param("po") SceneImportPO sceneImportPO);
|
|
|
-
|
|
|
}
|