baseaction.java

来自「基于ssh2的三者整合」· Java 代码 · 共 15 行

JAVA
15
字号
package com.lixineng.action.base;

import com.lixineng.service.AuctionService;
import com.opensymphony.xwork2.ActionSupport;

public class BaseAction extends ActionSupport{
	protected AuctionService aucService;

	public void setAucService(AuctionService aucService) {
		this.aucService = aucService;
	}
	

}

⌨️ 快捷键说明

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