feat(device): 添加极光推送注册ID字段

在设备其他信息相关实体、请求和响应对象中新增pushId字段,用于存储极光推送注册ID。
This commit is contained in:
2026-08-09 23:44:37 +08:00
parent 369a940344
commit 0634491a01
4 changed files with 9 additions and 0 deletions

View File

@@ -47,4 +47,5 @@ public class SnDeviceOtherInfo extends BaseEntity {
private String totalStorage;
private String freeRam;
private String totalRam;
private String pushId;
}

View File

@@ -100,4 +100,8 @@ public class SnOtherInfoReq {
@Schema(description = "总内存")
@JsonProperty("total_ram")
private String totalRam;
@Schema(description = "极光推送注册ID")
@JsonProperty("push_id")
private String pushId;
}

View File

@@ -86,4 +86,7 @@ public class DeviceOtherInfoVO {
@Schema(description = "总内存")
private String totalRam;
@Schema(description = "极光推送注册ID")
private String pushId;
}