This commit is contained in:
2023-06-27 17:33:06 +08:00
parent a018802ee9
commit a9e88c99ad
3 changed files with 37 additions and 8 deletions

View File

@ -6,3 +6,11 @@ export const check = (tenantId) => {
method: "POST",
});
};
// /tenant/init/createTables/{tenantId}
export const createTables = (tenantId) => {
return request({
url: `/tenant/init/createTables/${tenantId}`,
method: "POST",
});
};