| | |
| | | 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 Integer userType; |
| | | /** |
| | | * 订单类型(1=专车,2=出租车,3=城际,4=小件物流,5=余额充值) |
| | | * 订单类型(1=专车,2=出租车,3=城际,4=小件物流,5=余额充值 6平台充值 7平台扣除) |
| | | */ |
| | | private Integer orderType; |
| | | /** |
| | | * 订单id |
| | | */ |
| | | private Integer orderId; |
| | | /** |
| | | * 司机余额 |
| | | */ |
| | | @TableField("driverBalance") |
| | | private Double driverBalance; |
| | | |
| | | public Double getDriverBalance() { |
| | | return driverBalance; |
| | | } |
| | | |
| | | public void setDriverBalance(Double driverBalance) { |
| | | this.driverBalance = driverBalance; |
| | | } |
| | | |
| | | public Integer getId() { |
| | | return id; |