8.3
luodangjia
2024-08-03 67157345fe1878681e39ec186ef37ff6b3b5c1fc
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
package com.ruoyi.admin.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.admin.entity.Region;
 
import java.util.List;
 
/**
 * <p>
 * 省市区三级联动 服务类
 * </p>
 *
 * @author hjl
 * @since 2024-06-12
 */
public interface RegionService extends IService<Region> {
 
    /**
     * 收货地址省市区二级联动
     *
     * @param cityCodeList 城市编码列表
     * @return 无限级树
     */
    List<Region> addressTree(List<String> cityCodeList);
    List<Region> addressTree1(List<String> cityCodeList);
}