synchronizers optimize

This commit is contained in:
MaxKey
2022-01-25 12:53:01 +08:00
parent b56496a6df
commit 50dd3ef566
14 changed files with 251 additions and 194 deletions

View File

@@ -53,7 +53,7 @@ public class Organizations extends JpaBaseEntity implements Serializable {
@Column
private String namePath;
@Column
private String level;
private int level;
@Column
private String hasChild;
@Column
@@ -174,11 +174,11 @@ public class Organizations extends JpaBaseEntity implements Serializable {
this.type = type;
}
public String getLevel() {
public int getLevel() {
return level;
}
public void setLevel(String level) {
public void setLevel(int level) {
this.level = level;
}