feat(education): complete Flyway migration and atomic submit
This commit is contained in:
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user