accountservice.java
来自「一个关于tlms的一个小程序 看看能否帮助到别人」· Java 代码 · 共 70 行
JAVA
70 行
/**
* 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 + =
减小字号Ctrl + -
显示快捷键?