financeservice.java

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

JAVA
67
字号
/**
 * ============================================= 
 * Copyright 2006 szmx
 *
 * Change Revision
 * --------------------------------
 *   Date                Author         Remarks
 *   2006-4-24        hliu     Create com.szmx.tlms.finance.service.AccountDrCrService
 * =============================================
 */
package com.szmx.tlms.finance.service;

import com.szmx.framework.base.service.BaseService;
import com.szmx.framework.base.model.Pagination;
import com.szmx.tlms.finance.model.AccountDrCr;
import com.szmx.tlms.TlmsServiceException;

import java.util.Map;

/**
 * <desc>
 *
 * @author hliu
 * @since 2006-4-24
 */
public interface FinanceService extends BaseService {

//----------------This section is the  Account Dr & Cr Service Interface Start---------------
    /**
     * Get  one page's records ,There are some paramete in the paraMap
     *
     * @param paginationObj
     * @param paraMap       key             value
     *                      searchBean      search condition
     * @return Pagination
     * @throws TlmsServiceException
     */
    public Pagination getAccountDrCrs(final Pagination paginationObj, final Map paraMap) throws TlmsServiceException ;

    /**
     * save accountDrCr record
     *
     * @param accountDrCr
     * @throws TlmsServiceException
     */
    public void saveAccountDrCr(AccountDrCr accountDrCr) throws TlmsServiceException;

    /**
     * Get AccountDrCr record by id
     *
     * @param id
     * @return account
     * @throws TlmsServiceException
     */
    public AccountDrCr getAccountDrCr(Long id) throws TlmsServiceException;

    /**
     * Remove the AccountDrCr records by id in the id array
     *
     * @param id array
     * @throws TlmsServiceException
     */
    public void removeAllAccountDrCrs(String[] id) throws TlmsServiceException;

//----------------This section is the  Account Dr & Cr Service Interface End---------------
}

⌨️ 快捷键说明

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