| | |
| | | import com.baomidou.mybatisplus.activerecord.Model; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | |
| | | /** |
| | | * 开始服务时间 |
| | | */ |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date startTime; |
| | | /** |
| | | * 起点地址 |
| | |
| | | */ |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 行程录音 |
| | | */ |
| | | private String routeRecord; |
| | | |
| | | @ApiModelProperty(value = "起步里程(公里)") |
| | | private Double startDistance; |
| | | |
| | |
| | | @ApiModelProperty(value = "恶劣天气超出费") |
| | | private BigDecimal overBadWeatherPrice; |
| | | |
| | | @ApiModelProperty(value = "折扣优惠金额") |
| | | private BigDecimal discountAmount; |
| | | @ApiModelProperty(value = "实际里程(米)") |
| | | private Integer actualMileage; |
| | | |
| | | @ApiModelProperty(value = "是否已开票 1是 0否") |
| | | private Integer isInvoice; |
| | | |
| | | @ApiModelProperty(value = "用户手机号") |
| | | private String userPhone; |
| | | |
| | | @ApiModelProperty(value = "用户姓名") |
| | | private String userName; |
| | | |
| | | public String getUserPhone() { |
| | | return userPhone; |
| | | } |
| | | |
| | | public void setUserPhone(String userPhone) { |
| | | this.userPhone = userPhone; |
| | | } |
| | | |
| | | public String getUserName() { |
| | | return userName; |
| | | } |
| | | |
| | | public void setUserName(String userName) { |
| | | this.userName = userName; |
| | | } |
| | | |
| | | public Integer getIsInvoice() { |
| | | return isInvoice; |
| | | } |
| | | |
| | | public void setIsInvoice(Integer isInvoice) { |
| | | this.isInvoice = isInvoice; |
| | | } |
| | | |
| | | public Integer getActualMileage() { |
| | | return actualMileage; |
| | | } |
| | | |
| | | public void setActualMileage(Integer actualMileage) { |
| | | this.actualMileage = actualMileage; |
| | | } |
| | | |
| | | public String getRouteRecord() { |
| | | return routeRecord; |
| | | } |
| | | |
| | | public void setRouteRecord(String routeRecord) { |
| | | this.routeRecord = routeRecord; |
| | | } |
| | | |
| | | public BigDecimal getDiscountAmount() { |
| | | return discountAmount; |
| | | } |
| | | |
| | | public void setDiscountAmount(BigDecimal discountAmount) { |
| | | this.discountAmount = discountAmount; |
| | | } |
| | | |
| | | public Double getStartDistance() { |
| | | return startDistance; |
| | | } |