liusheng
2024-03-11 4920ea5372b919f8b8f27cd709e1ab4040fe8d2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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);
}