zhangback
2025-11-27 3849263b31a16a91ff08acaa42786ecfde76f33c
tms/src/main/java/com/ruoyi/tms/domain/TmsDispatchOrder.java
@@ -240,9 +240,7 @@
    private String shipperRegionLabel;
    /** 出发地地址 */
    @TableField("departure_address")
    private String departureAddress;
    /** 收货人(关联收发货人信息) */
@@ -251,9 +249,6 @@
    private Integer receiverId;
    /** 目的地地址 */
    @TableField("destination_address")
    private String destinationAddress;
    /** 收货人名称 */
@@ -267,10 +262,7 @@
    private String actualVehicleType;
    /** 实际装车开始时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("actual_load_start")
    private Date actualLoadStart;
    /** 收货人手机号 */
@@ -279,10 +271,7 @@
    private String receiverMobile;
    /** 实际卸车完成时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("actual_unload_end")
    private Date actualUnloadEnd;
    /** 收货人地址 */
@@ -290,11 +279,6 @@
    @TableField("receiver_address")
    private String receiverAddress;
    /** 实际出发时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("actual_departure")
    private Date actualDeparture;
    /** 收货行政区域 */
@@ -306,13 +290,34 @@
    @TableField("receiver_region_label")
    private String receiverRegionLabel;
    /** 出发地地址 */
    @TableField("departure_address")
    private String departureAddress;
    /** 目的地地址 */
    @TableField("destination_address")
    private String destinationAddress;
    /** 实际出发时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("actual_departure")
    private Date actualDeparture;
    /** 实际到达时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("actual_arrival")
    private Date actualArrival;
    /** 实际卸车完成时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("actual_unload_end")
    private Date actualUnloadEnd;
    /** 实际装车开始时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("actual_load_start")
    private Date actualLoadStart;
    /** 实发数量 */
    @TableField("actual_quantity")
    private BigDecimal actualQuantity;
@@ -445,4 +450,22 @@
    @TableField(exist = false)
    private BigDecimal paymentPlanAmount;
    @TableField("is_customs")
    private Integer isCustoms;
    @TableField("start_region_code")
    private String startRegionCode;
    @TableField("end_region_code")
    private String endRegionCode;
    @TableField("quote_detail_id")
    private Integer quoteDetailId;
    @TableField("operation_mode")
    private Integer operationMode;
    @Excel(name = "关联报价方案ID")
    @TableField("quote_plan_id")
    private Integer quotePlanId;
}