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

📄 soldtopartyservice.java

📁 一个关于tlms的一个小程序 看看能否帮助到别人
💻 JAVA
字号:
/**
 * ============================================= 
 * Copyright 2006 szmx
 *
 * Change Revision
 * --------------------------------
 *   Date                Author         Remarks
 *   2006-4-19        Alex.Ji     Create com.szmx.tlms.supplychain.service.SoldToPartyService
 * =============================================
 */
package com.szmx.tlms.supplychain.service;

import com.szmx.tlms.supplychain.dao.SoldToPartyDAO;
import com.szmx.tlms.supplychain.model.SoldToParty;
import com.szmx.tlms.TlmsServiceException;
import com.szmx.framework.base.service.BaseService;
import com.szmx.framework.base.model.Pagination;

/**
 * <desc>
 *
 * @author Alex.Ji
 * @since 2006-4-19
 */
public interface SoldToPartyService extends BaseService  {
    /**
     * This method to assign a DAO to SoldToPartyService..
     *
     * @param soldToPartyDAO to help the ShipToService Operate the database
     *
     */
    public void setSoldToPartyDAO(SoldToPartyDAO soldToPartyDAO);


/**
 * This method to get a batch soldToParty object.
 *
 * @param pageObj to restore the soldToParty object
 *
 */
public Pagination getSoldToParties(Pagination pageObj, SoldToParty soldToParty);

/**
 * This method saves or updates a single cost center object.
 *
 * @param id  the shipto object's identity
 * @throws com.szmx.tlms.TlmsServiceException
 */

public SoldToParty getSoldToParty(String id) throws TlmsServiceException;

/**
 * This method saves or updates a single cost center object.
 *
 * @param soldToParty  soldToParty object
 * @throws com.szmx.tlms.TlmsServiceException
 */

public void saveSoldToParty(SoldToParty soldToParty)throws TlmsServiceException;

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -