ArchivesCollectVolumeMapper.java 1.62 KB
package com.ruoyi.mapper;

import com.ruoyi.domain.ArchivesCollectVolume;

import java.util.List;

/**
 * 【请填写功能名称】Mapper接口
 * 
 * @author li
 * @date 2022-08-03
 */
public interface ArchivesCollectVolumeMapper 
{
    /**
     * 查询【请填写功能名称】
     * 
     * @param id 【请填写功能名称】主键
     * @return 【请填写功能名称】
     */
    public ArchivesCollectVolume selectArchivesCollectVolumeById(Long id);

    /**
     * 查询【请填写功能名称】列表
     * 
     * @param archivesCollectVolume 【请填写功能名称】
     * @return 【请填写功能名称】集合
     */
    public List<ArchivesCollectVolume> selectArchivesCollectVolumeList(ArchivesCollectVolume archivesCollectVolume);

    /**
     * 新增【请填写功能名称】
     * 
     * @param archivesCollectVolume 【请填写功能名称】
     * @return 结果
     */
    public int insertArchivesCollectVolume(ArchivesCollectVolume archivesCollectVolume);

    /**
     * 修改【请填写功能名称】
     * 
     * @param archivesCollectVolume 【请填写功能名称】
     * @return 结果
     */
    public int updateArchivesCollectVolume(ArchivesCollectVolume archivesCollectVolume);

    /**
     * 删除【请填写功能名称】
     * 
     * @param id 【请填写功能名称】主键
     * @return 结果
     */
    public int deleteArchivesCollectVolumeById(Long id);

    /**
     * 批量删除【请填写功能名称】
     * 
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteArchivesCollectVolumeByIds(Long[] ids);
}