Skip to content

Commit d96efae

Browse files
committed
🎨 修复AppId 和 appid 同时存在导致lombok生成代码异常的问题
1 parent 9db5841 commit d96efae

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,4 +317,28 @@ public String toJson() {
317317
return WxMaGsonBuilder.create().toJson(this);
318318
}
319319

320+
public String getAppid() {
321+
return appid;
322+
}
323+
324+
public void setAppid(String appid) {
325+
this.appid = appid;
326+
}
327+
328+
public String getAppID() {
329+
return appID;
330+
}
331+
332+
public void setAppID(String appID) {
333+
this.appID = appID;
334+
}
335+
336+
public String getAppId() {
337+
return appId;
338+
}
339+
340+
public void setAppId(String appId) {
341+
this.appId = appId;
342+
}
343+
320344
}

0 commit comments

Comments
 (0)