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

📄 shiptoservice.java

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