1
0

refactor: 移除所有文件中的 @author 注释

移除所有 Java 文件中的 @author lanyuanxiaoyao 注释,统一代码风格。
This commit is contained in:
2026-01-06 14:56:02 +08:00
parent d88078ce42
commit 8622891dbb
15 changed files with 0 additions and 26 deletions

View File

@@ -54,7 +54,6 @@ import java.util.Map;
* </p>
*
* @param <QUERY_ITEM> 查询结果的实体类型
* @author lanyuanxiaoyao
*/
public interface QueryController<QUERY_ITEM> {
String LIST = "/list";

View File

@@ -9,8 +9,6 @@ package com.lanyuanxiaoyao.service.template.common.controller;
* DELETE /remove/1
* </pre>
* </p>
*
* @author lanyuanxiaoyao
*/
public interface RemoveController {
String REMOVE = "/remove/{id}";

View File

@@ -13,8 +13,6 @@ package com.lanyuanxiaoyao.service.template.common.controller;
* }
* </pre>
* </p>
*
* @author lanyuanxiaoyao
*/
public interface SaveController<SAVE_ITEM> {
String SAVE = "/save";

View File

@@ -4,9 +4,6 @@ import java.util.stream.Stream;
/**
* 分页
*
* @author lanyuanxiaoyao
* @version 20260106
*/
public record Page<ENTITY>(Stream<ENTITY> items, long total) {
}

View File

@@ -8,7 +8,6 @@ import java.util.Set;
* 查询服务接口,用于定义统一的查询实体详情和列表的服务规范
*
* @param <ENTITY> 实体类型
* @author lanyuanxiaoyao
*/
public interface QueryService<ENTITY> {
/**

View File

@@ -4,7 +4,6 @@ package com.lanyuanxiaoyao.service.template.common.service;
* 删除服务接口,用于定义统一的删除实体对象的服务规范
*
* @param <ENTITY> 实体类型
* @author lanyuanxiaoyao
*/
public interface RemoveService<ENTITY> {
/**

View File

@@ -4,7 +4,6 @@ package com.lanyuanxiaoyao.service.template.common.service;
* 保存服务接口,用于定义统一的保存实体对象的服务规范
*
* @param <ENTITY> 实体类型
* @author lanyuanxiaoyao
*/
public interface SaveService<ENTITY> {
/**