Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. import itmo.foodtech.moneymaker.domain.Survey;
  2. import org.springframework.data.mongodb.repository.MongoRepository;
  3.  
  4. import java.util.List;
  5.  
  6. public interface SurveyRepository extends MongoRepository<Survey, Long> {
  7.     Survey findById(String id);
  8.  
  9.     Survey findByIdAndMetaTitle(String id, String title);
  10.  
  11.     List<Survey> findAllByMetaPosterId(String posterId);
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement