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

com.upic.common.base.entiy.ResultData Maven / Gradle / Ivy

package com.upic.common.base.entiy;
public class ResultData {

	private int code;
	
	private String status;
	
	private Object obj;
	
	private String msg;

	public int getCode() {
		return code;
	}

	public void setCode(int code) {
		this.code = code;
	}

	public String getStatus() {
		return status;
	}

	public void setStatus(String status) {
		this.status = status;
	}

	public Object getObj() {
		return obj;
	}

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

	public String getMsg() {
		return msg;
	}

	public void setMsg(String msg) {
		this.msg = msg;
	}

	public ResultData(int code, String status, Object obj, String msg) {
		super();
		this.code = code;
		this.status = status;
		this.obj = obj;
		this.msg = msg;
	}

	public ResultData() {
		super();
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy