refactor: 移除所有文件中的 @author 注释
移除所有 Java 文件中的 @author lanyuanxiaoyao 注释,统一代码风格。
This commit is contained in:
@@ -54,7 +54,6 @@ import java.util.Map;
|
||||
* </p>
|
||||
*
|
||||
* @param <QUERY_ITEM> 查询结果的实体类型
|
||||
* @author lanyuanxiaoyao
|
||||
*/
|
||||
public interface QueryController<QUERY_ITEM> {
|
||||
String LIST = "/list";
|
||||
|
||||
@@ -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}";
|
||||
|
||||
@@ -13,8 +13,6 @@ package com.lanyuanxiaoyao.service.template.common.controller;
|
||||
* }
|
||||
* </pre>
|
||||
* </p>
|
||||
*
|
||||
* @author lanyuanxiaoyao
|
||||
*/
|
||||
public interface SaveController<SAVE_ITEM> {
|
||||
String SAVE = "/save";
|
||||
|
||||
@@ -4,9 +4,6 @@ import java.util.stream.Stream;
|
||||
|
||||
/**
|
||||
* 分页
|
||||
*
|
||||
* @author lanyuanxiaoyao
|
||||
* @version 20260106
|
||||
*/
|
||||
public record Page<ENTITY>(Stream<ENTITY> items, long total) {
|
||||
}
|
||||
|
||||
@@ -8,7 +8,6 @@ import java.util.Set;
|
||||
* 查询服务接口,用于定义统一的查询实体详情和列表的服务规范
|
||||
*
|
||||
* @param <ENTITY> 实体类型
|
||||
* @author lanyuanxiaoyao
|
||||
*/
|
||||
public interface QueryService<ENTITY> {
|
||||
/**
|
||||
|
||||
@@ -4,7 +4,6 @@ package com.lanyuanxiaoyao.service.template.common.service;
|
||||
* 删除服务接口,用于定义统一的删除实体对象的服务规范
|
||||
*
|
||||
* @param <ENTITY> 实体类型
|
||||
* @author lanyuanxiaoyao
|
||||
*/
|
||||
public interface RemoveService<ENTITY> {
|
||||
/**
|
||||
|
||||
@@ -4,7 +4,6 @@ package com.lanyuanxiaoyao.service.template.common.service;
|
||||
* 保存服务接口,用于定义统一的保存实体对象的服务规范
|
||||
*
|
||||
* @param <ENTITY> 实体类型
|
||||
* @author lanyuanxiaoyao
|
||||
*/
|
||||
public interface SaveService<ENTITY> {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user