🎨 重构微信第三方小程序相关返回结果 (#1190)

* feat: 增加获取开卡链接接口

* feat: modify openmaopentab
This commit is contained in:
S 2019-09-04 09:27:30 +08:00 committed by Binary Wang
parent a72cdde584
commit 4c88e8616a

View File

@ -19,11 +19,16 @@ public class WxMaOpenTab implements Serializable {
private String iconPath; private String iconPath;
private String selectedIconPath; private String selectedIconPath;
public WxMaOpenTab(@NonNull String pagePath, @NonNull String text) {
public WxMaOpenTab(String pagePath, String text) {
this.pagePath = pagePath; this.pagePath = pagePath;
this.text = text; 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;
}
} }