1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.xinquan.system.mapper;
|
| import com.xinquan.system.api.domain.TreeLevelSetting;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * <p>
| * 树苗音频表 Mapper 接口
| * </p>
| *
| * @author mitao
| * @since 2024-08-21
| */
| public interface TreeLevelSettingMapper extends BaseMapper<TreeLevelSetting> {
|
| }
|
|