mirror of
https://github.com/CarmJos/EasySQL.git
synced 2026-06-04 15:28:20 +08:00
[v0.3.1] 修复一些小的规范问题
This commit is contained in:
@@ -28,7 +28,7 @@ public enum ForeignKeyRule {
|
||||
*/
|
||||
CASCADE("CASCADE");
|
||||
|
||||
String ruleName;
|
||||
final String ruleName;
|
||||
|
||||
ForeignKeyRule(String ruleName) {
|
||||
this.ruleName = ruleName;
|
||||
|
||||
@@ -29,7 +29,7 @@ public enum IndexType {
|
||||
FULLTEXT_INDEX("FULLTEXT");
|
||||
|
||||
|
||||
String name;
|
||||
final String name;
|
||||
|
||||
IndexType(String name) {
|
||||
this.name = name;
|
||||
|
||||
Reference in New Issue
Block a user