@@ -28,7 +28,7 @@ package org.hswebframework.web.service;
* @author zhouhao
* @since 3.0
*/
-public interface CreateEntityService<E> {
+public interface CreateEntityService<E> extends Service {
/**
* 创建实体
*
@@ -21,7 +21,7 @@ package org.hswebframework.web.service;
-public interface DeleteService<PK> {
+public interface DeleteService<PK> extends Service {
* 根据主键删除记录
-public interface InsertService<E, PK> {
+public interface InsertService<E, PK> extends Service {
* 添加一条数据
@@ -25,7 +25,7 @@ import java.util.List;
* @see QueryByEntityService
-public interface QueryService<E, PK> {
+public interface QueryService<E, PK> extends Service {
* 根据主键查询
@@ -19,8 +19,6 @@
package org.hswebframework.web.service;
- * TODO 完成注释
- *
public interface Service {
@@ -1,8 +1,6 @@
public interface Validator<T> {