sunshine
2024-11-05 53bd8a8d8184b3f19695b756ee78f343cdb9b9b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.nova.sankuai.domain.dto.zhongzan;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@ApiModel(value = "GPS信息DTO")
@Data
public class Gps {
    @ApiModelProperty(value = "纬度")
    private String latitude;
 
    @ApiModelProperty(value = "经度")
    private String longitude;
}