📄 financeservice.java
字号:
/**
* =============================================
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -