给超管从后台创建租户换接口地址

This commit is contained in:
jishenghua
2024-06-20 22:53:36 +08:00
parent aa58b36145
commit 3533736aa8
2 changed files with 4 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ const getBuyAndSaleStatistics = (params)=>getAction("/depotHead/getBuyAndSaleSta
const buyOrSalePrice = (params)=>getAction("/depotItem/buyOrSalePrice",params);
//租户管理
const checkTenant = (params)=>getAction("/tenant/checkIsNameExist",params);
const addTenant = (params)=>postAction("/tenant/add",params);
const editTenant = (params)=>putAction("/tenant/update",params);
//角色管理
const addRole = (params)=>postAction("/role/add",params);
@@ -116,6 +117,7 @@ export {
getBuyAndSaleStatistics,
buyOrSalePrice,
checkTenant,
addTenant,
editTenant,
addRole,
editRole,