| | |
| | | @TableField("customer_id") |
| | | private Integer customerId; |
| | | |
| | | @TableField("customer_code") |
| | | private String customerCode; |
| | | |
| | | /** 客户编码 */ |
| | | @TableField("customer_name") |
| | |
| | | |
| | | |
| | | /** 要求最早出发时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("earliest_departure") |
| | | private Date earliestDeparture; |
| | | |
| | |
| | | |
| | | |
| | | /** 要求最晚出发时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("latest_departure") |
| | | private Date latestDeparture; |
| | | |
| | |
| | | |
| | | |
| | | /** 要求最早到达时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("earliest_arrival") |
| | | private Date earliestArrival; |
| | | |
| | |
| | | |
| | | |
| | | /** 要求最晚到达时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("latest_arrival") |
| | | private Date latestArrival; |
| | | |
| | |
| | | @TableField("shipper_region_code") |
| | | private String shipperRegionCode; |
| | | |
| | | @Excel(name = "发货行政区域") |
| | | @TableField("shipper_region_label") |
| | | private String shipperRegionLabel; |
| | | |
| | | /** 出发地地址 */ |
| | | @TableField("departure_address") |
| | | private String departureAddress; |
| | | |
| | | |
| | | |
| | | |
| | | /** 收货人(关联收发货人信息) */ |
| | |
| | | private Integer receiverId; |
| | | |
| | | |
| | | /** 目的地地址 */ |
| | | @TableField("destination_address") |
| | | private String destinationAddress; |
| | | |
| | | |
| | | /** 收货人名称 */ |
| | |
| | | private String actualVehicleType; |
| | | |
| | | |
| | | /** 实际装车开始时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("actual_load_start") |
| | | private Date actualLoadStart; |
| | | |
| | | |
| | | |
| | | /** 收货人手机号 */ |
| | |
| | | private String receiverMobile; |
| | | |
| | | |
| | | /** 实际卸车完成时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("actual_unload_end") |
| | | private Date actualUnloadEnd; |
| | | |
| | | |
| | | |
| | | /** 收货人地址 */ |
| | |
| | | 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; |
| | | |
| | | |
| | | /** 实际到达时间 */ |
| | |
| | | @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; |
| | |
| | | @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; |
| | | } |