mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 17:38:05 +08:00
🎨 add some constructors
This commit is contained in:
parent
4b96475413
commit
83e6dbfcba
@ -9,6 +9,7 @@ import com.google.gson.annotations.SerializedName;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@ -41,6 +42,7 @@ public class WxMaKefuMessage implements Serializable {
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public static class KfText implements Serializable {
|
||||
private static final long serialVersionUID = 151122958720941270L;
|
||||
|
||||
@ -49,6 +51,7 @@ public class WxMaKefuMessage implements Serializable {
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public static class KfImage implements Serializable {
|
||||
private static final long serialVersionUID = -5409342945117300782L;
|
||||
|
||||
@ -58,6 +61,8 @@ public class WxMaKefuMessage implements Serializable {
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public static class KfLink implements Serializable {
|
||||
private static final long serialVersionUID = -6728776817556127413L;
|
||||
|
||||
@ -71,6 +76,8 @@ public class WxMaKefuMessage implements Serializable {
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public static class KfMaPage implements Serializable {
|
||||
private static final long serialVersionUID = -5633492281871634466L;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user