项目初始导入

This commit is contained in:
dell
2017-12-29 16:18:40 +08:00
commit 0788f42ae7
3221 changed files with 500217 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
/**
* @Title: ControlLogDao.java
* @Package com.nis.web.dao
* @Description: TODO(用一句话描述该文件做什么)
* @author darnell
* @date 2016年8月15日 下午4:13:49
* @version V1.0
*/
package com.nis.web.dao;
import java.util.List;
import com.nis.domain.ControlLog;
/**
* @ClassName: ControlLogDao
* @Description: TODO(这里用一句话描述这个类的作用)
* @author (darnell)
* @date 2016年8月15日 下午4:13:49
* @version V1.0
*/
@MyBatisDao
public interface ControlLogDao extends CrudDao<ControlLog> {
List<ControlLog> getLogInfo(ControlLog controlLog);
void saveControlLog(ControlLog controlLog);
void removeControlLog(long id);
}