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

243 lines
2.5 KiB
TypeScript
Raw Normal View History

2025-06-19 14:26:08 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface Resident_unitVO {
/**
* id
*/
id: string | number;
/**
*
*/
name: string;
/**
*
*/
unitNumber: number;
/**
*
*/
type: number;
/**
*
*/
contactPerson: string;
/**
*
*/
2025-07-02 18:00:26 +08:00
phone: string;
2025-06-19 14:26:08 +08:00
/**
*
*/
location: string;
/**
*
*/
time: string;
/**
*
*/
state: number;
/**
*
*/
number: number;
/**
*
*/
remark: string;
2025-07-23 14:12:02 +08:00
/**
* id
*/
authGroupId?: string | number;
/**
*
*/
authGroupName?: string;
// 授权期限
authBegDate?:string;//开始
authEndDate?:string;//结束
2025-07-23 14:12:02 +08:00
2025-06-19 14:26:08 +08:00
}
export interface Resident_unitForm extends BaseEntity {
/**
* id
*/
id?: string | number;
/**
*
*/
name?: string;
/**
*
*/
unitNumber?: number;
/**
*
*/
type?: number;
/**
*
*/
contactPerson?: string;
/**
*
*/
2025-07-02 18:00:26 +08:00
phone?: string;
2025-06-19 14:26:08 +08:00
/**
*
*/
location?: string;
/**
*
*/
time?: string;
/**
*
*/
state?: number;
/**
*
*/
number?: number;
/**
*
*/
remark?: string;
}
export interface Resident_unitQuery extends PageQuery {
/**
*
*/
name?: string;
/**
*
*/
unitNumber?: number;
/**
*
*/
type?: number;
/**
*
*/
contactPerson?: string;
/**
*
*/
2025-07-02 18:00:26 +08:00
phone?: string;
2025-06-19 14:26:08 +08:00
/**
*
*/
location?: string;
/**
*
*/
time?: string;
/**
*
*/
state?: number;
/**
*
*/
number?: number;
/**
*
*/
params?: any;
}
2025-06-23 09:39:53 +08:00
export interface Unit extends BaseEntity {
/**
* id
*/
id?: string | number;
/**
*
*/
name?: string;
/**
*
*/
unitNumber?: number;
/**
*
*/
type?: number;
/**
*
*/
contactPerson?: string;
/**
*
*/
2025-07-02 18:00:26 +08:00
phone?: string;
2025-06-23 09:39:53 +08:00
/**
*
*/
location?: string;
2025-07-02 18:00:26 +08:00
locationDetail?: string;
2025-06-23 09:39:53 +08:00
/**
*
*/
time?: string;
/**
*
*/
state?: number;
/**
*
*/
number?: number;
/**
*
*/
remark?: string;
}