abtainmuchquitclientinfoaction.java

来自「上一上传oa系统漏掉web-inf文件夹」· Java 代码 · 共 66 行

JAVA
66
字号
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.oa.crm.publicClient.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;
import com.oa.crm.form.ClientInfoForm;

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

	/** 
	 * Method execute
	 * @param mapping
	 * @param form
	 * @param request
	 * @param response
	 * @return ActionForward
	 */
	
	private ClientInfoDAOImpl clientInfoDao;
	
	private ClientInfo clientInfo;
	
	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) {
		// TODO Auto-generated method stub
		String empId = request.getSession().getAttribute("empId").toString();
		ClientInfoForm clientInfoForm = (ClientInfoForm) form;
		if(clientInfoForm.getChkpla() != null){
			String[] clientIds = clientInfoForm.getChkpla();
			for (int i = 0; i < clientIds.length; i++) {
				String clientId = clientIds[i];
				clientInfo = clientInfoDao.findOneClientInfoById(clientId);
				clientInfoDao.abtainQuitClientInfo(empId, clientInfo);
			}
		}
		return mapping.findForward("showAllQuitClientInfo");
	}
}

⌨️ 快捷键说明

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