12 lines
261 B
Java
12 lines
261 B
Java
package com.ttstd.signaling.model;
|
|
|
|
/**
|
|
* 设备管理视图对象:用于在后台管理接口中序列化设备信息。
|
|
*/
|
|
public record DeviceInfo(
|
|
String deviceId,
|
|
String deviceType,
|
|
boolean online,
|
|
Long connectedAt) {
|
|
}
|