优化说明

This commit is contained in:
zhouhao
2018-04-23 18:08:03 +08:00
parent 96d2095d45
commit 9db9d41c8d
6 changed files with 4 additions and 8 deletions

View File

@@ -28,7 +28,7 @@ package org.hswebframework.web.service;
* @author zhouhao
* @since 3.0
*/
public interface CreateEntityService<E> {
public interface CreateEntityService<E> extends Service {
/**
* 创建实体
*

View File

@@ -21,7 +21,7 @@ package org.hswebframework.web.service;
/**
* @author zhouhao
*/
public interface DeleteService<PK> {
public interface DeleteService<PK> extends Service {
/**
* 根据主键删除记录
*

View File

@@ -21,7 +21,7 @@ package org.hswebframework.web.service;
/**
* @author zhouhao
*/
public interface InsertService<E, PK> {
public interface InsertService<E, PK> extends Service {
/**
* 添加一条数据

View File

@@ -25,7 +25,7 @@ import java.util.List;
* @since 3.0
* @see QueryByEntityService
*/
public interface QueryService<E, PK> {
public interface QueryService<E, PK> extends Service {
/**
* 根据主键查询

View File

@@ -19,8 +19,6 @@
package org.hswebframework.web.service;
/**
* TODO 完成注释
*
* @author zhouhao
*/
public interface Service {

View File

@@ -1,8 +1,6 @@
package org.hswebframework.web.service;
/**
* TODO 完成注释
*
* @author zhouhao
*/
public interface Validator<T> {