📄 beanlogoperation.java
字号:
/**
* @(#)tarena.action.BeanLogOperation.java 2008-11-5
* Copy Right Information : Tarena
* Project : xindou
* JDK version used : jdk1.6.4
* Comments : 豆豆操作记录类。
* Version : 1.0
* Sr Date Modified By Why & What is modified
* 1. 2008-11-5 小猪 新建
**/
package tarena.action;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.actions.MappingDispatchAction;
/**
* 豆豆操作记录类。
* 2008-11-5
* @author 达内科技[Tarena Training Group]
* @version 1.0
* @since JDK1.6(建议)
*/
public class BeanLogOperation extends MappingDispatchAction {
/**
* 豆豆操作记录
*/
public ActionForward usercpdoudoulog(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
//此处记得保存rootid
return mapping.findForward("usercpdoudoulog");
}
/**
* 积分支出记录
*/
public ActionForward usercpcreditspayoutlog(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
//此处记得保存rootid
return mapping.findForward("usercpcreditspayoutlog");
}
/**
* 积分收入记录
*/
public ActionForward usercpcreditspayinlog(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
//此处记得保存rootid
return mapping.findForward("usercpcreditspayinlog");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -