puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
management/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TOrder.java
@@ -1,5 +1,6 @@
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;
@@ -138,7 +139,16 @@
     * 添加时间
     */
    private Date createTime;
    /**
     * 预估里程
     */
    @TableField("estimatedMileage")
    private Double estimatedMileage;
    /**
     * 预估时间
     */
    @TableField("estimatedTime")
    private Integer estimatedTime;
    /**
     * 行程录音
     */
@@ -196,9 +206,18 @@
    private BigDecimal discountAmount;
    @ApiModelProperty(value = "实际里程(米)")
    private Integer actualMileage;
    /**
     * 折扣0.01
     */
    @TableField("discount")
    private Double discount;
    @ApiModelProperty(value = "是否已开票 1是 0否")
    private Integer isInvoice;
    /**
     * 大厅订单(0=否,1=是)
     */
    @TableField("hallOrder")
    private Integer hallOrder;
    public String getUserPhone() {
        return userPhone;
@@ -584,6 +603,38 @@
        this.createTime = createTime;
    }
    public Double getEstimatedMileage() {
        return estimatedMileage;
    }
    public void setEstimatedMileage(Double estimatedMileage) {
        this.estimatedMileage = estimatedMileage;
    }
    public Integer getEstimatedTime() {
        return estimatedTime;
    }
    public void setEstimatedTime(Integer estimatedTime) {
        this.estimatedTime = estimatedTime;
    }
    public Double getDiscount() {
        return discount;
    }
    public void setDiscount(Double discount) {
        this.discount = discount;
    }
    public Integer getHallOrder() {
        return hallOrder;
    }
    public void setHallOrder(Integer hallOrder) {
        this.hallOrder = hallOrder;
    }
    @Override
    protected Serializable pkVal() {
        return this.id;