Javers 以什么方式审核自定义“删除”?使用 spring-boot 集成,例如:
@Transactional
@Modifying
@Query(" delete from ExecutePayment exeP " +
" where exeP.customer = :customer " +
" and exeP.status = 'EXECUTED' ")
void deletePendingExecutionsFromCustomer(@Param("customer") Customer customer);