审计记录

src/main/java/com/xxxcom/model/vo/Msg_Vo.java 558 字节
胡敏 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
package com.xxxcom.model.vo;

import io.vertx.core.json.JsonObject;

public class Msg_Vo {

	private int code;
	private String msg;
	private Object data;
	private int total;

	public Msg_Vo(int code, Object data) {
		this.code = code;
		this.data = data;
	}

	public Msg_Vo(int code, String msg) {

		this.code = code;
		this.msg = msg;
	}

	public Msg_Vo(int code, Object data, String msg) {
		this(code, data);
		this.data = data;
		this.msg = msg;
	}

	public Msg_Vo(int code, Object data, int total) {
		this(code, data);
		this.total = total;
	}
	
	 
}