上传代码

This commit is contained in:
zhangdongxu
2017-12-19 14:55:52 +08:00
commit 13acafd43d
4777 changed files with 898870 additions and 0 deletions

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