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
|
||||
*/
|
||||
|
288
apps/web-antd/src/api/property/building/model.d.ts
vendored
288
apps/web-antd/src/api/property/building/model.d.ts
vendored
@@ -9,12 +9,7 @@ export interface BuildingVO {
|
||||
/**
|
||||
* 园区编码
|
||||
*/
|
||||
communityCode: string;
|
||||
|
||||
/**
|
||||
* 建筑编码
|
||||
*/
|
||||
buildingCode: string;
|
||||
communityId: string | number;
|
||||
|
||||
/**
|
||||
* 建筑名称
|
||||
@@ -36,6 +31,31 @@ export interface BuildingVO {
|
||||
*/
|
||||
district: string;
|
||||
|
||||
/**
|
||||
* 总层数
|
||||
*/
|
||||
floorCount: number;
|
||||
|
||||
/**
|
||||
* 单元数
|
||||
*/
|
||||
unitCount: number;
|
||||
|
||||
/**
|
||||
* 建筑类型('1:住宅','2:商业','3:混合')
|
||||
*/
|
||||
buildType: number;
|
||||
|
||||
/**
|
||||
* 电梯数量
|
||||
*/
|
||||
elevatorCount: number;
|
||||
|
||||
/**
|
||||
* 竣工日期
|
||||
*/
|
||||
completionDate: string;
|
||||
|
||||
/**
|
||||
* 地址
|
||||
*/
|
||||
@@ -111,26 +131,6 @@ export interface BuildingVO {
|
||||
*/
|
||||
sort: number;
|
||||
|
||||
/**
|
||||
* 组织编码
|
||||
*/
|
||||
orgCode: string;
|
||||
|
||||
/**
|
||||
* 数据状态:1有效,0无效
|
||||
*/
|
||||
dataState: number;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
modifyTime: string;
|
||||
|
||||
/**
|
||||
* 搜索值
|
||||
*/
|
||||
searchValue: string;
|
||||
|
||||
}
|
||||
|
||||
export interface BuildingForm extends BaseEntity {
|
||||
@@ -142,12 +142,7 @@ export interface BuildingForm extends BaseEntity {
|
||||
/**
|
||||
* 园区编码
|
||||
*/
|
||||
communityCode?: string;
|
||||
|
||||
/**
|
||||
* 建筑编码
|
||||
*/
|
||||
buildingCode?: string;
|
||||
communityId?: string | number;
|
||||
|
||||
/**
|
||||
* 建筑名称
|
||||
@@ -169,6 +164,31 @@ export interface BuildingForm extends BaseEntity {
|
||||
*/
|
||||
district?: string;
|
||||
|
||||
/**
|
||||
* 总层数
|
||||
*/
|
||||
floorCount?: number;
|
||||
|
||||
/**
|
||||
* 单元数
|
||||
*/
|
||||
unitCount?: number;
|
||||
|
||||
/**
|
||||
* 建筑类型('1:住宅','2:商业','3:混合')
|
||||
*/
|
||||
buildType?: number;
|
||||
|
||||
/**
|
||||
* 电梯数量
|
||||
*/
|
||||
elevatorCount?: number;
|
||||
|
||||
/**
|
||||
* 竣工日期
|
||||
*/
|
||||
completionDate?: string;
|
||||
|
||||
/**
|
||||
* 地址
|
||||
*/
|
||||
@@ -244,25 +264,6 @@ export interface BuildingForm extends BaseEntity {
|
||||
*/
|
||||
sort?: number;
|
||||
|
||||
/**
|
||||
* 组织编码
|
||||
*/
|
||||
orgCode?: string;
|
||||
|
||||
/**
|
||||
* 数据状态:1有效,0无效
|
||||
*/
|
||||
dataState?: number;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
modifyTime?: string;
|
||||
|
||||
/**
|
||||
* 搜索值
|
||||
*/
|
||||
searchValue?: string;
|
||||
|
||||
}
|
||||
|
||||
@@ -270,12 +271,7 @@ export interface BuildingQuery extends PageQuery {
|
||||
/**
|
||||
* 园区编码
|
||||
*/
|
||||
communityCode?: string;
|
||||
|
||||
/**
|
||||
* 建筑编码
|
||||
*/
|
||||
buildingCode?: string;
|
||||
communityId?: string | number;
|
||||
|
||||
/**
|
||||
* 建筑名称
|
||||
@@ -297,6 +293,31 @@ export interface BuildingQuery extends PageQuery {
|
||||
*/
|
||||
district?: string;
|
||||
|
||||
/**
|
||||
* 总层数
|
||||
*/
|
||||
floorCount?: number;
|
||||
|
||||
/**
|
||||
* 单元数
|
||||
*/
|
||||
unitCount?: number;
|
||||
|
||||
/**
|
||||
* 建筑类型('1:住宅','2:商业','3:混合')
|
||||
*/
|
||||
buildType?: number;
|
||||
|
||||
/**
|
||||
* 电梯数量
|
||||
*/
|
||||
elevatorCount?: number;
|
||||
|
||||
/**
|
||||
* 竣工日期
|
||||
*/
|
||||
completionDate?: string;
|
||||
|
||||
/**
|
||||
* 地址
|
||||
*/
|
||||
@@ -372,161 +393,8 @@ export interface BuildingQuery extends PageQuery {
|
||||
*/
|
||||
sort?: number;
|
||||
|
||||
/**
|
||||
* 组织编码
|
||||
*/
|
||||
orgCode?: string;
|
||||
|
||||
/**
|
||||
* 数据状态:1有效,0无效
|
||||
*/
|
||||
dataState?: number;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
modifyTime?: string;
|
||||
|
||||
/**
|
||||
* 搜索值
|
||||
*/
|
||||
searchValue?: string;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
||||
|
||||
export interface Building extends BaseEntity {
|
||||
/**
|
||||
* 园区编码
|
||||
*/
|
||||
communityCode?: string;
|
||||
|
||||
/**
|
||||
* 建筑编码
|
||||
*/
|
||||
buildingCode?: string;
|
||||
|
||||
/**
|
||||
* 建筑名称
|
||||
*/
|
||||
buildingName?: string;
|
||||
|
||||
/**
|
||||
* 省
|
||||
*/
|
||||
province?: string;
|
||||
|
||||
/**
|
||||
* 市
|
||||
*/
|
||||
city?: string;
|
||||
|
||||
/**
|
||||
* 区
|
||||
*/
|
||||
district?: string;
|
||||
|
||||
/**
|
||||
* 地址
|
||||
*/
|
||||
addr?: string;
|
||||
|
||||
/**
|
||||
* 经度
|
||||
*/
|
||||
lon?: string;
|
||||
|
||||
/**
|
||||
* 维度
|
||||
*/
|
||||
lat?: string;
|
||||
|
||||
/**
|
||||
* 产权性质(1:自持,2:承租,3:自持+承租,4:政府免费使用)
|
||||
*/
|
||||
cqxz?: number;
|
||||
|
||||
/**
|
||||
* 不动产编号
|
||||
*/
|
||||
bdcbh?: string;
|
||||
|
||||
/**
|
||||
* 产权编号
|
||||
*/
|
||||
cqbh?: string;
|
||||
|
||||
/**
|
||||
* 图地编号
|
||||
*/
|
||||
tdbh?: string;
|
||||
|
||||
/**
|
||||
* 建筑面积
|
||||
*/
|
||||
jzmj?: number;
|
||||
|
||||
/**
|
||||
* 产权面积
|
||||
*/
|
||||
cqmj?: number;
|
||||
|
||||
/**
|
||||
* 可租面积
|
||||
*/
|
||||
kzmj?: number;
|
||||
|
||||
/**
|
||||
* 自用面积
|
||||
*/
|
||||
zymj?: number;
|
||||
|
||||
/**
|
||||
* 配套面积
|
||||
*/
|
||||
ptmj?: number;
|
||||
|
||||
/**
|
||||
* 车位面积
|
||||
*/
|
||||
cwmj?: number;
|
||||
|
||||
/**
|
||||
* 标准层高
|
||||
*/
|
||||
bzcg?: number;
|
||||
|
||||
/**
|
||||
* 排序字段
|
||||
*/
|
||||
sort?: number;
|
||||
|
||||
/**
|
||||
* 组织编码
|
||||
*/
|
||||
orgCode?: string;
|
||||
|
||||
/**
|
||||
* 数据状态:1有效,0无效
|
||||
*/
|
||||
dataState?: number;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
modifyTime?: string;
|
||||
|
||||
/**
|
||||
* 搜索值
|
||||
*/
|
||||
searchValue?: string;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user