1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.nova.sankuai.domain.dto.rongbei;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @Data
| @ApiModel(value = "device_info参数")
| public class DeviceInfoDto {
| @ApiModelProperty(value = "操作系统", required = true, example = "如:android,ios,h5", notes = "string(32)")
| private String os;
|
| @ApiModelProperty(value = "ip地址", required = true, example = "如:210.21.213.68", notes = "string(32)")
| private String ip;
|
| @ApiModelProperty(value = "经纬度", example = "如:120.25143,30.200504", notes = "string(32)")
| private String gps;
| }
|
|