文书数据加密解密测试
This commit is contained in:
parent
2faaabdb4b
commit
4120a76ca8
|
|
@ -119,6 +119,17 @@ public class DocumentService {
|
||||||
return documentRepository.save(document);
|
return documentRepository.save(document);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据ID删除文书信息
|
||||||
|
*
|
||||||
|
* @param documentId 文书ID
|
||||||
|
*/
|
||||||
|
@Transactional
|
||||||
|
public void deleteDocumentById(String documentId) {
|
||||||
|
documentRepository.deleteById(documentId);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量删除文书信息
|
* 批量删除文书信息
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue