【新增】租户创建修改的时候新增专业的点位数据创建和新增

This commit is contained in:
任维炳
2025-04-21 18:08:58 +08:00
committed by 陆光LG
parent 7eb2a0e524
commit 5526e8f4c1
4 changed files with 152 additions and 5 deletions

View File

@@ -13,6 +13,7 @@ export interface TenantVO {
expireTime: Date
accountCount: number
createTime: Date
tenantSpecialtyPointsVOList: any
}
export interface TenantPageReqVO extends PageParam {
@@ -36,6 +37,11 @@ export const getTenantPage = (params: TenantPageReqVO) => {
return request.get({ url: '/system/tenant/page', params })
}
// 查询租户对应专业授权列表
export const getTenantSpecialty = (id: number) => {
return request.get({ url: '/system/tenant/get-id-by-specialty?id=' + id })
}
// 查询租户详情
export const getTenant = (id: number) => {
return request.get({ url: '/system/tenant/get?id=' + id })