📄 financedao.java
字号:
/**
* =============================================
* Copyright 2006 szmx
*
* Change Revision
* --------------------------------
* Date Author Remarks
* 2006-4-24 hliu Create com.szmx.tlms.finance.dao.AccountDrCrDao
* =============================================
*/
package com.szmx.tlms.finance.dao;
import com.szmx.framework.base.dao.BaseDao;
import com.szmx.framework.base.model.Pagination;
import com.szmx.tlms.finance.model.AccountDrCr;
import java.util.Map;
/**
*The interface dao of the AccountDrCrDao
*
* @author hliu
* @since 2006-4-24
*/
public interface FinanceDao extends BaseDao{
//----------------This section is the Account Dr & Cr implement Start---------------
/**
* Get one page's records There are some paramete in the paraMap
*
* @param paginationObj
* @param paraMap key value
* searchBean search condition
* @return the records by the query condition
*/
public Pagination getAccountDrCrs(final Pagination paginationObj, final Map paraMap);
/**
* Save AccountDrCr record to database
*
* @param accountDrCr
*/
public void saveAccountDrCr(final AccountDrCr accountDrCr);
/**
* return the AccountDrCr record by id
* @param id
* @return the AccountDrCr record by id
*/
public AccountDrCr getAccountDrCr(final Long id);
/**
* remove AccountDrCr record from database by id
* @param id
*/
public void removeAccountDrCr(final Long id);
//----------------This section is the Account Dr & Cr implement End---------------
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -