上传代码

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,18 @@
package com.nis.web.dao;
import com.nis.domain.restful.IpLocationPublic;
import java.math.BigDecimal;
public interface IpLocationPublicDao extends CrudDao<IpLocationPublic>{
int deleteByPrimaryKey(long id);
int insert(IpLocationPublic record);
int insertSelective(IpLocationPublic record);
IpLocationPublic selectByPrimaryKey(long id);
int updateByPrimaryKeySelective(IpLocationPublic record);
int updateByPrimaryKey(IpLocationPublic record);
}