querycgfb.java~11~

来自「一个专门用来快速开发网站的框架」· JAVA~11~ 代码 · 共 45 行

JAVA~11~
45
字号
package com.ksgl.body.index;

import java.util.*;

import org.apache.commons.logging.*;
import com.core.web.*;

/**
 * <p>Title: literature item </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2007</p>
 *
 * <p>Company: </p>
 *
 * @author hj
 * @version 1.0
 */
public class QueryCgFb extends Action {

    private List list;
  public QueryCgFb()
  {
    list=new ArrayList();
  }

  public String execute() throws Exception
  {
      System.out.print("  **************跳进antion***************");
       BO bo = new BO();
       list=bo.queryListCg(paging,condition);
       return SUCCESS;
   }

  public List getList() {
    return list;
  }

  public void setList(List list) {
    this.list = list;
  }

}

⌨️ 快捷键说明

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