IArchivesBorrowService.java 523 Bytes
package com.ruoyi.service;

import com.ruoyi.domain.ArchivesBorrow;
import com.ruoyi.domain.ArchivesBox;
import java.util.List;

/**
 * 【请填写功能名称】Service接口
 * 
 * @author ym
 * @date 2022-08-23
 */
public interface IArchivesBorrowService
{


    /**
     * 查询【请填写功能名称】列表
     * 
     * @param archivesBorrow 【请填写功能名称】
     * @return 【请填写功能名称】集合
     */
     List<ArchivesBox> selectArchivesBorrowList(ArchivesBorrow archivesBorrow);

}