nickchange
2023-11-29 d4fbea2ac7f7c98ffd83480f8f2535ca92f3baea
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
package com.dsh.account.feignclient.other.model;
 
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class StoreInfo {
 
    @ApiModelProperty(value = "门店id")
    private Integer storeId;
 
    @ApiModelProperty(value = "门店背景图")
    private String storeImg;
 
    @ApiModelProperty(value = "门店距离当前位置")
    private double distance;
 
    @ApiModelProperty(value = "门店名称")
    private String storeName;
 
    @ApiModelProperty(value = "门店详细地址")
    private String storeAddr;
 
    @ApiModelProperty(value = "经度")
    String longitude;
 
    @ApiModelProperty(value = "纬度")
    String latitude;
 
}