|
@@ -16,12 +16,12 @@ public class UpyunPathEnvironmentInfo implements JsonSerializable {
|
|
|
/**
|
|
|
* 顶级机构
|
|
|
*/
|
|
|
- private Long rootOrgId;
|
|
|
+ private String rootOrgId;
|
|
|
|
|
|
/**
|
|
|
* 用户ID
|
|
|
*/
|
|
|
- private Long userId;
|
|
|
+ private String userId;
|
|
|
|
|
|
/**
|
|
|
* 时间戳
|
|
@@ -33,19 +33,19 @@ public class UpyunPathEnvironmentInfo implements JsonSerializable {
|
|
|
*/
|
|
|
private String fileSuffix;
|
|
|
|
|
|
- public Long getRootOrgId() {
|
|
|
+ public String getRootOrgId() {
|
|
|
return rootOrgId;
|
|
|
}
|
|
|
|
|
|
- public void setRootOrgId(Long rootOrgId) {
|
|
|
+ public void setRootOrgId(String rootOrgId) {
|
|
|
this.rootOrgId = rootOrgId;
|
|
|
}
|
|
|
|
|
|
- public Long getUserId() {
|
|
|
+ public String getUserId() {
|
|
|
return userId;
|
|
|
}
|
|
|
|
|
|
- public void setUserId(Long userId) {
|
|
|
+ public void setUserId(String userId) {
|
|
|
this.userId = userId;
|
|
|
}
|
|
|
|