|
@@ -1,7 +1,8 @@
|
|
|
package com.tuoren.forward.entity;
|
|
package com.tuoren.forward.entity;
|
|
|
|
|
|
|
|
|
|
+import com.alibaba.fastjson2.JSONArray;
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
|
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
|
|
-import com.tuoren.forward.util.WifiListDeserializer;
|
|
|
|
|
|
|
+//import com.tuoren.forward.util.WifiListDeserializer;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
|
|
|
@@ -14,18 +15,25 @@ public class UserConfig {
|
|
|
private String id;
|
|
private String id;
|
|
|
|
|
|
|
|
@Schema(description = "wifi信息:[{“name”:'tuoren1',“password”:'12345678'},{},{},...]")
|
|
@Schema(description = "wifi信息:[{“name”:'tuoren1',“password”:'12345678'},{},{},...]")
|
|
|
- @JsonDeserialize(using = WifiListDeserializer.class)
|
|
|
|
|
|
|
+// @JsonDeserialize(using = WifiListDeserializer.class)
|
|
|
private String wifi;
|
|
private String wifi;
|
|
|
|
|
|
|
|
|
|
+
|
|
|
@Schema(description = "医院数据对接服务地址")
|
|
@Schema(description = "医院数据对接服务地址")
|
|
|
private String localAddress;
|
|
private String localAddress;
|
|
|
|
|
|
|
|
@Schema(description = "医院数据对接服务端口")
|
|
@Schema(description = "医院数据对接服务端口")
|
|
|
private Integer localPort;
|
|
private Integer localPort;
|
|
|
|
|
|
|
|
|
|
+ @Schema(description = "设备密钥")
|
|
|
|
|
+ private String deviceSecret;
|
|
|
|
|
+
|
|
|
@Schema(description = "创建时间")
|
|
@Schema(description = "创建时间")
|
|
|
private Date createtime;
|
|
private Date createtime;
|
|
|
|
|
|
|
|
@Schema(description = "修改时间")
|
|
@Schema(description = "修改时间")
|
|
|
private Date modifytime;
|
|
private Date modifytime;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
}
|
|
}
|