Commit 9ecb8b76 authored by yanzg's avatar yanzg

升级新版本

parent 05d40d89
...@@ -22,6 +22,7 @@ public class TestJsonHelper { ...@@ -22,6 +22,7 @@ public class TestJsonHelper {
Assert.assertNotEquals(from, to); Assert.assertNotEquals(from, to);
Assert.assertNotEquals(from.getData(), to.getData()); Assert.assertNotEquals(from.getData(), to.getData());
Assert.assertEquals(from.getData().getName(), to.getData().getName()); Assert.assertEquals(from.getData().getName(), to.getData().getName());
Assert.assertFalse(to.getVal() == null);
Assert.assertFalse(to.getList() == null); Assert.assertFalse(to.getList() == null);
Assert.assertTrue(to.getListNull() == null); Assert.assertTrue(to.getListNull() == null);
} }
...@@ -48,6 +49,8 @@ class Fanxing<T> { ...@@ -48,6 +49,8 @@ class Fanxing<T> {
private T data; private T data;
private Integer val = 0;
/** /**
* null值反序列化后不会为null * null值反序列化后不会为null
*/ */
...@@ -72,6 +75,14 @@ class Fanxing<T> { ...@@ -72,6 +75,14 @@ class Fanxing<T> {
return data; return data;
} }
public Integer getVal() {
return val;
}
public void setVal(Integer val) {
this.val = val;
}
public void setData(T data) { public void setData(T data) {
this.data = data; this.data = data;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment