| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ruoyi.common.core.annotation.Excel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | */ |
| | | @TableField("code") |
| | | @ApiModelProperty(value = "订单编号") |
| | | @Excel(name = "订单编号", width = 30) |
| | | private String code; |
| | | /** |
| | | * 车辆id |
| | |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "车牌号") |
| | | @Excel(name = "车牌号", width = 30) |
| | | private String vehicleNumber; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "车牌颜色") |
| | | @Excel(name = "车牌颜色", width = 30) |
| | | private String licensePlateColor; |
| | | /** |
| | | * 驾驶员id |
| | |
| | | private Integer driverId; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "司机姓名") |
| | | private String driverName; |
| | | @ApiModelProperty(value = "驾驶证编号") |
| | | private String drivingLicenseNumber; |
| | | /** |
| | | * 企业id |
| | | */ |
| | |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "企业名称") |
| | | @Excel(name = "车辆所属公司", width = 30) |
| | | private String enterpriseName; |
| | | /** |
| | | * 下单地 |
| | |
| | | @ApiModelProperty(value = "下单地") |
| | | private String orderPlace; |
| | | /** |
| | | * 发起地区划 |
| | | */ |
| | | @TableField("order_place_code") |
| | | @ApiModelProperty(value = "发起地区划") |
| | | private String orderPlaceCode; |
| | | /** |
| | | * 上车点 |
| | | */ |
| | | @TableField("boarding_point") |
| | | @ApiModelProperty(value = "上车点") |
| | | @Excel(name = "上车地点", width = 30) |
| | | private String boardingPoint; |
| | | /** |
| | | * 下车点 |
| | | */ |
| | | @TableField("drop_off_point") |
| | | @ApiModelProperty(value = "下车点") |
| | | @Excel(name = "下车地点", width = 30) |
| | | private String dropOffPoint; |
| | | /** |
| | | * 载客里程 |
| | | */ |
| | | @TableField("passenger_mileage") |
| | | @ApiModelProperty(value = "载客里程") |
| | | @Excel(name = "载客里程", width = 30) |
| | | private String passengerMileage; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "司机姓名") |
| | | @Excel(name = "驾驶员名称", width = 30) |
| | | private String driverName; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "司机电话") |
| | | @Excel(name = "驾驶员电话", width = 30) |
| | | private String driverPhone; |
| | | /** |
| | | * 订单时间 |
| | | */ |
| | |
| | | */ |
| | | @TableField("order_delivery_time") |
| | | @ApiModelProperty(value = "派单时间") |
| | | @Excel(name = "派单时间", width = 30) |
| | | private String orderDeliveryTime; |
| | | /** |
| | | * 订单金额 |
| | | */ |
| | | @TableField("order_amount") |
| | | @ApiModelProperty(value = "订单金额") |
| | | @Excel(name = "订单金额", width = 30) |
| | | private String orderAmount; |
| | | /** |
| | | * 支付金额 |