Done ticket GEPAFINBE-223 & GEPAFINBE-224
This commit is contained in:
@@ -31,5 +31,7 @@ public interface CompanyRepository extends JpaRepository<CompanyEntity, Long> {
|
||||
""")
|
||||
Page<CompanyEntity> findCompaniesWithMissingVatCheck(Pageable pageable);
|
||||
|
||||
List<CompanyEntity> findByJsonIsNotNullAndPecIsNull();
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
package net.gepafin.tendermanagement.repositories;
|
||||
|
||||
import net.gepafin.tendermanagement.entities.NdganagEntity;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
@Repository
|
||||
public interface NdganagRepository extends JpaRepository<NdganagEntity,Long> {
|
||||
|
||||
NdganagEntity findByVatNumber(String vatNumber);
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user