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

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

There is a newer version: 2.0.0
Show newest version
package com.alipay.api.domain;

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

/**
 * 到位服务物流信息的扩展字段,包含服务的开始时间和结束时间信息
 *
 * @author auto create
 * @since 1.0, 2017-01-16 11:29:56
 */
public class OrderLogisticsExtInfo extends AlipayObject {

	private static final long serialVersionUID = 6743952121844868448L;

	/**
	 * 服务结束时间,格式为yyyy-MM-dd HH:mm(到分)
	 */
	@ApiField("gmt_end")
	private String gmtEnd;

	/**
	 * 服务开始时间,格式为yyyy-MM-dd HH:mm(到分)
	 */
	@ApiField("gmt_start")
	private String gmtStart;

	public String getGmtEnd() {
		return this.gmtEnd;
	}
	public void setGmtEnd(String gmtEnd) {
		this.gmtEnd = gmtEnd;
	}

	public String getGmtStart() {
		return this.gmtStart;
	}
	public void setGmtStart(String gmtStart) {
		this.gmtStart = gmtStart;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy