puzhibing
2023-08-30 34eb869e7350173ff036881fc776bc27d5be6d7a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.supersavedriving.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;
}