Jay
2024-11-22 328968f75a4dd4292ebc71f01d759a824765ac72
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import request from '@/config/axios'
 
export interface OpcUaDeviceVO {
  id: string
  serverName: string
  endpointUrl: string
  securityPolicy: string
  securityMode: string
  connectionType: string
  userName: string
  password: string
  certificatePath: string
  connectInactivityTimeout: number
  reconnectInterval: number
}
 
export interface OpcUaDevicePageReqVO extends PageParam {
  serverName?: string
}
 
// 查询OpcUaDevice列表
export const getOpcUaDevicePage = (params: OpcUaDevicePageReqVO) => {
  return request.get({ url: '/data/channel/opcua/device/page', params })
}
 
// 查询OpcUaDevice详情
export const getOpcUaDevice = (id: number) => {
  return request.get({ url: `/data/channel/opcua/device/info/${id}`})
}
 
// 新增OpcUaDevice
export const createOpcUaDevice = (data: OpcUaDeviceVO) => {
  return request.post({ url: '/data/channel/opcua/device/create', data })
}
 
// 修改OpcUaDevice
export const updateOpcUaDevice = (data: OpcUaDeviceVO) => {
  return request.put({ url: '/data/channel/opcua/device/update', data })
}
 
// 删除OpcUaDevice
export const deleteOpcUaDevice = (id: string) => {
  return request.delete({ url: '/data/channel/opcua/device/delete?id=' + id })
}