Files
admin-vben5/apps/web-antd/src/api/property/attendanceManagement/attendanceArea/model.d.ts

69 lines
841 B
TypeScript
Raw Normal View History

2025-08-13 17:02:49 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface AttendanceAreaVO {
/**
* id
*/
id: string | number;
/**
2025-08-18 11:27:16 +08:00
*
2025-08-13 17:02:49 +08:00
*/
2025-08-18 11:27:16 +08:00
deviceManageId: any[];
2025-08-13 17:02:49 +08:00
/**
*
*/
area: string;
/**
*
*/
reamark: string;
2025-08-22 19:43:32 +08:00
areaDevice?: any[];
2025-08-13 17:02:49 +08:00
}
export interface AttendanceAreaForm extends BaseEntity {
/**
* id
*/
id?: string | number;
/**
* id
*/
deviceManageId?: string | number;
/**
*
*/
area?: string;
/**
*
*/
reamark?: string;
}
export interface AttendanceAreaQuery extends PageQuery {
/**
* id
*/
deviceManageId?: string | number;
/**
*
*/
area?: string;
/**
*
*/
reamark?: string;
/**
2025-08-22 19:43:32 +08:00
*
*/
2025-08-13 17:02:49 +08:00
params?: any;
}