| | |
| | | package com.stylefeng.guns.modular.CharteredCar.dto; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @Data |
| | | public class CharteredCarDto { |
| | | @ApiModelProperty("出行时间") |
| | | private Date traveltime; |
| | | @ApiModelProperty("出行时间") |
| | | private String traveltime; |
| | | @ApiModelProperty("用车时间") |
| | | private double carTime; |
| | | @ApiModelProperty("车型id") |
| | | private Integer serverCarModelId; |
| | |
| | | @ApiModelProperty("联系人电话") |
| | | private String contactPhone; |
| | | @ApiModelProperty("备注") |
| | | private String remark; |
| | | |
| | | private String newRemark; |
| | | private Integer userId; |
| | | private Double startLon; |
| | | private Double startLat; |
| | | private String startAddress; |
| | | private Double endLon; |
| | | private Double endLat; |
| | | private String endAddress; |
| | | |
| | | private Integer serviceId; |
| | | |
| | | } |