feat(education): complete Flyway migration and atomic submit

This commit is contained in:
2026-07-30 12:06:55 +08:00
parent ce02f8acb4
commit 79a5799502
228 changed files with 32551 additions and 1376 deletions

View File

@@ -31,9 +31,7 @@ public interface TenantCommonApi {
* @param id 租户编号
* @return 租户信息,不存在时返回 null
*/
default TenantRespDTO getTenant(Long id) {
throw new UnsupportedOperationException("getTenant is not implemented");
}
TenantRespDTO getTenant(Long id);
/**
* 根据租户名获得租户信息
@@ -41,9 +39,7 @@ public interface TenantCommonApi {
* @param name 租户名
* @return 租户信息,不存在时返回 null
*/
default TenantRespDTO getTenantByName(String name) {
throw new UnsupportedOperationException("getTenantByName is not implemented");
}
TenantRespDTO getTenantByName(String name);
/**
* 根据域名获得租户信息
@@ -51,8 +47,6 @@ public interface TenantCommonApi {
* @param website 域名
* @return 租户信息,不存在时返回 null
*/
default TenantRespDTO getTenantByWebsite(String website) {
throw new UnsupportedOperationException("getTenantByWebsite is not implemented");
}
TenantRespDTO getTenantByWebsite(String website);
}