查询排班详请
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 2m9s

This commit is contained in:
fyy
2025-08-13 17:02:49 +08:00
parent 8da35d2d4b
commit 1db3c351e5
10 changed files with 490 additions and 12 deletions

View File

@@ -0,0 +1,69 @@
import type { PageQuery, BaseEntity } from '#/api/common';
export interface AttendanceAreaVO {
/**
* 主键id
*/
id: string | number;
/**
* 摄像机id
*/
deviceManageId: string | number;
/**
* 区域
*/
area: string;
/**
* 备注
*/
reamark: string;
}
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;
/**
* 日期范围参数
*/
params?: any;
}