voucherlinedao.java

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

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