puzhibing
2023-06-12 d4f8078c2a062864dab885d6bd54fbe1195f85e2
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
27
28
29
30
31
32
33
34
35
package com.agentdriving.user.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @date 2023/3/3 14:57
 */
@Data
@ApiModel
public class TravelOrder {
    @ApiModelProperty(value = "起点纬度", dataType = "string", required = true)
    private String startLat;
    @ApiModelProperty(value = "起点经度", dataType = "string", required = true)
    private String startLng;
    @ApiModelProperty(value = "起点地址", dataType = "string", required = true)
    private String startAddress;
    @ApiModelProperty(value = "终点纬度", dataType = "string", required = false)
    private String endLat;
    @ApiModelProperty(value = "终点经度", dataType = "string", required = false)
    private String endLng;
    @ApiModelProperty(value = "终点地址", dataType = "string", required = false)
    private String endAddress;
    @ApiModelProperty(value = "司机数量", dataType = "int", required = true)
    private Integer driverNum;
    @ApiModelProperty(value = "乘车人姓名", dataType = "string", required = false)
    private String userName;
    @ApiModelProperty(value = "乘车人电话", dataType = "string", required = false)
    private String userPhone;
    @ApiModelProperty(value = "司机id", dataType = "int", required = false)
    private Integer driverId;
 
}