📄 checkbalanceaction.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 + -