admin-vben5/apps/web-antd/src/api/property/community/model.d.ts

291 lines
3.0 KiB
TypeScript
Raw Normal View History

2025-06-18 11:03:42 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface CommunityVO {
2025-06-19 09:50:46 +08:00
/**
*
*/
id: string | number;
2025-06-18 11:03:42 +08:00
/**
*
*/
communityName: string;
/**
*
*/
communityCode: string;
/**
* 12
*/
communityType: number;
/**
*
*/
province: string;
/**
*
*/
city: string;
/**
*
*/
district: string;
/**
*
*/
addr: string;
/**
*
*/
lon: string;
/**
*
*/
lat: string;
/**
*
*/
img: string;
/**
*
*/
orgCode: string;
2025-06-19 09:50:46 +08:00
/**
* 10
*/
dataState: number;
/**
*
*/
modifyTime: string;
2025-06-18 11:03:42 +08:00
}
export interface CommunityForm extends BaseEntity {
/**
2025-06-19 09:50:46 +08:00
*
2025-06-18 11:03:42 +08:00
*/
id?: string | number;
/**
*
*/
communityName?: string;
/**
*
*/
communityCode?: string;
/**
* 12
*/
communityType?: number;
/**
*
*/
province?: string;
/**
*
*/
city?: string;
/**
*
*/
district?: string;
/**
*
*/
addr?: string;
/**
*
*/
lon?: string;
/**
*
*/
lat?: string;
/**
*
*/
img?: string;
/**
*
*/
orgCode?: string;
2025-06-19 09:50:46 +08:00
/**
* 10
*/
dataState?: number;
/**
*
*/
modifyTime?: string;
2025-06-18 11:03:42 +08:00
}
export interface CommunityQuery extends PageQuery {
/**
*
*/
communityName?: string;
/**
*
*/
communityCode?: string;
/**
* 12
*/
communityType?: number;
/**
*
*/
province?: string;
/**
*
*/
city?: string;
/**
*
*/
district?: string;
/**
*
*/
addr?: string;
/**
*
*/
lon?: string;
/**
*
*/
lat?: string;
/**
*
*/
img?: string;
/**
*
*/
orgCode?: string;
/**
* 10
*/
dataState?: number;
2025-06-19 09:50:46 +08:00
/**
*
*/
modifyTime?: string;
2025-06-18 11:03:42 +08:00
/**
*
*/
params?: any;
}
2025-06-26 17:59:00 +08:00
export interface Community extends BaseEntity {
/**
*
*/
communityName?: string;
/**
*
*/
communityCode?: string;
/**
* 12
*/
communityType?: number;
/**
*
*/
province?: string;
/**
*
*/
city?: string;
/**
*
*/
district?: string;
/**
*
*/
addr?: string;
/**
*
*/
lon?: string;
/**
*
*/
lat?: string;
/**
*
*/
img?: string;
/**
*
*/
orgCode?: string;
/**
* 10
*/
dataState?: number;
/**
*
*/
modifyTime?: string;
/**
*
*/
params?: any;
}