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

com.mizhousoft.commons.web.request.EntityRequest Maven / Gradle / Ivy

package com.mizhousoft.commons.web.request;

/**
 * 请求
 *
 * @version
 */
public class EntityRequest
{
	/**
	 * ID
	 */
	protected T id;

	/**
	 * 获取id
	 * 
	 * @return
	 */
	public T getId()
	{
		return id;
	}

	/**
	 * 设置id
	 * 
	 * @param id
	 */
	public void setId(T id)
	{
		this.id = id;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public String toString()
	{
		StringBuilder builder = new StringBuilder();
		builder.append("{\"");
		if (id != null)
		{
			builder.append("id\":\"");
			builder.append(id);
		}
		builder.append("\"}");
		return builder.toString();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy