1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.iailab.module.data.indexdata.dao;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.iailab.module.data.indexdata.entity.IndexDataItemEntity;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * @author PanZhibao
| * @Description
| * @createTime 2022年09月08日 21:45:00
| */
| @Mapper
| public interface IndexDataItemDao extends BaseMapper<IndexDataItemEntity> {
| }
|
|