IArchivesBorrowService.java
489 Bytes
package com.ruoyi.service;
import com.ruoyi.domain.ArchivesBorrow;
import java.util.List;
/**
* 【请填写功能名称】Service接口
*
* @author ym
* @date 2022-08-23
*/
public interface IArchivesBorrowService
{
/**
* 查询【请填写功能名称】列表
*
* @param archivesBorrow 【请填写功能名称】
* @return 【请填写功能名称】集合
*/
List<ArchivesBorrow> selectArchivesBorrowList(ArchivesBorrow archivesBorrow);
}