Pu Zhibing
1 天以前 f355ef485a56e613b71d0262c089b995d7ca10d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.dataInterchange.api.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author zhibing.pu
 * @Date 2025/3/24 18:53
 */
@Data
@ApiModel
public class OrderTravelVo {
    @ApiModelProperty(value = "经度")
    private BigDecimal longitude;
    @ApiModelProperty(value = "纬度")
    private BigDecimal latitude;
}