📄 sysadminmanager.java
字号:
package com.strong.ims.service.sysadmin;
import java.util.List;
import com.strong.ims.comutil.PageBean;
import com.strong.ims.comutil.exception.BaseException;
import com.strong.ims.domain.sysmanage.StorageInfo;
/**
* 系统管理业务 接口
* @author jqg
*
*/
public interface SysAdminManager {
/**
* 仓库管理
*/
public void addNewStorageInfo(StorageInfo storageInfo )throws BaseException; //添加新仓库
public StorageInfo getStorageInfoById(String storageId) throws BaseException; //获取某仓库信息
public List getStorageInfoByHQL(String storageName,String storageState)throws BaseException; //查询仓库列表,根据 名 和 状态
public List getStorageInfoByHQL(String storageName,String storageState,PageBean pageBean)
throws BaseException; //查询仓库列表,根据 名 和 状态 支持分页
public void deleteStorageInfoById(String stroageId)throws BaseException; //删除某仓库信息,根据id
public void editStorageInfo(StorageInfo storageInfo)throws BaseException; //修改某仓库信息
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -