logsupvendorservice.java
来自「一个关于tlms的一个小程序 看看能否帮助到别人」· Java 代码 · 共 59 行
JAVA
59 行
/**
* =============================================
* Copyright 2006 szmx
*
* Change Revision
* --------------------------------
* Date Author Remarks
* 2006-4-20 terry.zhang Create com.szmx.tlms.supplychain.service.LogSupVendorService
* =============================================
*/
package com.szmx.tlms.supplychain.service;
import com.szmx.framework.base.model.Pagination;
import com.szmx.framework.base.service.BaseService;
import com.szmx.tlms.TlmsServiceException;
import com.szmx.tlms.supplychain.model.LogSupVendor;
import com.szmx.tlms.supplychain.dao.LogSupVendorDAO;
/**
* @author terry.zhang
* @since 2006-4-20
*/
public interface LogSupVendorService extends BaseService {
/**
* This method used by IOC
* @param logSupVendorDAO
*/
public void setLogSupVendorDAO(LogSupVendorDAO logSupVendorDAO);
/**
* This method used by IOC
* @param pageObj
* @param logSupVendor
* @return pagination object
*/
public Pagination getLogSupVendors(Pagination pageObj, LogSupVendor logSupVendor)throws TlmsServiceException;
/**
* This method used by IOC
* @param id
* @return LogSupVendor object
*/
public LogSupVendor getLogSupVendor(String id)throws TlmsServiceException;
/**
* This method used by IOC
* @param logSupVendor
*/
public void saveLogSupVendor(LogSupVendor logSupVendor)throws TlmsServiceException;
/**
* This method used by IOC
* @param id
*/
public void removeAllLogSupVendors(String[] id)throws TlmsServiceException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?