iuserservice.java
来自「信息发布 发布系统 动态的菜单 和 信息统计」· Java 代码 · 共 39 行
JAVA
39 行
package com.xuntian.material.model.iservice.user;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionForm;
import com.xuntian.material.bean.UserBean;
import com.xuntian.material.exception.UserException;
public interface IUserService {
public abstract List<List<String>> list() throws UserException;
public abstract List<List<String>> search(ActionForm form) throws UserException;
public abstract UserBean fill(ActionForm form) throws UserException;
public abstract int save(HttpServletRequest request, ActionForm form) throws UserException;
public abstract int delete(HttpServletRequest request) throws UserException;
public abstract int saveGroup(HttpServletRequest request, ActionForm form)
throws UserException;
public abstract int saveRole(HttpServletRequest request, ActionForm form)
throws UserException;
public abstract List<List<String>> getUserMenu(ActionForm form)
throws UserException;
public abstract List<List<String>> getUserItem(ActionForm form)
throws UserException;
public abstract List<List<String>> getUserGroup(ActionForm form)
throws UserException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?