puzhibing
2023-06-20 f3672f3dbcb943bf2d21047bb0c474502bc29930
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.agentdriving.driver.modular.system.warpper;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class OrderEndAddressWarpper {
    @ApiModelProperty(value = "订单id", dataType = "long", required = true)
    private Long orderId;
    @ApiModelProperty(value = "终点地址(106上传)", dataType = "string", required = true)
    private String endAddress;
    @ApiModelProperty(value = "终点纬度(106上传)", dataType = "string", required = true)
    private String endLat;
    @ApiModelProperty(value = "终点经度(106上传)", dataType = "string", required = true)
    private String endLng;
}