潘志宝
9 天以前 2d1a24ac675eb6ee9513128383097c06bc7de8f4
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