zhangback
2025-11-18 de1a42d853176d83805c1290d7381235a9780a2d
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;
@@ -232,6 +234,10 @@
    @Excel(name = "发货行政区域")
    @TableField("shipper_region_code")
    private String shipperRegionCode;
    @Excel(name = "发货行政区域")
    @TableField("shipper_region_label")
    private String shipperRegionLabel;
    /** 出发地地址 */
@@ -295,6 +301,10 @@
    @Excel(name = "收货行政区域")
    @TableField("receiver_region_code")
    private String receiverRegionCode;
    @Excel(name = "收货行政区域")
    @TableField("receiver_region_label")
    private String receiverRegionLabel;
    /** 实际到达时间 */
@@ -414,5 +424,25 @@
    @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;
}