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

com.yuweix.kuafu.permission.dto.PageResponseDto Maven / Gradle / Ivy

The newest version!
package com.yuweix.kuafu.permission.dto;


import java.io.Serializable;
import java.util.List;


/**
 * @author yuwei
 */
public class PageResponseDto implements Serializable {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	/**
	 * 数据条数
	 */
	private Integer size;

	/**
	 * 数据项
	 */
	private List list;


	public Integer getSize() {
		return size;
	}

	public void setSize(Integer size) {
		this.size = size;
	}

	public List getList() {
		return list;
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy