-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
deaa15a
commit 308f42f
Showing
2 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
nop-orm-model/src/main/java/io/nop/orm/model/OrmModelConfigs.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package io.nop.orm.model; | ||
|
||
import io.nop.api.core.annotations.core.Description; | ||
import io.nop.api.core.config.IConfigReference; | ||
import io.nop.api.core.util.SourceLocation; | ||
|
||
import static io.nop.api.core.config.AppConfig.varRef; | ||
|
||
public interface OrmModelConfigs { | ||
SourceLocation s_loc = SourceLocation.fromClass(OrmModelConfigs.class); | ||
|
||
@Description("是否检查实体模型的循环依赖") | ||
IConfigReference<Boolean> CFG_ORM_CHECK_ENTITY_LOOP_DEPENDENCY = varRef(s_loc, "nop.orm.check-entity-loop-dependency", Boolean.class, true); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters