上传代码
This commit is contained in:
25
src/main/java/com/nis/web/dao/FakeIpConfigCompileDao.java
Normal file
25
src/main/java/com/nis/web/dao/FakeIpConfigCompileDao.java
Normal file
@@ -0,0 +1,25 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user