|
@@ -4,7 +4,7 @@ import java.util.List;
|
|
|
|
|
|
public class BucketDataParam {
|
|
|
|
|
|
- private Long accountId;
|
|
|
+ private String accountId;
|
|
|
|
|
|
private String accountName;
|
|
|
|
|
@@ -16,11 +16,11 @@ public class BucketDataParam {
|
|
|
|
|
|
private List<ArticleInfo> articleList;
|
|
|
|
|
|
- public Long getAccountId() {
|
|
|
+ public String getAccountId() {
|
|
|
return accountId;
|
|
|
}
|
|
|
|
|
|
- public void setAccountId(Long accountId) {
|
|
|
+ public void setAccountId(String accountId) {
|
|
|
this.accountId = accountId;
|
|
|
}
|
|
|
|