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

📄 checkbalanceaction.java

📁 因为许多人出去吃饭都一个人付帐
💻 JAVA
字号:
package cn.com.sdcncsi.lunch.balance.action;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import cn.com.sdcncsi.lunch.balance.service.CheckBalanceService;

import com.opensymphony.xwork2.ActionSupport;

public class CheckBalanceAction extends ActionSupport {

	private static Log logger = LogFactory.getLog(CheckBalanceAction.class.getName());
	private CheckBalanceService checkBalanceService;
	
	/* (non-Javadoc)
	 * @see com.opensymphony.xwork2.ActionSupport#execute()
	 */
	@Override
	public String execute() throws Exception {
		// TODO Auto-generated method stub
		logger.debug("execute");
		return INPUT;
	}

	/**
	 * @return the checkBalanceService
	 */
	public CheckBalanceService getCheckBalanceService() {
		return checkBalanceService;
	}

	/**
	 * @param checkBalanceService the checkBalanceService to set
	 */
	public void setCheckBalanceService(CheckBalanceService checkBalanceService) {
		this.checkBalanceService = checkBalanceService;
	}

}

⌨️ 快捷键说明

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