1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.iailab.module.data.http.dao;
|
| import com.iailab.framework.common.dao.BaseDao;
| import com.iailab.module.data.http.entity.EleLowTagEntity;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * @author PanZhibao
| * @Description
| * @createTime 2023年12月19日 08:35:00
| */
| @Mapper
| public interface EleLowTagDao extends BaseDao<EleLowTagEntity> {
| }
|
|