上传代码

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,19 @@
package com.nis.web.dao;
import com.nis.domain.restful.DmbPort;
/**
*
* @ClassName: DmbPortDao.java
* @Description: TODO
* @author (dell)
* @date 2016年9月9日 上午10:04:55
* @version V1.0
*/
@MyBatisDao
public interface DmbPortDao extends CrudDao<DmbPort>{
int delete(long id);
int insert(DmbPort record);
int update(DmbPort record);
}