-
Notifications
You must be signed in to change notification settings - Fork 20
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
Showing
20 changed files
with
46 additions
and
70 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
my-core/src/main/java/net/ximatai/muyun/ability/IDatabaseAbility.java
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
my-core/src/main/java/net/ximatai/muyun/ability/std/IDatabaseAbility.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,13 @@ | ||
package net.ximatai.muyun.ability.std; | ||
|
||
import net.ximatai.muyun.database.IDatabaseAccess; | ||
import net.ximatai.muyun.database.IDatabaseAccessStd; | ||
|
||
public interface IDatabaseAbility { | ||
|
||
IDatabaseAccess getDatabaseAccess(); | ||
|
||
default IDatabaseAccessStd getDatabase() { | ||
return (IDatabaseAccessStd) getDatabaseAccess(); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...ai/muyun/ability/IDatabaseUniAbility.java → ...uyun/ability/std/IDatabaseUniAbility.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
2 changes: 1 addition & 1 deletion
2
...matai/muyun/ability/IMetadataAbility.java → ...i/muyun/ability/std/IMetadataAbility.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
2 changes: 1 addition & 1 deletion
2
...t/ximatai/muyun/ability/ICURDAbility.java → ...un/ability/std/curd/std/ICURDAbility.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package net.ximatai.muyun.ability; | ||
package net.ximatai.muyun.ability.std.curd.std; | ||
|
||
public interface ICURDAbility extends ICreateAbility, IUpdateAbility, IDeleteAbility, ISelectAbility { | ||
} |
4 changes: 3 additions & 1 deletion
4
...ximatai/muyun/ability/ICreateAbility.java → .../ability/std/curd/std/ICreateAbility.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
4 changes: 3 additions & 1 deletion
4
...ximatai/muyun/ability/IDeleteAbility.java → .../ability/std/curd/std/IDeleteAbility.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
4 changes: 3 additions & 1 deletion
4
...ximatai/muyun/ability/ISelectAbility.java → .../ability/std/curd/std/ISelectAbility.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
4 changes: 3 additions & 1 deletion
4
...ximatai/muyun/ability/IUpdateAbility.java → .../ability/std/curd/std/IUpdateAbility.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
2 changes: 1 addition & 1 deletion
2
...ai/muyun/ability/uni/ICURDUniAbility.java → ...ability/std/curd/uni/ICURDUniAbility.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package net.ximatai.muyun.ability.uni; | ||
package net.ximatai.muyun.ability.std.curd.uni; | ||
|
||
public interface ICURDUniAbility extends ICreateAbilityUni { | ||
} |
6 changes: 3 additions & 3 deletions
6
.../muyun/ability/uni/ICreateAbilityUni.java → ...ility/std/curd/uni/ICreateAbilityUni.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
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
9 changes: 4 additions & 5 deletions
9
...i/muyun/database/standard/DataAccess.java → ...tai/muyun/database/std/DataAccessStd.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
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
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
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
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
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