⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logsupvendorservice.java

📁 一个关于tlms的一个小程序 看看能否帮助到别人
💻 JAVA
字号:
/**
 * =============================================
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -