Fix @Builder.Default warnings in complaint service bean classes
Co-authored-by: binarywang <1343140+binarywang@users.noreply.github.com>
This commit is contained in:
@@ -50,6 +50,7 @@ public class WxMaComplaintRequest implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName("limit")
|
@SerializedName("limit")
|
||||||
|
@Builder.Default
|
||||||
private Integer limit = 10;
|
private Integer limit = 10;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -60,6 +61,7 @@ public class WxMaComplaintRequest implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName("offset")
|
@SerializedName("offset")
|
||||||
|
@Builder.Default
|
||||||
private Integer offset = 0;
|
private Integer offset = 0;
|
||||||
|
|
||||||
public String toJson() {
|
public String toJson() {
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ public class WxMaNegotiationHistoryRequest implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName("limit")
|
@SerializedName("limit")
|
||||||
|
@Builder.Default
|
||||||
private Integer limit = 10;
|
private Integer limit = 10;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -50,6 +51,7 @@ public class WxMaNegotiationHistoryRequest implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName("offset")
|
@SerializedName("offset")
|
||||||
|
@Builder.Default
|
||||||
private Integer offset = 0;
|
private Integer offset = 0;
|
||||||
|
|
||||||
public String toJson() {
|
public String toJson() {
|
||||||
|
|||||||
Reference in New Issue
Block a user