📄 wytwaction.java
字号:
package com.ksgl.body.index;
import com.core.web.*;
import com.ksgl.map.*;
/**
* <p>Title: literature item </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2007</p>
*
* <p>Company: </p>
*
* @author hj
* @version 1.0
*/
public class WytwAction extends Action{
public WytwAction() {
}
T_sys_wytw tss=new T_sys_wytw();
public String execute() throws Exception {
/*
String name[] = (String[]) ActionContext.getContext().getParameters().get("name");
String sex[] = (String[]) ActionContext.getContext().getParameters().get("sex");
String title[] = (String[]) ActionContext.getContext().getParameters().get("title");
ts.setName(name[0]);
ts.setSex(sex[0]);
ts.setTitle(title[0]);
*/
//1 是未回复 2是已回复
tss.setStatus("1");
BO bo = new BO();
bo.add1(tss);
return SUCCESS;
}
public T_sys_wytw getTss() {
return tss;
}
public void setTss(T_sys_wytw tss) {
this.tss = tss;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -