etbjdel.java
来自「用JSP JAVA 做的 系统 只是初来扎到还望西黄!别乱来哦!」· Java 代码 · 共 17 行
JAVA
17 行
package com.chis.model.etbj;
import com.stframe.dao.DaoUtil;
import com.stframe.form.ActionForm;
import com.stframe.servlet.ActionInstance;
public class EtbjDel extends ActionInstance {
public int execute(ActionForm af) throws Exception {
String id = af.getHttpRequest().getParameter("id");
DaoUtil.execute(af.getConnection(),"delete from ET_TJQK where ID='"+id+"'");
af.getHttpRequest().setAttribute("result","删除儿童体检信息记录");
af.getHttpRequest().setAttribute("goto","Selevet.do?action=ETBJ_LOOK&rdo=h");
return 1;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?