mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-06-28 13:16:19 +08:00
🎨 重构微信第三方小程序相关返回结果 (#1190)
* feat: 增加获取开卡链接接口 * feat: modify openmaopentab
This commit is contained in:
parent
a72cdde584
commit
4c88e8616a
@ -19,11 +19,16 @@ public class WxMaOpenTab implements Serializable {
|
||||
private String iconPath;
|
||||
private String selectedIconPath;
|
||||
|
||||
|
||||
public WxMaOpenTab(String pagePath, String text) {
|
||||
public WxMaOpenTab(@NonNull String pagePath, @NonNull String text) {
|
||||
this.pagePath = pagePath;
|
||||
this.text = text;
|
||||
}
|
||||
|
||||
|
||||
public WxMaOpenTab(@NonNull String pagePath, @NonNull String text, String iconPath, String selectedIconPath) {
|
||||
this.pagePath = pagePath;
|
||||
this.text = text;
|
||||
this.iconPath = iconPath;
|
||||
this.selectedIconPath = selectedIconPath;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user