1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.panzhihua.sangeshenbian.dao;
|
| import com.panzhihua.sangeshenbian.model.entity.BcRegion;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * <p>
| * 行政区划表 Mapper 接口
| * </p>
| *
| * @author
| * @since 2025-02-23
| */
| public interface BcRegionMapper extends BaseMapper<BcRegion> {
|
| }
|
|