1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.ruoyi.user.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ruoyi.user.entity.Region;
|
| /**
| * <p>
| * 省市区三级联动 服务类
| * </p>
| *
| * @author hjl
| * @since 2024-06-12
| */
| public interface RegionService extends IService<Region> {
|
| /**
| * 选择城市市区列表
| *
| * @param keyword 搜索关键字
| * @return 市区列表
| */
| Object urbanArea(String keyword);
| }
|
|