All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.ealenxie.goodcang.warehouse.ModifyExFulfilmentPayload Maven / Gradle / Ivy

The newest version!
package io.github.ealenxie.goodcang.warehouse;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;

/**
 * @author EalenXie created on 2023/6/26 14:24
 */
@Getter
@Setter
public class ModifyExFulfilmentPayload {


    /**
     * 订单号
     */
    @JsonProperty("order_code")
    private String orderCode;
    /**
     * 期望到货时间
     */
    @JsonProperty("estimated_arrival_date")
    private String estimatedArrivalDate;
    /**
     * 期望到货时间
     */
    @JsonProperty("estimated_arrival_time")
    private String estimatedArrivalTime;
    /**
     * 收件人地址信息
     */
    @JsonProperty("address")
    private Address address;
    /**
     * 物流信息
     */
    @JsonProperty("fulfilment_info")
    private FulfilmentInfo fulfilmentInfo;
    /**
     * 税务信息
     */
    @JsonProperty("tax_info")
    private TaxInfo taxInfo;
    /**
     * 卡派渠道物流信息
     */
    @JsonProperty("truck_info")
    private TruckInfo truckInfo;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy