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

com.alipay.api.domain.AftersaleLogisticsInfoDTO Maven / Gradle / Ivy

package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 物流信息
 *
 * @author auto create
 * @since 1.0, 2024-07-12 21:39:16
 */
public class AftersaleLogisticsInfoDTO extends AlipayObject {

	private static final long serialVersionUID = 3693328858326651989L;

	/**
	 * 快递公司ID,
快递公司ID列表请查看请确认传入的值在此列表内,若发货的快递公司不在此列表内,可以传入值other
	 */
	@ApiField("delivery_id")
	private String deliveryId;

	/**
	 * 快递单号
	 */
	@ApiField("waybill_id")
	private String waybillId;

	public String getDeliveryId() {
		return this.deliveryId;
	}
	public void setDeliveryId(String deliveryId) {
		this.deliveryId = deliveryId;
	}

	public String getWaybillId() {
		return this.waybillId;
	}
	public void setWaybillId(String waybillId) {
		this.waybillId = waybillId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy