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/FakeIpConfigCompileDao.java
zhangdongxu 13acafd43d 上传代码
2017-12-19 14:55:52 +08:00

25 lines
682 B
Java

package com.nis.web.dao;
import com.nis.domain.restful.FakeIpConfigCompile;
/**
*
* @ClassName: FakeIpConfigCompileDao.java
* @Description: TODO
* @author (wx)
* @date 2016年9月8日 下午3:23:07
* @version V1.0
*/
@MyBatisDao
public interface FakeIpConfigCompileDao extends CrudDao<FakeIpConfigCompile> {
int delete(Long compileId);
long getCompileId();
int insert(FakeIpConfigCompile record);
int insertSelective(FakeIpConfigCompile record);
FakeIpConfigCompile selectByPrimaryKey(Long compileId);
int updateByPrimaryKeySelective(FakeIpConfigCompile record);
int updateByPrimaryKey(FakeIpConfigCompile record);
}