puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
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;
}