Skip to content

Commit 4baa9b5

Browse files
Copilotbinarywang
andcommitted
Fix @Builder.Default warnings in complaint service bean classes
Co-authored-by: binarywang <[email protected]>
1 parent eab5466 commit 4baa9b5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/bean/complaint/WxMaComplaintRequest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public class WxMaComplaintRequest implements Serializable {
5050
* </pre>
5151
*/
5252
@SerializedName("limit")
53+
@Builder.Default
5354
private Integer limit = 10;
5455

5556
/**
@@ -60,6 +61,7 @@ public class WxMaComplaintRequest implements Serializable {
6061
* </pre>
6162
*/
6263
@SerializedName("offset")
64+
@Builder.Default
6365
private Integer offset = 0;
6466

6567
public String toJson() {

weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/bean/complaint/WxMaNegotiationHistoryRequest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public class WxMaNegotiationHistoryRequest implements Serializable {
4040
* </pre>
4141
*/
4242
@SerializedName("limit")
43+
@Builder.Default
4344
private Integer limit = 10;
4445

4546
/**
@@ -50,6 +51,7 @@ public class WxMaNegotiationHistoryRequest implements Serializable {
5051
* </pre>
5152
*/
5253
@SerializedName("offset")
54+
@Builder.Default
5355
private Integer offset = 0;
5456

5557
public String toJson() {

0 commit comments

Comments
 (0)