istoragehouseservice.java

来自「一个关于物流的管理系统」· Java 代码 · 共 28 行

JAVA
28
字号
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.StorageHouse;
import com.shunshi.ssh.entity.StorageInfo;
import com.shunshi.ssh.exception.AgentServiceException;
import com.shunshi.ssh.exception.StoragehouseServiceException;

public interface IStoragehouseService {
	void addStoragehouse(StorageHouse storagehouse) throws StoragehouseServiceException;
	void updateState(int id,int state)throws StoragehouseServiceException;
	void delete(int[] id)throws StoragehouseServiceException;
	StorageHouse findById(int id)throws StoragehouseServiceException;
	List findAll()throws StoragehouseServiceException;
	List findByUser(int id)throws StoragehouseServiceException;
	void update(StorageHouse s)throws StoragehouseServiceException;
	Page findByState(int state,Limit size,int totalRows)throws StoragehouseServiceException;

	public AllInfo getAllInfo()throws StoragehouseServiceException;
	public void saveAllInfo(AllInfo allInfo)throws StoragehouseServiceException;
	public void deleteAllInfo(StorageHouse sh)throws StoragehouseServiceException;
}

⌨️ 快捷键说明

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