istorageinfoservice.java
来自「一个关于物流的管理系统」· Java 代码 · 共 30 行
JAVA
30 行
package com.shunshi.ssh.service;
import java.util.List;
import org.extremecomponents.table.limit.Limit;
import com.shunshi.ssh.entity.AllInfo;
import com.shunshi.ssh.entity.Page;
import com.shunshi.ssh.entity.StorageInfo;
import com.shunshi.ssh.exception.AgentServiceException;
import com.shunshi.ssh.exception.StorageinfoServiceException;
public interface IStorageinfoService {
void addStorageinfo(StorageInfo Storageinfo) throws StorageinfoServiceException;
void updateState(int[] id,int[] state)throws StorageinfoServiceException;
void delete(int[] id)throws StorageinfoServiceException;
StorageInfo findById(int id)throws StorageinfoServiceException;
List findAll()throws StorageinfoServiceException;
List findByUser(int id)throws StorageinfoServiceException;
void updateStorageinfo(StorageInfo s)throws StorageinfoServiceException;
Page findByState(int state,Limit size,int totalRows)throws StorageinfoServiceException;
public AllInfo getAllInfo()throws StorageinfoServiceException;
public void saveAllInfo(AllInfo allInfo)throws StorageinfoServiceException;
public void deleteAllInfo(StorageInfo si)throws StorageinfoServiceException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?