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

com.xnx3.doc.bean.VOBean Maven / Gradle / Ivy

There is a newer version: 1.16
Show newest version
package com.xnx3.doc.bean;

import java.util.ArrayList;
import java.util.List;

/**
 * VO类
 * @author apple
 *
 */
public class VOBean {
	public List list;	//参数列表

	public VOBean() {
		this.list = new ArrayList();
	}
	
	public List getList() {
		return list;
	}

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

	@Override
	public String toString() {
		return "VOBean [list=" + list + "]";
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy