package com.shove.vo; import java.io.Serializable; public class HelpMessage implements Serializable{ private static final long serialVersionUID = 1L; private String title; // 提示图片 默认为0 private int msg_type = 0; // msg 与 url 要对应 // 连接显示信息 private String[] msg;// 按钮内容 // 连接地址 private String[] url;// 按钮提示 // 提示图片常量 public static final int INFORMATIO = 0; public static final int WARNING = 1; public static final int CONFIRM = 2; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public int getMsg_type() { return msg_type; } public void setMsg_type(int msg_type) { this.msg_type = msg_type; } public String[] getMsg() { return msg; } public void setMsg(String[] msg) { this.msg = msg; } public String[] getUrl() { return url; } public void setUrl(String[] url) { this.url = url; } }