Skip to content

Commit

Permalink
Supported 1688 api to createProject,DeleteProject,CreateScene,ListSce…
Browse files Browse the repository at this point in the history
…nes, update CreateProject to add supply user.
  • Loading branch information
sdk-team committed Feb 7, 2020
1 parent a1b56cc commit f5d102c
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-tdsr/ChangeLog.txt
@@ -1,3 +1,6 @@
2020-02-07 Version: 0.0.2
- Supported 1688 api to createProject,DeleteProject,CreateScene,ListScenes, update CreateProject to add supply user.

2020-01-16 Version: 0.0.1
- Supported 1688 api to createProject,DeleteProject,CreateScene,ListScenes.

2 changes: 1 addition & 1 deletion aliyun-java-sdk-tdsr/pom.xml
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-tdsr</artifactId>
<packaging>jar</packaging>
<version>0.0.1</version>
<version>0.0.2</version>
<name>aliyun-java-sdk-tdsr</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Expand Up @@ -24,14 +24,42 @@
public class CreateProjectRequest extends RpcAcsRequest<CreateProjectResponse> {


private String businessUserIdList;

private String builderUserIdList;

private String name;

private String businessId;
private String businessId;

private String gatherUserIdList;
public CreateProjectRequest() {
super("tdsr", "2020-01-01", "CreateProject");
setMethod(MethodType.POST);
}

public String getBusinessUserIdList() {
return this.businessUserIdList;
}

public void setBusinessUserIdList(String businessUserIdList) {
this.businessUserIdList = businessUserIdList;
if(businessUserIdList != null){
putQueryParameter("BusinessUserIdList", businessUserIdList);
}
}

public String getBuilderUserIdList() {
return this.builderUserIdList;
}

public void setBuilderUserIdList(String builderUserIdList) {
this.builderUserIdList = builderUserIdList;
if(builderUserIdList != null){
putQueryParameter("BuilderUserIdList", builderUserIdList);
}
}

public String getName() {
return this.name;
}
Expand All @@ -52,6 +80,17 @@ public void setBusinessId(String businessId) {
if(businessId != null){
putQueryParameter("BusinessId", businessId);
}
}

public String getGatherUserIdList() {
return this.gatherUserIdList;
}

public void setGatherUserIdList(String gatherUserIdList) {
this.gatherUserIdList = gatherUserIdList;
if(gatherUserIdList != null){
putQueryParameter("GatherUserIdList", gatherUserIdList);
}
}

@Override
Expand Down

0 comments on commit f5d102c

Please sign in to comment.