@@ -24,7 +24,7 @@ public class GetRecentContactListRequest extends GenericRequest implements Seria
2424 * 普通会话的起始时间,第一页填 0
2525 */
2626 @ JsonProperty ("TimeStamp" )
27- private Integer timestamp ;
27+ private Long timestamp ;
2828
2929 /**
3030 * 普通会话的起始位置,第一页填 0
@@ -36,7 +36,7 @@ public class GetRecentContactListRequest extends GenericRequest implements Seria
3636 * 置顶会话的起始时间,第一页填 0
3737 */
3838 @ JsonProperty ("TopTimeStamp" )
39- private Integer topTimestamp ;
39+ private Long topTimestamp ;
4040
4141 /**
4242 * 置顶会话的起始位置,第一页填 0
@@ -57,8 +57,8 @@ public class GetRecentContactListRequest extends GenericRequest implements Seria
5757 public GetRecentContactListRequest () {
5858 }
5959
60- public GetRecentContactListRequest (String fromAccount , Integer timestamp , Integer startIndex ,
61- Integer topTimestamp , Integer topStartIndex , Integer assistFlags ) {
60+ public GetRecentContactListRequest (String fromAccount , Long timestamp , Integer startIndex ,
61+ Long topTimestamp , Integer topStartIndex , Integer assistFlags ) {
6262 this .fromAccount = fromAccount ;
6363 this .timestamp = timestamp ;
6464 this .startIndex = startIndex ;
@@ -88,11 +88,11 @@ public void setFromAccount(String fromAccount) {
8888 this .fromAccount = fromAccount ;
8989 }
9090
91- public Integer getTimestamp () {
91+ public Long getTimestamp () {
9292 return timestamp ;
9393 }
9494
95- public void setTimestamp (Integer timestamp ) {
95+ public void setTimestamp (Long timestamp ) {
9696 this .timestamp = timestamp ;
9797 }
9898
@@ -104,11 +104,11 @@ public void setStartIndex(Integer startIndex) {
104104 this .startIndex = startIndex ;
105105 }
106106
107- public Integer getTopTimestamp () {
107+ public Long getTopTimestamp () {
108108 return topTimestamp ;
109109 }
110110
111- public void setTopTimestamp (Integer topTimestamp ) {
111+ public void setTopTimestamp (Long topTimestamp ) {
112112 this .topTimestamp = topTimestamp ;
113113 }
114114
@@ -131,9 +131,9 @@ public void setAssistFlags(Integer assistFlags) {
131131
132132 public static final class Builder {
133133 private String fromAccount ;
134- private Integer timestamp ;
134+ private Long timestamp ;
135135 private Integer startIndex ;
136- private Integer topTimestamp ;
136+ private Long topTimestamp ;
137137 private Integer topStartIndex ;
138138 private Integer assistFlags ;
139139
@@ -149,7 +149,7 @@ public Builder fromAccount(String fromAccount) {
149149 return this ;
150150 }
151151
152- public Builder timestamp (Integer timestamp ) {
152+ public Builder timestamp (Long timestamp ) {
153153 this .timestamp = timestamp ;
154154 return this ;
155155 }
@@ -159,7 +159,7 @@ public Builder startIndex(Integer startIndex) {
159159 return this ;
160160 }
161161
162- public Builder topTimestamp (Integer topTimestamp ) {
162+ public Builder topTimestamp (Long topTimestamp ) {
163163 this .topTimestamp = topTimestamp ;
164164 return this ;
165165 }
0 commit comments