liyong
3 天以前 96eef805a3727639794ea90bfa82b3883f9f3d9c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.basic.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.basic.entity.District;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * <p>
 * 区表 Mapper 接口
 * </p>
 *
 * @author ruoyi
 * @since 2025-05-31
 */
@Mapper
public interface DistrictMapper extends BaseMapper<District> {
 
}