📄 salesorgservice.java
字号:
/**
* =============================================
* Copyright 2006 szmx
*
* Change Revision
* --------------------------------
* Date Author Remarks
* 2006-4-18 Alex.Ji Create com.szmx.SalesOrgService
* =============================================
*/
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.SalesOrgDAO;
import com.szmx.tlms.supplychain.model.SalesOrg;
import com.szmx.tlms.TlmsServiceException;
/**
* <desc>
*
* @author Alex.Ji
* @since 2006-4-18
*/
public interface SalesOrgService extends BaseService {
/**
*
* @param salesOrgDAO Be assigned to SalesOrgService to operate the database
* @throws TlmsServiceException
*/
public void setSalesOrgDAO(SalesOrgDAO salesOrgDAO)throws TlmsServiceException;
/**
*
* @param pageObj Be used to restore SalesOrg object that find from the database
* @param salesOrg Be used as an example to find SalesOrg object that are similar to from database
* @return Pagination
* @throws TlmsServiceException
*/
public Pagination getSalesOrgs(Pagination pageObj, SalesOrg salesOrg)throws TlmsServiceException;
/**
*
* @param id Be used to find the SalesOrg object which contains the id .
* @return SalesOrg
* @throws TlmsServiceException
*/
public SalesOrg getSalesOrg(String id)throws TlmsServiceException;
/**
*
* @param salesOrg To save the SalesOrg into database
* @throws TlmsServiceException
*/
public void saveSalesOrg(SalesOrg salesOrg)throws TlmsServiceException;
/**
*
* @param id The id array contains the ids of the SalesOrg object that will be deleted from database.
* @throws TlmsServiceException
*/
public void removeAllSalesOrg(String[] id)throws TlmsServiceException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -