puzhibing
2024-01-30 80b3ea5587ff7ec20541d9ca7c6c28739e4d615b
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
27
28
29
30
31
32
33
package com.dsh.course.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dsh.course.entity.OpenCity;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface OpenCityMapper extends BaseMapper<OpenCity> {
 
 
    /**
     * 获取开通城市列表(有效的)
     * @return
     */
    List<OpenCity> queryOpenCity();
 
 
    /**
     * 获取开通城市
     * @param code
     * @return
     */
    List<OpenCity> queryByCode(@Param("code") String code);
 
    List<OpenCity> selectList1();
 
 
    List<OpenCity> selectListCity(@Param("language") Integer language);
 
    List<OpenCity> selectListCity1(@Param("language") Integer language, @Param("code") Integer code);
 
}