项目初始导入
This commit is contained in:
25
src/main/java/com/nis/web/dao/SrcIpDao.java
Normal file
25
src/main/java/com/nis/web/dao/SrcIpDao.java
Normal file
@@ -0,0 +1,25 @@
|
||||
package com.nis.web.dao;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import com.nis.domain.SrcIp;
|
||||
@MyBatisDao
|
||||
public interface SrcIpDao extends CrudDao<SrcIp> {
|
||||
|
||||
|
||||
List<SrcIp> getIpInfo(@Param("ip") Long ipaddr);
|
||||
|
||||
int deleteByPrimaryKey(Integer seqId);
|
||||
|
||||
int insert(SrcIp record);
|
||||
|
||||
int insertSelective(SrcIp record);
|
||||
|
||||
SrcIp selectByPrimaryKey(Integer seqId);
|
||||
|
||||
int updateByPrimaryKeySelective(SrcIp record);
|
||||
|
||||
int updateByPrimaryKey(SrcIp record);
|
||||
}
|
||||
Reference in New Issue
Block a user