⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 attornfindclientinfoaction.java

📁 一个oa系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.oa.crm.myClientManager.action;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;

import com.oa.crm.db.ClientInfo;
import com.oa.crm.db.ClientInfoDAOImpl;

/**
 * MyEclipse Struts Creation date: 08-28-2007
 * 
 * XDoclet definition:
 * 
 * @struts.action validate="true"
 */
public class AttornFindClientInfoAction extends Action {
	/*
	 * Generated Methods
	 */

	/**
	 * Method execute
	 * 
	 * @param mapping
	 * @param form
	 * @param request
	 * @param response
	 * @return ActionForward
	 */
	private ClientInfo clientInfo;

	private ClientInfoDAOImpl clientInfoDao;

	public void setClientInfo(ClientInfo clientInfo) {
		this.clientInfo = clientInfo;
	}

	public void setClientInfoDao(ClientInfoDAOImpl clientInfoDao) {
		this.clientInfoDao = clientInfoDao;
	}

	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response) {
		String clientId = request.getParameter("clientId");
		clientInfo = clientInfoDao.findOneClientInfoById(clientId);
		request.setAttribute("clientInfo", clientInfo);
		
		return mapping.findForward("attornFindClientInfo");
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -