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.mapper; 
 |    
 |    
 |  import com.baomidou.mybatisplus.core.mapper.BaseMapper; 
 |  import com.ruoyi.project.domain.BaseTravelcity; 
 |    
 |  import java.util.List; 
 |    
 |  /** 
 |   * 差旅城市和补贴标准Mapper接口 
 |   *  
 |   * @author ruoyi 
 |   * @date 2023-04-23 
 |   */ 
 |  public interface BaseTravelcityMapper extends BaseMapper<BaseTravelcity> 
 |  { 
 |      /** 
 |       * 查询差旅城市和补贴标准列表 
 |       * 
 |       * @param baseTravelcity 差旅城市和补贴标准 
 |       * @return 差旅城市和补贴标准集合 
 |       */ 
 |      public List<BaseTravelcity> selectBaseTravelcityList(BaseTravelcity baseTravelcity); 
 |  } 
 |  
  |