soldtopartyservice.java

来自「一个关于tlms的一个小程序 看看能否帮助到别人」· Java 代码 · 共 61 行

JAVA
61
字号
/**
 * ============================================= 
 * 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 + =
减小字号Ctrl + -
显示快捷键?