📄 wytwoneaction.java
字号:
package com.ksgl.body.index;
import com.core.web.Action;
import com.ksgl.map.*;
import com.opensymphony.xwork.ActionContext;
/**
* <p>Title: literature item </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2007</p>
*
* <p>Company: </p>
*
* @author hj
* @version 1.0
*/
public class WytwOneAction extends Action{
public WytwOneAction() {
}
T_sys_wytw ts=new T_sys_wytw();
private String id;
public String execute() throws Exception {
BO bo = new BO();
ts=bo.queryListly2(this.GetId("id"));
return SUCCESS;
}
public String GetId(String obj)
{
String id[] = (String[]) ActionContext.getContext().getParameters().get(obj);
return id[0];
}
public T_sys_wytw getTs() {
return ts;
}
public String getId() {
return id;
}
public void setTs(T_sys_wytw ts) {
this.ts = ts;
}
public void setId(String id) {
this.id = id;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -