BackOpeAction.java 684 Bytes
Newer Older
罗绍泽 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
package com.gaowj.system.back;

import com.gaowj.business.SystemOpeBusiness;
import com.gaowj.business.exception.BusinessException;
import com.opensymphony.xwork2.ActionSupport;

public class BackOpeAction extends ActionSupport {

	/**
	 * 
	 */
	private static final long serialVersionUID = -2542515680670385490L;
	
	private SystemOpeBusiness systemOpeBusiness;
	
	
	
	public SystemOpeBusiness getSystemOpeBusiness() {
		return systemOpeBusiness;
	}



	public void setSystemOpeBusiness(SystemOpeBusiness systemOpeBusiness) {
		this.systemOpeBusiness = systemOpeBusiness;
	}



	public String execute() throws BusinessException {
		//获取业务服务类
		
		return SUCCESS;
	}

}