Sunshine
2024-11-05 8f7985d7764a0aad24bd593ac5ea47b7fc290961
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.nova.sankuai.domain.dto.qinghuayoupin;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@ApiModel(value = "设备信息DTO")
@Data
public class DeviceInfo {
 
    @ApiModelProperty(value = "iOS设备专用,IDFA标识")
    private String idfa;
 
    @ApiModelProperty(value = "Android广告追踪ID")
    private String oaId;
 
    @ApiModelProperty(value = "设备类型", notes = "ios, android")
    private String deviceType;
 
 
    @ApiModelProperty(value = "用户代理(User agent,简称UA)")
    private String ua;
 
    @ApiModelProperty(value = "登陆设备IP地址")
    private String ip;
 
    @ApiModelProperty(value = "是否模拟器")
    private String isSimulator;
 
    @ApiModelProperty(value = "系统版本")
    private String osVersion;
 
    @ApiModelProperty(value = "系统类型")
    private String osType;
 
    @ApiModelProperty(value = "机型")
    private String model;
}