Esempio n. 1
0
  /**
   * 查询某一群下得干货
   *
   * @param keywords
   * @param pageable
   * @return
   */
  public MahoutOfType findoneByindex(String index) {

    MahoutOfType m = mahoutOfTypeRepository.findOneByIndex(index);
    return m;
  }
Esempio n. 2
0
  /**
   * 查询某一群下得干货
   *
   * @param keywords
   * @param pageable
   * @return
   */
  public long count() {

    long m = mahoutOfTypeRepository.count();
    return m;
  }
Esempio n. 3
0
  /**
   * 查询某一群下得干货
   *
   * @param keywords
   * @param pageable
   * @return
   */
  public void delete() {

    mahoutOfTypeRepository.deleteAll();
  }
Esempio n. 4
0
  /**
   * 查询某一群下得干货
   *
   * @param keywords
   * @param pageable
   * @return
   */
  public MahoutOfType findone(String id) {

    MahoutOfType m = mahoutOfTypeRepository.findOneBySourceid(id);
    return m;
  }
Esempio n. 5
0
  /**
   * 查询某一群下得干货
   *
   * @param keywords
   * @param pageable
   * @return
   */
  public void save(MahoutOfType m) {

    mahoutOfTypeRepository.save(m);
  }