1
0
mirror of synced 2025-12-11 00:38:04 +08:00

Fix @Builder.Default warnings in complaint service bean classes

Co-authored-by: binarywang <1343140+binarywang@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-31 15:10:41 +00:00
parent eab5466b3d
commit 4baa9b5371
2 changed files with 4 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ public class WxMaComplaintRequest implements Serializable {
* </pre>
*/
@SerializedName("limit")
@Builder.Default
private Integer limit = 10;
/**
@@ -60,6 +61,7 @@ public class WxMaComplaintRequest implements Serializable {
* </pre>
*/
@SerializedName("offset")
@Builder.Default
private Integer offset = 0;
public String toJson() {

View File

@@ -40,6 +40,7 @@ public class WxMaNegotiationHistoryRequest implements Serializable {
* </pre>
*/
@SerializedName("limit")
@Builder.Default
private Integer limit = 10;
/**
@@ -50,6 +51,7 @@ public class WxMaNegotiationHistoryRequest implements Serializable {
* </pre>
*/
@SerializedName("offset")
@Builder.Default
private Integer offset = 0;
public String toJson() {