This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-argus-service/src/main/java/com/nis/web/dao/ControlLogDao.java
zhangdongxu 13acafd43d 上传代码
2017-12-19 14:55:52 +08:00

32 lines
724 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @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);
}