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

📄 showaffichebydeptidaction.java

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

import java.util.ArrayList;

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.StaffBasicInfoDAOImpl;
import com.oa.db.Affiche;
import com.oa.db.AfficheDAOImpl;
import com.oa.db.User;
import com.oa.db.UserDAO;

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

	/** 
	 * Method execute
	 * @param mapping
	 * @param form
	 * @param request
	 * @param response
	 * @return ActionForward
	 */
	private StaffBasicInfoDAOImpl staffBasicInfoDao;
	
	public void setStaffBasicInfoDao(StaffBasicInfoDAOImpl staffBasicInfoDao) {
		this.staffBasicInfoDao = staffBasicInfoDao;
	}
	
	private UserDAO udao;
	private AfficheDAOImpl afficheDao;
	
	public void setAfficheDao(AfficheDAOImpl afficheDao) {
		this.afficheDao = afficheDao;
	}
	
	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response) {
		String empId = request.getSession().getAttribute("username").toString();
		//String empId = "Lx0124";
		User staffBasicInfo = (User)udao.ByUsernameQueryUser(empId).get(0);
		int deptId = staffBasicInfo.getDepartmentid(); 
		ArrayList<Affiche> deptAfficheList = new ArrayList<Affiche>();
		ArrayList<Affiche> publicafficheList = new ArrayList<Affiche>();
		deptAfficheList = afficheDao.showMenberAfficheByDeptId(0,deptId);
		publicafficheList = afficheDao.showMenberAfficheByDeptId(0,99);	
		request.setAttribute("deptAfficheList",deptAfficheList);
		request.setAttribute("publicAficheList", publicafficheList);
		return mapping.findForward("showAfficheIndex");

	}

	public UserDAO getUdao() {
		return udao;
	}

	public void setUdao(UserDAO udao) {
		this.udao = udao;
	}

	public AfficheDAOImpl getAfficheDao() {
		return afficheDao;
	}

	public StaffBasicInfoDAOImpl getStaffBasicInfoDao() {
		return staffBasicInfoDao;
	}
}

⌨️ 快捷键说明

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