📄 iuserservice.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -