chore:完善租户管理功能

This commit is contained in:
ANHE
2025-03-19 23:27:42 +08:00
parent 43ea8ed755
commit 3fc4bec81a
6 changed files with 70 additions and 19 deletions

View File

@ -38,3 +38,11 @@ export function fetchBatchDeleteTenant(ids: CommonType.IdType[]) {
method: 'delete'
});
}
/** 同步租户字典 */
export function fetchSyncTenantDict() {
return request<boolean>({
url: '/system/tenant/syncTenantDict',
method: 'get'
});
}