1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.iailab.module.event.dao;
|
| import com.iailab.framework.common.dao.BaseDao;
| import com.iailab.module.event.entity.EventInfoEntity;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * @author PanZhibao
| * @Description
| * @createTime 2024年05月30日
| */
| @Mapper
| public interface EventInfoDao extends BaseDao<EventInfoEntity> {
| }
|
|