|
@@ -22,7 +22,7 @@ public class TableDataInfo implements Serializable |
|
@@ -22,7 +22,7 @@ public class TableDataInfo implements Serializable |
|
22
|
private int code;
|
22
|
private int code;
|
|
23
|
|
23
|
|
|
24
|
/** 消息内容 */
|
24
|
/** 消息内容 */
|
|
25
|
- private int msg;
|
25
|
+ private String msg;
|
|
26
|
|
26
|
|
|
27
|
/**
|
27
|
/**
|
|
28
|
* 表格数据对象
|
28
|
* 表格数据对象
|
|
@@ -73,12 +73,12 @@ public class TableDataInfo implements Serializable |
|
@@ -73,12 +73,12 @@ public class TableDataInfo implements Serializable |
|
73
|
this.code = code;
|
73
|
this.code = code;
|
|
74
|
}
|
74
|
}
|
|
75
|
|
75
|
|
|
76
|
- public int getMsg()
|
76
|
+ public String getMsg()
|
|
77
|
{
|
77
|
{
|
|
78
|
return msg;
|
78
|
return msg;
|
|
79
|
}
|
79
|
}
|
|
80
|
|
80
|
|
|
81
|
- public void setMsg(int msg)
|
81
|
+ public void setMsg(String msg)
|
|
82
|
{
|
82
|
{
|
|
83
|
this.msg = msg;
|
83
|
this.msg = msg;
|
|
84
|
}
|
84
|
}
|