From ad7320c2803fb8c690f5be6f5eddbc59b9c14a7e Mon Sep 17 00:00:00 2001 From: ZhouXY108 Date: Mon, 2 Jun 2025 00:18:29 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E4=BC=98=E5=8C=96=20javadoc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/xyz/zhouxy/jdbc/DefaultBeanRowMapper.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/xyz/zhouxy/jdbc/DefaultBeanRowMapper.java b/src/main/java/xyz/zhouxy/jdbc/DefaultBeanRowMapper.java index 8a9b915..7046487 100644 --- a/src/main/java/xyz/zhouxy/jdbc/DefaultBeanRowMapper.java +++ b/src/main/java/xyz/zhouxy/jdbc/DefaultBeanRowMapper.java @@ -1,5 +1,5 @@ /* - * Copyright 2022-2024 the original author or authors. + * Copyright 2022-2025 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -65,12 +65,12 @@ public class DefaultBeanRowMapper implements RowMapper { } /** - * 创建一个 DefaultBeanRowMapper + * 创建一个 {@code DefaultBeanRowMapper} * * @param Bean 类型 * @param beanType Bean 类型 * @return DefaultBeanRowMapper 对象 - * @throws SQLException 创建 DefaultBeanRowMapper 出现错误的异常时抛出 + * @throws SQLException 创建 {@code DefaultBeanRowMapper} 出现错误的异常时抛出 */ @StaticFactoryMethod(DefaultBeanRowMapper.class) public static DefaultBeanRowMapper of(Class beanType) throws SQLException { @@ -78,13 +78,13 @@ public class DefaultBeanRowMapper implements RowMapper { } /** - * 创建一个 DefaultBeanRowMapper + * 创建一个 {@code DefaultBeanRowMapper} * * @param Bean 类型 * @param beanType Bean 类型 * @param propertyColMap Bean 字段与列名的映射关系。key 是字段,value 是列名。 - * @return DefaultBeanRowMapper 对象 - * @throws SQLException 创建 DefaultBeanRowMapper 出现错误的异常时抛出 + * @return {@code DefaultBeanRowMapper} 对象 + * @throws SQLException 创建 {@code DefaultBeanRowMapper} 出现错误的异常时抛出 */ @StaticFactoryMethod(DefaultBeanRowMapper.class) public static DefaultBeanRowMapper of(Class beanType, @Nullable Map propertyColMap)