package com.dsh.course.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.dsh.course.entity.OpenCity;
|
import com.dsh.course.model.vo.BaseWarpper;
|
|
import java.util.List;
|
|
public interface IOpenCityService extends IService<OpenCity> {
|
|
|
/**
|
* 获取开通城市列表
|
* @return
|
* @throws Exception
|
*/
|
List<BaseWarpper> queryOpenCity() throws Exception;
|
|
|
/**
|
* 判断是否是开通城市
|
* @param code
|
* @return
|
* @throws Exception
|
*/
|
boolean openCity(String code) throws Exception;
|
}
|