Skip to content

Commit 84f817f

Browse files
committed
BSSOPENAPI SDK Auto Released By xiaocun.zxc,Version:1.2.2
发布日志: 1, This is an example of release-log. 2, Please strictly follow this format to edit in English. 3, Format:Number + , + Space + Description
1 parent e511025 commit 84f817f

File tree

9 files changed

+301
-1
lines changed

9 files changed

+301
-1
lines changed

aliyun-java-sdk-bssopenapi/ChangeLog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019-03-19 Version: 1.2.2
2+
1, This is an example of release-log.
3+
2, Please strictly follow this format to edit in English.
4+
3, Format:Number + , + Space + Description
5+
16
2019-03-04 Version: 1.2.1
27
1, This is an example of release-log.
38
2, Please strictly follow this format to edit in English.

aliyun-java-sdk-bssopenapi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-bssopenapi</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.2.1</version>
6+
<version>1.2.2</version>
77
<name>aliyun-java-sdk-bssopenapi</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-bssopenapi/src/main/java/com/aliyuncs/bssopenapi/model/v20171214/ApplyInvoiceRequest.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,16 @@ public ApplyInvoiceRequest() {
3939

4040
private Integer processWay;
4141

42+
private Long callerBid;
43+
4244
private Long ownerId;
4345

4446
private Long invoiceAmount;
4547

4648
private Long addressId;
4749

50+
private Long callerUid;
51+
4852
public Integer getInvoicingType() {
4953
return this.invoicingType;
5054
}
@@ -113,6 +117,17 @@ public void setProcessWay(Integer processWay) {
113117
}
114118
}
115119

120+
public Long getCallerBid() {
121+
return this.callerBid;
122+
}
123+
124+
public void setCallerBid(Long callerBid) {
125+
this.callerBid = callerBid;
126+
if(callerBid != null){
127+
putQueryParameter("callerBid", callerBid.toString());
128+
}
129+
}
130+
116131
public Long getOwnerId() {
117132
return this.ownerId;
118133
}
@@ -144,6 +159,17 @@ public void setAddressId(Long addressId) {
144159
if(addressId != null){
145160
putQueryParameter("AddressId", addressId.toString());
146161
}
162+
}
163+
164+
public Long getCallerUid() {
165+
return this.callerUid;
166+
}
167+
168+
public void setCallerUid(Long callerUid) {
169+
this.callerUid = callerUid;
170+
if(callerUid != null){
171+
putQueryParameter("callerUid", callerUid.toString());
172+
}
147173
}
148174

149175
@Override
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.bssopenapi.model.v20171214;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class CancelOrderRequest extends RpcAcsRequest<CancelOrderResponse> {
24+
25+
public CancelOrderRequest() {
26+
super("BssOpenApi", "2017-12-14", "CancelOrder");
27+
}
28+
29+
private String orderId;
30+
31+
private Long ownerId;
32+
33+
public String getOrderId() {
34+
return this.orderId;
35+
}
36+
37+
public void setOrderId(String orderId) {
38+
this.orderId = orderId;
39+
if(orderId != null){
40+
putQueryParameter("OrderId", orderId);
41+
}
42+
}
43+
44+
public Long getOwnerId() {
45+
return this.ownerId;
46+
}
47+
48+
public void setOwnerId(Long ownerId) {
49+
this.ownerId = ownerId;
50+
if(ownerId != null){
51+
putQueryParameter("OwnerId", ownerId.toString());
52+
}
53+
}
54+
55+
@Override
56+
public Class<CancelOrderResponse> getResponseClass() {
57+
return CancelOrderResponse.class;
58+
}
59+
60+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.bssopenapi.model.v20171214;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.bssopenapi.transform.v20171214.CancelOrderResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CancelOrderResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private Boolean success;
30+
31+
private String code;
32+
33+
private String message;
34+
35+
private Data data;
36+
37+
public String getRequestId() {
38+
return this.requestId;
39+
}
40+
41+
public void setRequestId(String requestId) {
42+
this.requestId = requestId;
43+
}
44+
45+
public Boolean getSuccess() {
46+
return this.success;
47+
}
48+
49+
public void setSuccess(Boolean success) {
50+
this.success = success;
51+
}
52+
53+
public String getCode() {
54+
return this.code;
55+
}
56+
57+
public void setCode(String code) {
58+
this.code = code;
59+
}
60+
61+
public String getMessage() {
62+
return this.message;
63+
}
64+
65+
public void setMessage(String message) {
66+
this.message = message;
67+
}
68+
69+
public Data getData() {
70+
return this.data;
71+
}
72+
73+
public void setData(Data data) {
74+
this.data = data;
75+
}
76+
77+
public static class Data {
78+
79+
private String hostId;
80+
81+
public String getHostId() {
82+
return this.hostId;
83+
}
84+
85+
public void setHostId(String hostId) {
86+
this.hostId = hostId;
87+
}
88+
}
89+
90+
@Override
91+
public CancelOrderResponse getInstance(UnmarshallerContext context) {
92+
return CancelOrderResponseUnmarshaller.unmarshall(this, context);
93+
}
94+
}

aliyun-java-sdk-bssopenapi/src/main/java/com/aliyuncs/bssopenapi/model/v20171214/QueryCustomerAddressListRequest.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,23 @@ public QueryCustomerAddressListRequest() {
2626
super("BssOpenApi", "2017-12-14", "QueryCustomerAddressList");
2727
}
2828

29+
private Long callerBid;
30+
2931
private Long ownerId;
3032

33+
private Long callerUid;
34+
35+
public Long getCallerBid() {
36+
return this.callerBid;
37+
}
38+
39+
public void setCallerBid(Long callerBid) {
40+
this.callerBid = callerBid;
41+
if(callerBid != null){
42+
putQueryParameter("callerBid", callerBid.toString());
43+
}
44+
}
45+
3146
public Long getOwnerId() {
3247
return this.ownerId;
3348
}
@@ -37,6 +52,17 @@ public void setOwnerId(Long ownerId) {
3752
if(ownerId != null){
3853
putQueryParameter("OwnerId", ownerId.toString());
3954
}
55+
}
56+
57+
public Long getCallerUid() {
58+
return this.callerUid;
59+
}
60+
61+
public void setCallerUid(Long callerUid) {
62+
this.callerUid = callerUid;
63+
if(callerUid != null){
64+
putQueryParameter("callerUid", callerUid.toString());
65+
}
4066
}
4167

4268
@Override

aliyun-java-sdk-bssopenapi/src/main/java/com/aliyuncs/bssopenapi/model/v20171214/QueryEvaluateListRequest.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ public QueryEvaluateListRequest() {
3535

3636
private List<String> bizTypeLists;
3737

38+
private Long callerBid;
39+
3840
private Integer type;
3941

4042
private Long ownerId;
@@ -55,6 +57,8 @@ public QueryEvaluateListRequest() {
5557

5658
private String startBizTime;
5759

60+
private Long callerUid;
61+
5862
public String getEndSearchTime() {
5963
return this.endSearchTime;
6064
}
@@ -101,6 +105,17 @@ public void setBizTypeLists(List<String> bizTypeLists) {
101105
}
102106
}
103107

108+
public Long getCallerBid() {
109+
return this.callerBid;
110+
}
111+
112+
public void setCallerBid(Long callerBid) {
113+
this.callerBid = callerBid;
114+
if(callerBid != null){
115+
putQueryParameter("callerBid", callerBid.toString());
116+
}
117+
}
118+
104119
public Integer getType() {
105120
return this.type;
106121
}
@@ -209,6 +224,17 @@ public void setStartBizTime(String startBizTime) {
209224
if(startBizTime != null){
210225
putQueryParameter("StartBizTime", startBizTime);
211226
}
227+
}
228+
229+
public Long getCallerUid() {
230+
return this.callerUid;
231+
}
232+
233+
public void setCallerUid(Long callerUid) {
234+
this.callerUid = callerUid;
235+
if(callerUid != null){
236+
putQueryParameter("callerUid", callerUid.toString());
237+
}
212238
}
213239

214240
@Override

aliyun-java-sdk-bssopenapi/src/main/java/com/aliyuncs/bssopenapi/model/v20171214/QueryInvoicingCustomerListRequest.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,23 @@ public QueryInvoicingCustomerListRequest() {
2626
super("BssOpenApi", "2017-12-14", "QueryInvoicingCustomerList");
2727
}
2828

29+
private Long callerBid;
30+
2931
private Long ownerId;
3032

33+
private Long callerUid;
34+
35+
public Long getCallerBid() {
36+
return this.callerBid;
37+
}
38+
39+
public void setCallerBid(Long callerBid) {
40+
this.callerBid = callerBid;
41+
if(callerBid != null){
42+
putQueryParameter("callerBid", callerBid.toString());
43+
}
44+
}
45+
3146
public Long getOwnerId() {
3247
return this.ownerId;
3348
}
@@ -37,6 +52,17 @@ public void setOwnerId(Long ownerId) {
3752
if(ownerId != null){
3853
putQueryParameter("OwnerId", ownerId.toString());
3954
}
55+
}
56+
57+
public Long getCallerUid() {
58+
return this.callerUid;
59+
}
60+
61+
public void setCallerUid(Long callerUid) {
62+
this.callerUid = callerUid;
63+
if(callerUid != null){
64+
putQueryParameter("callerUid", callerUid.toString());
65+
}
4066
}
4167

4268
@Override

0 commit comments

Comments
 (0)