This commit is contained in:
jinyu 2016-04-22 18:54:34 +08:00
parent 1498e428fb
commit 047ee5f5e1
4 changed files with 25 additions and 25 deletions

View File

@ -2,6 +2,9 @@ package com.foxinmy.weixin4j.mp.model;
import java.io.Serializable;
import com.alibaba.fastjson.annotation.JSONCreator;
import com.alibaba.fastjson.annotation.JSONField;
/**
* 分组
*
@ -26,26 +29,6 @@ public class Group implements Serializable {
*/
private int count;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getCount() {
return count;
}
public Group(int id, String name) {
this.id = id;
this.name = name;
@ -55,8 +38,25 @@ public class Group implements Serializable {
this.name = name;
}
public Group() {
@JSONCreator
public Group(@JSONField(name = "id") int id,
@JSONField(name = "name") String name,
@JSONField(name = "count") int count) {
this.id = id;
this.name = name;
this.count = count;
}
public int getId() {
return id;
}
public String getName() {
return name;
}
public int getCount() {
return count;
}
/**

View File

@ -50,6 +50,7 @@ public class WeixinTokenCreator extends AbstractTokenCreator {
WeixinResponse response = weixinExecutor.get(tokenUrl);
Token token = response.getAsObject(new TypeReference<Token>() {
});
token.setCreateTime(System.currentTimeMillis());
token.setOriginalResult(response.getAsString());
return token;
}

View File

@ -36,10 +36,8 @@ public class GroupTest extends TokenTest {
@Test
public void get() throws WeixinException {
List<Group> groups = groupApi.getGroups();
for (Group group : groups) {
System.out.println(group.toModifyJson());
}
Assert.assertEquals(1, groups.size());
System.err.println(groups);
Assert.assertTrue(groups.size() > 0);
}
@Test

View File

@ -50,6 +50,7 @@ public class WeixinTokenCreator extends AbstractTokenCreator {
WeixinResponse response = weixinExecutor.get(tokenUrl);
Token token = response.getAsObject(new TypeReference<Token>() {
});
token.setCreateTime(System.currentTimeMillis());
token.setOriginalResult(response.getAsString());
return token;
}