feat(device): 添加极光推送注册ID字段
在设备其他信息相关实体、请求和响应对象中新增pushId字段,用于存储极光推送注册ID。
This commit is contained in:
@@ -47,4 +47,5 @@ public class SnDeviceOtherInfo extends BaseEntity {
|
||||
private String totalStorage;
|
||||
private String freeRam;
|
||||
private String totalRam;
|
||||
private String pushId;
|
||||
}
|
||||
|
||||
@@ -100,4 +100,8 @@ public class SnOtherInfoReq {
|
||||
@Schema(description = "总内存")
|
||||
@JsonProperty("total_ram")
|
||||
private String totalRam;
|
||||
|
||||
@Schema(description = "极光推送注册ID")
|
||||
@JsonProperty("push_id")
|
||||
private String pushId;
|
||||
}
|
||||
|
||||
@@ -86,4 +86,7 @@ public class DeviceOtherInfoVO {
|
||||
|
||||
@Schema(description = "总内存")
|
||||
private String totalRam;
|
||||
|
||||
@Schema(description = "极光推送注册ID")
|
||||
private String pushId;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user