financedao.java

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

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