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

com.taobao.api.response.TimeGetResponse Maven / Gradle / Ivy

There is a newer version: 1.8.10
Show newest version
package com.taobao.api.response;

import java.util.Date;
import com.taobao.api.internal.mapping.ApiField;

import com.taobao.api.TaobaoResponse;

/**
 * TOP API: taobao.time.get response.
 * 
 * @author top auto create
 * @since 1.0, null
 */
public class TimeGetResponse extends TaobaoResponse {

	private static final long serialVersionUID = 8726195255318242156L;

	/** 
	 * 淘宝系统当前时间。格式:yyyy-MM-dd HH:mm:ss
	 */
	@ApiField("time")
	private Date time;


	public void setTime(Date time) {
		this.time = time;
	}
	public Date getTime( ) {
		return this.time;
	}
	


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy