| | |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.activerecord.Model; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | |
| | | * @since 2020-06-09 |
| | | */ |
| | | @TableName("t_sys_cancle_order") |
| | | @Data |
| | | public class TSysCancleOrder extends Model<TSysCancleOrder> { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | */ |
| | | private BigDecimal money; |
| | | /** |
| | | *预定费用 |
| | | */ |
| | | private BigDecimal reserveMoney; |
| | | /** |
| | | *取消里程费 |
| | | */ |
| | | private Integer km; |
| | | /** |
| | | * 司机超时xx分钟 未到达指定地点 用户取消订单 不收取费用 |
| | | */ |
| | | private Integer overtime; |
| | | /** |
| | | * 取消时长费 |
| | | */ |
| | | private Integer kmMinute; |
| | | /** |
| | | * 1=普通单取消,2=预约单取消 |
| | | */ |
| | | private Integer type; |