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

io.github.ealenxie.goodcang.assistant.CreateLogisticTicketPayload Maven / Gradle / Ivy

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

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

import java.util.List;

/**
 * @author EalenXie created on 2023/6/27 10:06
 */
@Getter
@Setter
public class CreateLogisticTicketPayload {

    /**
     * 订单号
     */
    @JsonProperty("order_code")
    private String orderCode;
    /**
     * 跟踪号
     */
    @JsonProperty("tracking_no")
    private String trackingNo;
    /**
     * 查件类型Id
     */
    @JsonProperty("it_type_id")
    private Integer itTypeId;
    /**
     * 查件需求
     */
    @JsonProperty("io_desc")
    private String ioDesc;
    /**
     * 通知邮箱
     */
    @JsonProperty("customer_emails_list")
    private List customerEmailsList;
    /**
     * 保存类型
     */
    @JsonProperty("save_type")
    private Integer saveType;
    /**
     * 附件ID列表
     */
    @JsonProperty("attachment_id_list")
    private List attachmentIdList;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy