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; } }