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-ntc/src/main/java/com/nis/web/dao/SrcIpDao.java
2017-12-29 16:18:40 +08:00

25 lines
520 B
Java

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);
}