潘志宝
2025-02-25 70e7daff6967431f860efe4d59b95e9f7221c764
src/api/data/da/point/daPointChart.ts
@@ -6,9 +6,23 @@
  end?: Date,
}
export interface ApiPointPageReqVO extends PageParam {
  pointNo?: string
}
// 查询chart列表
export const getPointDaChart = (data: DaPointChartReqVO) => {
  return request.post({ url: '/data/api/data/point/history', data })
  return request.post({ url: '/data/api/query-points/chart', data })
}
// 查询多个测点当前值
export const getPointsRealValue = (data: []) => {
  return request.post({ url: '/data/api/query-points/real-value', data })
}
// 查询计算点当前值
export const getMathPointCurrentValue = (data: ApiPointPageReqVO) => {
  return request.post({ url: '/data/api/query-math-point/current-value', data })
}
//导出DaPointValue