baseactioninterface.java
来自「基于ssh2的三者整合」· Java 代码 · 共 24 行
JAVA
24 行
package com.lixineng.action.base;
import com.lixineng.service.AuctionService;
import com.opensymphony.xwork2.Action;
public class BaseActionInterface implements Action
{
protected AuctionService aucService;
public void setAucService(AuctionService aucService) {
this.aucService = aucService;
}
public String execute() throws Exception
{
return SUCCESS;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?