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.test.dao.onetomany;
|
| import com.jeeplus.common.persistence.CrudDao;
| import com.jeeplus.common.persistence.annotation.MyBatisDao;
| import com.jeeplus.modules.test.entity.onetomany.TestDataChild;
|
| /**
| * 票务代理DAO接口
| * @author liugf
| * @version 2016-03-13
| */
| @MyBatisDao
| public interface TestDataChildDao extends CrudDao<TestDataChild> {
|
| }
|
|