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

io.vilya.common.api.ListBean Maven / Gradle / Ivy

The newest version!
package io.vilya.common.api;

import java.util.List;

/**
 * @author iamaprin
 * @since 2017年10月29日 下午3:45:00
 */
public class ListBean {

	private List list;
	
	private Integer total;

	public List getList() {
		return list;
	}

	public Integer getTotal() {
		return total;
	}

	public void setList(List list) {
		this.list = list;
	}

	public void setTotal(Integer total) {
		this.total = total;
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy