This commit is contained in:
@@ -1,38 +1,40 @@
|
||||
import type { BuildingVO, BuildingForm, BuildingQuery } from './model';
|
||||
|
||||
import type { ID, IDS } from '#/api/common';
|
||||
import type { PageResult } from '#/api/common';
|
||||
|
||||
import { commonExport } from '#/api/helper';
|
||||
import { requestClient } from '#/api/request';
|
||||
|
||||
/**
|
||||
* 查询建筑管理列表
|
||||
* 查询建筑列表
|
||||
* @param params
|
||||
* @returns 建筑管理列表
|
||||
* @returns 建筑列表
|
||||
*/
|
||||
export function buildingList(params?: BuildingQuery) {
|
||||
return requestClient.get<PageResult<BuildingVO>>('/property/building/list', { params });
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出建筑管理列表
|
||||
* 导出建筑列表
|
||||
* @param params
|
||||
* @returns 建筑管理列表
|
||||
* @returns 建筑列表
|
||||
*/
|
||||
export function buildingExport(params?: BuildingQuery) {
|
||||
return commonExport('/property/building/export', params ?? {});
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询建筑管理详情
|
||||
* 查询建筑详情
|
||||
* @param id id
|
||||
* @returns 建筑管理详情
|
||||
* @returns 建筑详情
|
||||
*/
|
||||
export function buildingInfo(id: ID) {
|
||||
return requestClient.get<BuildingVO>(`/property/building/${id}`);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增建筑管理
|
||||
* 新增建筑
|
||||
* @param data
|
||||
* @returns void
|
||||
*/
|
||||
@@ -41,7 +43,7 @@ export function buildingAdd(data: BuildingForm) {
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新建筑管理
|
||||
* 更新建筑
|
||||
* @param data
|
||||
* @returns void
|
||||
*/
|
||||
@@ -50,7 +52,7 @@ export function buildingUpdate(data: BuildingForm) {
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除建筑管理
|
||||
* 删除建筑
|
||||
* @param id id
|
||||
* @returns void
|
||||
*/
|
||||
|
Reference in New Issue
Block a user