searchresultbase.java

来自「网页采集系统 ================= 安装配置 -------」· Java 代码 · 共 31 行

JAVA
31
字号
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 + =
减小字号Ctrl + -
显示快捷键?