📄 querylist.java
字号:
package com.ksgl.body.index;
import java.util.*;
import com.core.web.Action;
import com.opensymphony.xwork.*;
/**
* <p>Title: literature item </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2007</p>
*
* <p>Company: </p>
*
* @author hj
* @version 1.0
*/
public class QueryList extends Action{
public QueryList() {
}
private List list1;
private String mkid;
public String execute() throws Exception {
BO bo = new BO();
list1=bo.queryList(paging, condition,this.GetMkid("mkid"));
this.setMkid(this.GetMkid("mkid"));
return SUCCESS;
}
public String GetMkid(String obj)
{
String mkid[] = (String[]) ActionContext.getContext().getParameters().get(obj);
return mkid[0];
}
public List getList1() {
return list1;
}
public String getMkid() {
return mkid;
}
public void setList1(List list1) {
this.list1 = list1;
}
public void setMkid(String mkid) {
this.mkid = mkid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -