增加websocket

This commit is contained in:
2025-08-08 20:12:46 +08:00
parent 411b7d69d3
commit 503b44d92d
17 changed files with 391 additions and 55 deletions

View File

@@ -14,7 +14,7 @@ public class DeviceInfo {
private String sn;
@Column(name = "device_model", nullable = false)
private String device_model;
private String deviceModel;
@Column(name = "device_alias")
private String deviceAlias;
@@ -23,12 +23,12 @@ public class DeviceInfo {
private String userId;
@Column(name = "bind_phone")
private String bind_phone;
private String bindPhone;
@Column(name = "add_time", nullable = false)
private Date add_time;
private Date addTime;
@Column(name = "activation_time")
private Date activation_time;
private Date activationTime;
}