监控室,摄像头工作列表

This commit is contained in:
Teo
2025-06-19 19:58:33 +08:00
parent f59d725b20
commit ea98580b07
19 changed files with 1141 additions and 167 deletions

View File

@ -192,7 +192,7 @@ export const deleteDaily = (query: { id: string; detailIdList: string[] }) => {
export const workScheduleDel = () => {
return request({
url: '/facility/matrix/gis/position/1933358820034174995',
url: '/facility/matrix/gis/position?projectId=1930896467736707073',
method: 'get'
});
};

View File

@ -3,7 +3,11 @@ export interface ProgressCategoryTemplateVO {
* 类别名称
*/
name: string;
/**
* 主键id
*/
id?: string | number;
pid?: string | number;
/**
* 计量方式0无 1数量 2百分比
*/
@ -24,10 +28,10 @@ export interface ProgressCategoryTemplateVO {
*/
remark: string;
/**
* 子对象
*/
children: ProgressCategoryTemplateVO[];
/**
* 子对象
*/
children: ProgressCategoryTemplateVO[];
}
export interface ProgressCategoryTemplateForm extends BaseEntity {
@ -65,11 +69,9 @@ export interface ProgressCategoryTemplateForm extends BaseEntity {
* 备注
*/
remark?: string;
}
export interface ProgressCategoryTemplateQuery {
/**
* 父类别id
*/
@ -95,11 +97,8 @@ export interface ProgressCategoryTemplateQuery {
*/
projectId?: string | number;
/**
* 日期范围参数
*/
params?: any;
/**
* 日期范围参数
*/
params?: any;
}