xuhy
2024-12-13 b5bab032e80f0233fdf06a4e8de2599bc6b65e47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.system.domain.TRegion;
import com.ruoyi.system.dto.RegionDto;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * <p>
 * 省市区三级联动 Mapper 接口
 * </p>
 *
 * @author luodangjia
 * @since 2024-09-19
 */
@Mapper
public interface TRegionMapper extends BaseMapper<TRegion> {
 
    List<RegionDto> regionTree();
}