haoxuan
2023-11-02 5c6875454a126cd2a68bcbd2b63ed4902224487b
1
2
3
4
5
6
7
8
9
10
export interface Devices {
  systemDeviceID: string
  currentDeviceID: string
  systemDeviceStatus: number
  /** 集群状态 master主节点 slave从节点  空串代表不在集群中  */
  clusterStatus: 'master' | 'slave' | ''
  clusterNodeQuantity: number
  systemDeviceRunSince: number
  deviceIDList: string[]
}