1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  | package com.ruoyi.project.service; 
 |    
 |  import com.baomidou.mybatisplus.extension.service.IService; 
 |  import com.ruoyi.project.domain.BaseAnnextype; 
 |    
 |  import java.util.List; 
 |    
 |  /** 
 |   * 捐献附件Service接口 
 |   *  
 |   * @author ruoyi 
 |   * @date 2023-11-10 
 |   */ 
 |  public interface IBaseAnnextypeService extends IService<BaseAnnextype> 
 |  { 
 |    
 |      /** 
 |       * 查询捐献附件列表 
 |       *  
 |       * @param baseAnnextype 捐献附件 
 |       * @return 捐献附件集合 
 |       */ 
 |      public List<BaseAnnextype> queryList(BaseAnnextype baseAnnextype); 
 |  } 
 |  
  |