1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| /**
| * Copyright © 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
| */
| package com.jeeplus.modules.tools.dao;
|
| import com.jeeplus.common.persistence.CrudDao;
| import com.jeeplus.common.persistence.annotation.MyBatisDao;
| import com.jeeplus.modules.tools.entity.TestInterface;
|
| /**
| * 接口DAO接口
| * @author lgf
| * @version 2016-01-07
| */
| @MyBatisDao
| public interface TestInterfaceDao extends CrudDao<TestInterface> {
|
| }
|
|