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

com.mars.core.model.MarsBeanModel Maven / Gradle / Ivy

There is a newer version: 3.3.3
Show newest version
package com.mars.core.model;

/**
 * marsBean的实体类
 * 
 * @author yuye
 *
 */
public class MarsBeanModel {

	/**
	 * bean名称
	 */
	private String name;

	/**
	 * bean对象
	 */
	private Object obj;

	/**
	 * class对象
	 */
	private Class cls;

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Object getObj() {
		return obj;
	}

	public void setObj(Object obj) {
		this.obj = obj;
	}

	public Class getCls() {
		return cls;
	}

	public void setCls(Class cls) {
		this.cls = cls;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy