add 增加 同步租户字典功能

This commit is contained in:
疯狂的狮子Li
2024-08-26 17:56:35 +08:00
parent 3c2d9100b5
commit 34b929d352
2 changed files with 21 additions and 0 deletions

View File

@ -91,3 +91,11 @@ export function syncTenantPackage(tenantId: string | number, packageId: string |
params: data
});
}
// 同步租户字典
export function syncTenantDict() {
return request({
url: '/system/tenant/syncTenantDict',
method: 'get',
});
}