📄 voucherlinedao.java
字号:
/**
* =============================================
* Copyright 2006 szmx
*
* Change Revision
* --------------------------------
* Date Author Remarks
* 2006-4-17 hliu Create com.szmx.tlms.finance.dao.VoucherLineDao
* =============================================
*/
package com.szmx.tlms.finance.dao;
import com.szmx.framework.base.dao.BaseDao;
import com.szmx.tlms.finance.model.VoucherLine;
import java.util.List;
/**
* The interface dao of the VoucherLine.
*
* @author hliu
* @since 2006-4-17
*/
public interface VoucherLineDao extends BaseDao {
/**
* Get the list of voucher line by query condition
* @param voucherLine
* @return List the list of the voucher line
*/
public List getVoucherLines(final VoucherLine voucherLine);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -