You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
693 B

// 闸口站点相关类型定义
export interface Coordinates {
latitude: number
longitude: number
}
export interface GateStation {
id: string
name: string
location: string
coordinates: Coordinates
description: string
status: 'active' | 'inactive' | 'maintenance'
}
// 闸口数据上传请求DTO
export interface GateDataUploadDTO {
stationId: string
flowValue: number // 测流值 m³/s
images: string[] // 图片URL列表
location: Coordinates // 实际测量位置
remark?: string // 备注信息
}
// 闸口数据查询DTO
export interface GateDataQueryDTO {
stationId?: string
startDate?: string
endDate?: string
page?: number
pageSize?: number
}