1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.everyday.word.vo;
|
| import com.everyday.word.entity.SystemEnum;
| import lombok.Data;
|
| /**
| * @author hxh
| * @title: AcceptData
| * @description: 接口接受基础数据
| * @date 2025/2/7 16:03
| */
| @Data
| public class AcceptData {
| private String device;
| private String packages;
| private long timestamp;
| private String sign;
| private String platform;
| private String channel;
| private int version;
| private String osVersion;
| private SystemEnum system;
| private Long uid;
| }
|
|