⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 searchresultbase.java

📁 网页采集系统 ================= 安装配置 ------- 1 程序我就不说了 2 配置文件 applicationContext.xml 里面有详细的注释 3 已经
💻 JAVA
字号:
package com.laozizhu.search;

import java.util.List;

/**
 * 搜索结果
 * 
 * @author 老紫竹研究室(laozizhu.com)
 */
public class SearchResultBase implements SearchResult {
  private int total;

  private List<Item> returnList;

  public int getTotal() {
    return total;
  }

  public void setTotal(int total) {
    this.total = total;
  }

  public List<Item> getReturnList() {
    return returnList;
  }

  public void setReturnList(List<Item> returnList) {
    this.returnList = returnList;
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -