zhangback
2025-11-27 3849263b31a16a91ff08acaa42786ecfde76f33c
tms/src/main/java/com/ruoyi/tms/domain/TmsDispatchOrder.java
@@ -35,6 +35,8 @@
    @TableField("customer_id")
    private Integer customerId;
    @TableField("customer_code")
    private String customerCode;
    /** 客户编码 */
    @TableField("customer_name")
@@ -181,7 +183,7 @@
    /** 要求最早出发时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("earliest_departure")
    private Date earliestDeparture;
@@ -193,7 +195,7 @@
    /** 要求最晚出发时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("latest_departure")
    private Date latestDeparture;
@@ -211,7 +213,7 @@
    /** 要求最早到达时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("earliest_arrival")
    private Date earliestArrival;
@@ -223,7 +225,7 @@
    /** 要求最晚到达时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("latest_arrival")
    private Date latestArrival;
@@ -233,10 +235,12 @@
    @TableField("shipper_region_code")
    private String shipperRegionCode;
    @Excel(name = "发货行政区域")
    @TableField("shipper_region_label")
    private String shipperRegionLabel;
    /** 出发地地址 */
    @TableField("departure_address")
    private String departureAddress;
    /** 收货人(关联收发货人信息) */
@@ -245,9 +249,6 @@
    private Integer receiverId;
    /** 目的地地址 */
    @TableField("destination_address")
    private String destinationAddress;
    /** 收货人名称 */
@@ -261,10 +262,7 @@
    private String actualVehicleType;
    /** 实际装车开始时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("actual_load_start")
    private Date actualLoadStart;
    /** 收货人手机号 */
@@ -273,10 +271,7 @@
    private String receiverMobile;
    /** 实际卸车完成时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("actual_unload_end")
    private Date actualUnloadEnd;
    /** 收货人地址 */
@@ -285,16 +280,29 @@
    private String receiverAddress;
    /** 实际出发时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField("actual_departure")
    private Date actualDeparture;
    /** 收货行政区域 */
    @Excel(name = "收货行政区域")
    @TableField("receiver_region_code")
    private String receiverRegionCode;
    @Excel(name = "收货行政区域")
    @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;
    /** 实际到达时间 */
@@ -302,7 +310,14 @@
    @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;
@@ -414,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;
}