zhangback
2025-11-20 06e621b20868b97ca7a7f9c63df2f160a827bf6a
tms/src/main/java/com/ruoyi/tms/domain/TmsVehicle.java
@@ -203,14 +203,14 @@
     * 空载油耗(L/Km)
     */
    @TableField("empty_load_fuel")
    private Integer emptyLoadFuel;
    private BigDecimal emptyLoadFuel;
    /**
     * 重载油耗(L/Km)
     */
    @TableField("full_load_fuel")
    private Integer fullLoadFuel;
    private BigDecimal fullLoadFuel;
    /**
@@ -264,35 +264,35 @@
     * 实际长(mm)
     */
    @TableField("actual_length")
    private Integer actualLength;
    private BigDecimal actualLength;
    /**
     * 实际宽(mm)
     */
    @TableField("actual_width")
    private Integer actualWidth;
    private BigDecimal actualWidth;
    /**
     * 实际高(mm)
     */
    @TableField("actual_height")
    private Integer actualHeight;
    private BigDecimal actualHeight;
    /**
     * 装载体积(m³)
     */
    @TableField("load_volume")
    private Integer loadVolume;
    private BigDecimal loadVolume;
    /**
     * 装载重量(Kg)
     */
    @TableField("load_weight")
    private Integer loadWeight;
    private BigDecimal loadWeight;
    /**
@@ -355,5 +355,8 @@
    @TableField("remark")
    private String remark;
    @TableField("carrier_type")
    private Integer carrierType;
}