wytwaction.java~20~
来自「一个专门用来快速开发网站的框架」· JAVA~20~ 代码 · 共 66 行
JAVA~20~
66 行
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 ts=new T_sys_wytw();
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]);
*/
System.out.println(tss.getName()+" name");
System.out.println(tss.getTitle()+" title");
System.out.println(tss.getLianxi()+" lainxi");
//BO bo = new BO();
//bo.add1(tss);
return SUCCESS;
}
public T_sys_wytw getTs() {
return ts;
}
public T_sys_wytw getTss() {
return tss;
}
public void setTs(T_sys_wytw ts) {
this.ts = ts;
}
public void setTss(T_sys_wytw tss) {
this.tss = tss;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?