⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 accountservice.java

📁 一个关于tlms的一个小程序 看看能否帮助到别人
💻 JAVA
字号:
/**
 * Created by szmx.
 * User: hliu
 * Date: 2006-4-6
 * Time: 18:03:24
 * To change this template use File | Settings | File Templates.
 */
package com.szmx.tlms.finance.service;

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

import java.util.List;
import java.util.Map;


public interface AccountService extends BaseService {

    /**
     * Get  one page's records ,There are some paramete in the paraMap
     *
     * @param paginationObj
     * @param paraMap       key             value
     *                      searchBean      search condition
     * @return Pagination
     */
    public Pagination getAccounts(final Pagination paginationObj, final Map paraMap);

    /**
     * Search the record if the SAP account is already in the database
     *
     * @param account
     * @return list of the Account record
     */
    public List getAccountsBySAPCode(final Account account);

    /**
     * save account record
     *
     * @param account
     */
    public void save(Account account);

    /**
     * Get account record by id
     *
     * @param id
     * @return account
     */
    public Account getAccount(Long id);

    /**
     * Get account by query conditionss
     *
     * @param param
     * @param value
     * @return Account
     */
    public Account getAccount(final String param, final String value);

    /**
     * Remove the Account records by id in the id array 
     *
     * @param id array
     */
    public void removeAll(String[] id);

}

⌨️ 快捷键说明

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