shiptoservice.java
来自「一个关于tlms的一个小程序 看看能否帮助到别人」· Java 代码 · 共 72 行
JAVA
72 行
/**
* =============================================
* Copyright 2006 szmx
*
* Change Revision
* --------------------------------
* Date Author Remarks
* 2006-4-18 Alex.Ji Create com.szmx.ShipToService
* =============================================
*/
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.ShipToDAO;
import com.szmx.tlms.supplychain.model.ShipTo;
import com.szmx.tlms.TlmsServiceException;
/**
* <desc>
*
* @author Alex.Ji
* @since 2006-4-18
*/
public interface ShipToService extends BaseService {
/**
* This method to assign a DAO to ShipToService..
*
* @param shipToDAO to help the ShipToService Operate the database
*
*/
public void setShipToDAO(ShipToDAO shipToDAO);
/**
* This method to get a batch ShipTo object.
*
* @param pageObj to restore the shipto object
*
*/
public Pagination getShipTos(Pagination pageObj, ShipTo shipTo);
/**
* This method saves or updates a single cost center object.
*
* @param id the shipto object's identity
* @throws com.szmx.tlms.TlmsServiceException
*/
public ShipTo getShipTo(String id) throws TlmsServiceException;
/**
* This method saves or updates a single cost center object.
*
* @param shipTo cost center object
* @throws com.szmx.tlms.TlmsServiceException
*/
public void saveShipTo(ShipTo shipTo)throws TlmsServiceException;
/**
* This method removes a single cost center object.
*
* @param id id array contais the Shipto object
* @throws TlmsServiceException
*/
public void removeAllShipTo(String[] id)throws TlmsServiceException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?