io.github.ealenxie.goodcang.warehouse.TrackingStatusResponse Maven / Gradle / Ivy
The newest version!
package io.github.ealenxie.goodcang.warehouse;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
/**
* @author EalenXie created on 2023/6/26 14:14
*/
@Getter
@Setter
public class TrackingStatusResponse {
/**
* 订单号
*/
@JsonProperty("order_code")
private String orderCode;
/**
* 渠道名称
*/
@JsonProperty("code")
private String code;
/**
* 轨迹信息
*/
@JsonProperty("trajectory_information")
private List trajectoryInformation;
}