zhangback
2025-11-27 3849263b31a16a91ff08acaa42786ecfde76f33c
tms/src/main/java/com/ruoyi/tms/domain/TmsDispatchOrder.java
@@ -183,7 +183,7 @@
    /** 要求最早出发时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("earliest_departure")
    private Date earliestDeparture;
@@ -195,7 +195,7 @@
    /** 要求最晚出发时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("latest_departure")
    private Date latestDeparture;
@@ -213,7 +213,7 @@
    /** 要求最早到达时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("earliest_arrival")
    private Date earliestArrival;
@@ -225,7 +225,7 @@
    /** 要求最晚到达时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("latest_arrival")
    private Date latestArrival;
@@ -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;
@@ -424,5 +429,43 @@
    @TableField("accounts_payable_status")
    private Integer accountsPayableStatus;
    @TableField("collection_plan_id")
    private Integer collectionPlanId;
    @TableField(exist = false)
    private Integer collectionPlanDetailId;
    @TableField(exist = false)
    private BigDecimal collectionPlanAmount;
    @TableField(exist = false)
    private String collectionPlanName;
    @TableField("payment_plan_id")
    private Integer paymentPlanId;
    @TableField(exist = false)
    private String paymentPlanName;
    @TableField(exist = false)
    private Integer paymentPlanDetailId;
    @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;
}