From 9731305e690fca47a0a50ad205c57d4cb4e60b88 Mon Sep 17 00:00:00 2001 From: Suomm <1474983351@qq.com> Date: Mon, 19 Jun 2023 11:13:52 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E6=9B=B4=E6=96=B0=20KeyType=20?= =?UTF-8?q?=E6=B3=A8=E9=87=8A=EF=BC=8C=E6=B7=BB=E5=8A=A0=E5=8F=A5=E5=8F=B7?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/mybatisflex/annotation/KeyType.java | 42 ++++++++++--------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/mybatis-flex-annotation/src/main/java/com/mybatisflex/annotation/KeyType.java b/mybatis-flex-annotation/src/main/java/com/mybatisflex/annotation/KeyType.java index 0a7b7d03..b9a2583f 100644 --- a/mybatis-flex-annotation/src/main/java/com/mybatisflex/annotation/KeyType.java +++ b/mybatis-flex-annotation/src/main/java/com/mybatisflex/annotation/KeyType.java @@ -1,43 +1,45 @@ -/** - * Copyright (c) 2022-2023, Mybatis-Flex (fuhai999@gmail.com). - *
- * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - *
- * http://www.apache.org/licenses/LICENSE-2.0 - *
- * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. +/* + * Copyright (c) 2022-2023, Mybatis-Flex (fuhai999@gmail.com). + *
+ * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + *
+ * http://www.apache.org/licenses/LICENSE-2.0 + *
+ * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package com.mybatisflex.annotation; /** - * ID 生成策略 + * ID 生成策略。 */ public enum KeyType { /** - * 自增的方式 + * 自增的方式。 */ Auto, /** - * 通过执行数据库 sql 生成 - * 例如:select SEQ_USER_ID.nextval as id from dual + *
通过执行数据库 sql 生成。 + * + *
例如:select SEQ_USER_ID.nextval as id from dual */ Sequence, /** - * 通过 IKeyGenerator 生成器生成 + * 通过 IKeyGenerator 生成器生成。 */ Generator, /** - * 其他方式,比如在代码层用户手动设置 + * 其他方式,比如在代码层用户手动设置。 */ None, + }