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

com.mizhousoft.commons.web.GenericResponse Maven / Gradle / Ivy

package com.mizhousoft.commons.web;

/**
 * 泛型响应
 *
 * @version
 */
public class GenericResponse extends ActionResponse
{
	private T data;

	/**
	 * 获取data
	 * 
	 * @return
	 */
	public T getData()
	{
		return data;
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy