|
@ -102,7 +102,7 @@ public interface ArchivesCaseRepository extends JpaRepository<ArchivesCase, Stri |
|
|
@Modifying |
|
|
@Modifying |
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
@Query(nativeQuery = true, |
|
|
@Query(nativeQuery = true, |
|
|
value = "update archives_case set storage_type = ?2,deposit_num = ?3 where id in ?1") |
|
|
|
|
|
|
|
|
value = "update archives_case set storage_type = ?2 where id in ?1") |
|
|
void manualConfirm(List<String> caseIds,Integer storageType); |
|
|
void manualConfirm(List<String> caseIds,Integer storageType); |
|
|
|
|
|
|
|
|
@Query(nativeQuery = true, |
|
|
@Query(nativeQuery = true, |
|
|