1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| /**
| * Copyright © 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
| */
| package com.jeeplus.modules.sys.dao;
|
| import com.jeeplus.common.persistence.CrudDao;
| import com.jeeplus.common.persistence.annotation.MyBatisDao;
| import com.jeeplus.modules.sys.entity.Log;
|
| /**
| * 日志DAO接口
| * @author jeeplus
| * @version 2014-05-16
| */
| @MyBatisDao
| public interface LogDao extends CrudDao<Log> {
|
| public void empty();
| }
|
|