liujie
2023-08-16 db7fa6a91b9534ac90e219b6f554c54c43c83a5a
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
package com.supersavedriving.driver.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel
public class AddOrderWarpper {
    @ApiModelProperty(value = "用户电话", required = true, dataType = "string")
    private String phone;
    @ApiModelProperty(value = "用户姓名", required = false, dataType = "string")
    private String userName;
    @ApiModelProperty(value = "起点地址", required = true, dataType = "string")
    private String startAddress;
    @ApiModelProperty(value = "起点经度", required = true, dataType = "string")
    private String startLng;
    @ApiModelProperty(value = "起点纬度", required = true, dataType = "string")
    private String startLat;
    @ApiModelProperty(value = "终点地址", required = false, dataType = "string")
    private String endAddress;
    @ApiModelProperty(value = "终点经度", required = false, dataType = "string")
    private String endLng;
    @ApiModelProperty(value = "终点纬度", required = false, dataType = "string")
    private String endLat;
}