📄 warehouseaddrservice.java
字号:
/**
* =============================================
* Copyright 2006 szmx
*
* Change Revision
* --------------------------------
* Date Author Remarks
* 2006-4-18 Alex.Ji Create com.szmx.WarehouseAddrService
* =============================================
*/
package com.szmx.tlms.supplychain.service;
import com.szmx.framework.base.service.BaseService;
import com.szmx.framework.base.model.Pagination;
import com.szmx.tlms.supplychain.dao.WareHourseAddrDAO;
import com.szmx.tlms.supplychain.model.WareHourseAddr;
import com.szmx.tlms.TlmsServiceException;
/**
* <desc>
*
* @author Alex.Ji
* @since 2006-4-18
*/
public interface WarehouseAddrService extends BaseService {
/**
*
* @param wareHourseAddrDAO assigned to the WarehouseAddrService to operate the database
*/
public void setWareHourseAddrDAO(WareHourseAddrDAO wareHourseAddrDAO);
/**
*
* @param pageObj used to restore the the wareHourseAddr object find from the database
* @param wareHourseAddr used as example to find the wareHourseAddr object similar to
* @return Pagination
*/
public Pagination getWareHourseAddrs(Pagination pageObj, WareHourseAddr wareHourseAddr);
/**
*
* @param id to find the wareHourseAddr object from database that contains the id
* @return WareHourseAddr
*/
public WareHourseAddr getWareHourseAddr(String id);
/**
*
* @param wareHourseAddr used to save
* @throws TlmsServiceException
*/
public void saveWareHourseAddr(WareHourseAddr wareHourseAddr)throws TlmsServiceException ;
/**
*
* @param id used to remove the wareHourseAddr object from the database that contains the id
* @throws TlmsServiceException
*/
public void removeAllWareHourseAddr(String[] id)throws TlmsServiceException ;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -