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

com.labbol.cocoon.msg.JsonMsg Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
/**
 * 
 */
package com.labbol.cocoon.msg;

/**
 * @author pengfei
 * @date 2019年11月13日上午9:36:07
 * @version 1.2
 */
public class JsonMsg {

	private boolean success;

	private String msg;

	private String exception;

	public JsonMsg(boolean success){
		this.success = success;
	}

	public JsonMsg(boolean success, String msg) {
		this.success = success;
		setMsg(msg);
	}

	public boolean isSuccess() {
		return success;
	}

	public void setSuccess(boolean success) {
		this.success = success;
	}

	public String getMsg() {
		return msg;
	}

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

	public String getException() {
		return exception;
	}

	public void setException(String exception) {
		this.exception = exception;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy