Skip to content

Commit ecd19e9

Browse files
committed
修改java doc
1 parent 846466b commit ecd19e9

File tree

53 files changed

+82
-148
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+82
-148
lines changed

nutz-dao-enhance-annotation/src/main/java/org/nutz/dao/enhance/annotation/AutoID.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* @author 黄川 huchuc@vip.qq.com
10-
* @date: 2020/9/13
10+
* 2020/9/13
1111
* 搭配 @Id(auto = false)
1212
*/
1313
@Retention(RetentionPolicy.RUNTIME)

nutz-dao-enhance-annotation/src/main/java/org/nutz/dao/enhance/annotation/CreatedBy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* @author 黄川 huchuc@vip.qq.com
10-
* @date: 2020/9/13
10+
* 2020/9/13
1111
* 需要实现 org.nutz.dao.enhance.audit.AuditingEntity
1212
*/
1313
@Retention(RetentionPolicy.RUNTIME)

nutz-dao-enhance-annotation/src/main/java/org/nutz/dao/enhance/annotation/CreatedDate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* @author 黄川 huchuc@vip.qq.com
10-
* @date: 2020/9/13
10+
* 2020/9/13
1111
*/
1212
@Retention(RetentionPolicy.RUNTIME)
1313
@Target(value = {ElementType.METHOD, ElementType.FIELD})

nutz-dao-enhance-annotation/src/main/java/org/nutz/dao/enhance/annotation/CustomProvider.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* @author 黄川 huchuc@vip.qq.com
7-
* @date: 2021/6/14
7+
* 2021/6/14
88
*/
99
@Documented
1010
@Retention(RetentionPolicy.RUNTIME)
@@ -19,8 +19,6 @@
1919
/**
2020
* 指定实现 SQL 查询的静态类中的具体方法名.
2121
* 为空时和接口方法一致
22-
*
23-
* @return
2422
*/
2523
String methodName() default "";
2624

nutz-dao-enhance-annotation/src/main/java/org/nutz/dao/enhance/annotation/Dao.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* @author 黄川 huchuc@vip.qq.com
10-
* @date: 2020/7/30
10+
* 2020/7/30
1111
*/
1212
@Target({ElementType.TYPE})
1313
@Retention(RetentionPolicy.RUNTIME)

nutz-dao-enhance-annotation/src/main/java/org/nutz/dao/enhance/annotation/Delete.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* 删除
1010
*
1111
* @author 黄川 huchuc@vip.qq.com
12-
* @date: 2020/12/12
12+
* 2020/12/12
1313
*/
1414
@Target({ElementType.METHOD})
1515
@Retention(RetentionPolicy.RUNTIME)

nutz-dao-enhance-annotation/src/main/java/org/nutz/dao/enhance/annotation/Entity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* @author 黄川 huchuc@vip.qq.com
10-
* @date: 2020/12/12
10+
* 2020/12/12
1111
* 1、指定返回的实体类型,默认读取注解优先,若没有注解,则默认通过反射去class类上获取实体类泛型
1212
* 2、自动建表必须需要写在dao类上
1313
*/

nutz-dao-enhance-annotation/src/main/java/org/nutz/dao/enhance/annotation/IgnoreAutoDDL.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* @author 黄川 huchuc@vip.qq.com
10-
* @date: 2020/12/12
10+
* 2020/12/12
1111
* 忽略自动建表
1212
*/
1313
@Target({ElementType.METHOD, ElementType.TYPE})

nutz-dao-enhance-annotation/src/main/java/org/nutz/dao/enhance/annotation/Insert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* @author 黄川 huchuc@vip.qq.com
10-
* @date: 2020/12/12
10+
* 2020/12/12
1111
*/
1212
@Target({ElementType.METHOD})
1313
@Retention(RetentionPolicy.RUNTIME)

nutz-dao-enhance-annotation/src/main/java/org/nutz/dao/enhance/annotation/LastModifiedBy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* @author 黄川 huchuc@vip.qq.com
10-
* @date: 2020/9/13
10+
* 2020/9/13
1111
* 需要实现 org.nutz.dao.enhance.audit.AuditingEntity
1212
*/
1313
@Retention(RetentionPolicy.RUNTIME)

0 commit comments

Comments
 (0)