|
@@ -50,6 +50,7 @@ public class BasicSchool extends BaseEntity implements Serializable {
|
|
|
this.accessKey = accessKey;
|
|
|
this.accessSecret = accessSecret;
|
|
|
setId(SystemConstant.getDbUuid());
|
|
|
+ this.enable = true;
|
|
|
}
|
|
|
|
|
|
public BasicSchool(String code, String name, String accessKey, String accessSecret, String logo) {
|
|
@@ -59,6 +60,7 @@ public class BasicSchool extends BaseEntity implements Serializable {
|
|
|
this.accessSecret = accessSecret;
|
|
|
this.logo = logo;
|
|
|
setId(SystemConstant.getDbUuid());
|
|
|
+ this.enable = true;
|
|
|
}
|
|
|
|
|
|
public static long getSerialVersionUID() {
|