public WeiboPost findPostByPid(String pid) { return weiboPostRepository.findByPid(pid); }
public void saveWeiboPost(WeiboPost weiboPost) { weiboPostRepository.save(weiboPost); }
public List<WeiboPost> findAllPosts() { return weiboPostRepository.findAll(); }