1.0.0-SNAPSHOT

This commit is contained in:
insanity 2017-05-26 19:00:36 +09:00
parent f146ac777e
commit c37b8c5346
2 changed files with 3 additions and 3 deletions

View File

@ -13,6 +13,6 @@
<groupId>com.loafle</groupId> <groupId>com.loafle</groupId>
<artifactId>overflow_base_dao</artifactId> <artifactId>overflow_base_dao</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0.0-RELEASE</version> <version>1.0.0-SNAPSHOT</version>
</project> </project>

View File

@ -4,8 +4,8 @@ package com.loafle.overflow.commons.dao;
* Created by insanity on 17. 5. 25. * Created by insanity on 17. 5. 25.
*/ */
public interface BaseDAO<T> { public interface BaseDAO<T> {
T find(T entity); T find(String id);
T create(T entity); T create(T entity);
T update(T entity); T update(T entity);
void delete(T entity); String delete(T entity);
} }