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; }