-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #195 from little3201/develop
移除 重复代码,冗余配置;权限删除接口定义,仅保留树接口
Showing
137 changed files
with
1,360 additions
and
1,776 deletions.
There are no files selected for viewing
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
159 changes: 0 additions & 159 deletions
159
assets/src/main/java/io/leafage/basic/assets/audit/AuditMetadata.java
This file was deleted.
Oops, something went wrong.
36 changes: 0 additions & 36 deletions
36
assets/src/main/java/io/leafage/basic/assets/audit/AuditorAwareImpl.java
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
assets/src/main/java/io/leafage/basic/assets/audit/package-info.java
This file was deleted.
Oops, something went wrong.
50 changes: 50 additions & 0 deletions
50
assets/src/main/java/io/leafage/basic/assets/bo/FileRecordBO.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,50 @@ | ||
package io.leafage.basic.assets.bo; | ||
|
||
/** | ||
* bo class for file record. | ||
* | ||
* @author wq li | ||
*/ | ||
public abstract class FileRecordBO { | ||
|
||
private String name; | ||
|
||
private String path; | ||
|
||
private String type; | ||
|
||
private float size; | ||
|
||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public String getPath() { | ||
return path; | ||
} | ||
|
||
public void setPath(String path) { | ||
this.path = path; | ||
} | ||
|
||
public String getType() { | ||
return type; | ||
} | ||
|
||
public void setType(String type) { | ||
this.type = type; | ||
} | ||
|
||
public float getSize() { | ||
return size; | ||
} | ||
|
||
public void setSize(float size) { | ||
this.size = size; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
import java.util.Set; | ||
|
||
/** | ||
* bo class for post | ||
* bo class for post. | ||
* | ||
* @author wq li | ||
*/ | ||
|
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
Oops, something went wrong.