package com.ruoyi.project.mapper;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.project.domain.BaseAnnextype;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* 捐献附件Mapper接口
|
*
|
* @author ruoyi
|
* @date 2023-11-10
|
*/
|
@Mapper
|
public interface BaseAnnextypeMapper extends BaseMapper<BaseAnnextype>
|
{
|
/**
|
* 查询捐献附件列表
|
*
|
* @param baseAnnextype 捐献附件
|
* @return 捐献附件集合
|
*/
|
public List<BaseAnnextype> selectBaseAnnextypeList(BaseAnnextype baseAnnextype);
|
}
|