Skip to content

Commit

Permalink
chore(extension/crud): 优化部分注释
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles7c committed Nov 18, 2024
1 parent fd9d2bb commit 8dcde6b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.io.Serializable;

/**
* 请求基类
* 请求参数基类
*
* @author Charles7c
* @since 1.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import java.time.LocalDateTime;

/**
* 响应基类
* 响应参数基类
*
* @author Charles7c
* @since 1.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,15 @@ public interface BaseService<L, D, Q, C> {
/**
* 新增
*
* @param req 创建信息
* @param req 创建参数
* @return 自增 ID
*/
Long add(C req);

/**
* 修改
*
* @param req 修改信息
* @param req 修改参数
* @param id ID
*/
void update(C req, Long id);
Expand Down

0 comments on commit 8dcde6b

Please sign in to comment.