| | |
| | | package com.stylefeng.guns.modular.system.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | |
| | | */ |
| | | private BigDecimal orderMoney; |
| | | /** |
| | | * 起步价 |
| | | */ |
| | | @TableField("startMoney") |
| | | private Double startMoney; |
| | | /** |
| | | * 里程公里 |
| | | */ |
| | | @TableField("mileageKilometers") |
| | | private Double mileageKilometers; |
| | | /** |
| | | * 里程费 |
| | | */ |
| | | @TableField("mileageMoney") |
| | | private Double mileageMoney; |
| | | /** |
| | | * 时长分钟 |
| | | */ |
| | | @TableField("duration") |
| | | private Double duration; |
| | | /** |
| | | * 时长费 |
| | | */ |
| | | @TableField("durationMoney") |
| | | private Double durationMoney; |
| | | /** |
| | | * 等待分钟 |
| | | */ |
| | | @TableField("wait") |
| | | private Double wait; |
| | | /** |
| | | * 等待费 |
| | | */ |
| | | @TableField("waitMoney") |
| | | private Double waitMoney; |
| | | /** |
| | | * 远途公里 |
| | | */ |
| | | @TableField("longDistance") |
| | | private Double longDistance; |
| | | /** |
| | | * 远途费 |
| | | */ |
| | | @TableField("longDistanceMoney") |
| | | private Double longDistanceMoney; |
| | | /** |
| | | * 行程费 |
| | | */ |
| | | private BigDecimal travelMoney; |
| | |
| | | */ |
| | | private Integer isDelete; |
| | | |
| | | public Double getStartMoney() { |
| | | return startMoney; |
| | | } |
| | | |
| | | public void setStartMoney(Double startMoney) { |
| | | this.startMoney = startMoney; |
| | | } |
| | | |
| | | public Double getMileageKilometers() { |
| | | return mileageKilometers; |
| | | } |
| | | |
| | | public void setMileageKilometers(Double mileageKilometers) { |
| | | this.mileageKilometers = mileageKilometers; |
| | | } |
| | | |
| | | public Double getMileageMoney() { |
| | | return mileageMoney; |
| | | } |
| | | |
| | | public void setMileageMoney(Double mileageMoney) { |
| | | this.mileageMoney = mileageMoney; |
| | | } |
| | | |
| | | public Double getDuration() { |
| | | return duration; |
| | | } |
| | | |
| | | public void setDuration(Double duration) { |
| | | this.duration = duration; |
| | | } |
| | | |
| | | public Double getDurationMoney() { |
| | | return durationMoney; |
| | | } |
| | | |
| | | public void setDurationMoney(Double durationMoney) { |
| | | this.durationMoney = durationMoney; |
| | | } |
| | | |
| | | public Double getWait() { |
| | | return wait; |
| | | } |
| | | |
| | | public void setWait(Double wait) { |
| | | this.wait = wait; |
| | | } |
| | | |
| | | public Double getWaitMoney() { |
| | | return waitMoney; |
| | | } |
| | | |
| | | public void setWaitMoney(Double waitMoney) { |
| | | this.waitMoney = waitMoney; |
| | | } |
| | | |
| | | public Double getLongDistance() { |
| | | return longDistance; |
| | | } |
| | | |
| | | public void setLongDistance(Double longDistance) { |
| | | this.longDistance = longDistance; |
| | | } |
| | | |
| | | public Double getLongDistanceMoney() { |
| | | return longDistanceMoney; |
| | | } |
| | | |
| | | public void setLongDistanceMoney(Double longDistanceMoney) { |
| | | this.longDistanceMoney = longDistanceMoney; |
| | | } |
| | | |
| | | public Integer getOldState() { |
| | | return oldState; |
| | | } |