mirror of
https://github.com/hs-web/hsweb-framework.git
synced 2026-06-04 11:52:41 +08:00
优化说明
This commit is contained in:
@@ -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;
|
||||
/**
|
||||
* @author zhouhao
|
||||
*/
|
||||
public interface DeleteService<PK> {
|
||||
public interface DeleteService<PK> extends Service {
|
||||
/**
|
||||
* 根据主键删除记录
|
||||
*
|
||||
|
||||
@@ -21,7 +21,7 @@ package org.hswebframework.web.service;
|
||||
/**
|
||||
* @author zhouhao
|
||||
*/
|
||||
public interface InsertService<E, PK> {
|
||||
public interface InsertService<E, PK> extends Service {
|
||||
|
||||
/**
|
||||
* 添加一条数据
|
||||
|
||||
@@ -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 {
|
||||
|
||||
/**
|
||||
* 根据主键查询
|
||||
|
||||
@@ -19,8 +19,6 @@
|
||||
package org.hswebframework.web.service;
|
||||
|
||||
/**
|
||||
* TODO 完成注释
|
||||
*
|
||||
* @author zhouhao
|
||||
*/
|
||||
public interface Service {
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
package org.hswebframework.web.service;
|
||||
|
||||
/**
|
||||
* TODO 完成注释
|
||||
*
|
||||
* @author zhouhao
|
||||
*/
|
||||
public interface Validator<T> {
|
||||
|
||||
Reference in New Issue
Block a user