itransportservice.java

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

JAVA
27
字号
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.Transport;
import com.shunshi.ssh.exception.GoodsServiceException;
import com.shunshi.ssh.exception.TransportServiceException;


public interface ITransportService {
	public void addTransport(Transport transport)throws TransportServiceException;		//�����µ���f��Ϣ
	public void deleteTransport(Long[] ls)throws TransportServiceException; 		//���idɾ����f��Ϣ
	public void updateState(long id,int state)throws TransportServiceException;//������f��Ϣ״̬
	public Transport findTransportById(long id)throws TransportServiceException;	//���id���в�ѯ
	public List findTransportByUserId(long userId)throws TransportServiceException;	//��ѯijһuser��������f��Ϣ
	public List findAllTransport()throws TransportServiceException;	//��ѯ������f��Ϣ
	public Page findByState(int state,Limit size,int totalRows) throws TransportServiceException;//���״̬��ѯ
	public void updateTransport(Transport transport)throws TransportServiceException;
	public AllInfo getAllInfo()throws GoodsServiceException;
	public void saveAllInfo(AllInfo allInfo)throws GoodsServiceException;
	public void deleteAll(Long id,String type)throws TransportServiceException;
}

⌨️ 快捷键说明

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