package com.stylefeng.guns.modular.system.dao;
|
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
import com.stylefeng.guns.modular.system.model.OpenCity;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
public interface OpenCityMapper extends BaseMapper<OpenCity> {
|
|
|
/**
|
* 获取开通城市列表(有效的)
|
* @return
|
*/
|
List<OpenCity> queryOpenCity();
|
|
|
/**
|
* 获取开通城市
|
* @return
|
*/
|
List<OpenCity> queryByCode(@Param("city") String[] city);
|
}
|