-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#970 第三方平台-小程序帐号上传小程序代码增加缺失的subpackages分包上传参数
#968 第三方授权-授权注册页面扫码授权地址参数补充完整
- Loading branch information
1 parent
507921b
commit b33e170
Showing
3 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
weixin-java-open/src/main/java/me/chanjar/weixin/open/bean/ma/WxMaOpenSubpackage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package me.chanjar.weixin.open.bean.ma; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
/** | ||
* @author: momorans | ||
* @create: 2019-03-12 | ||
**/ | ||
@Data | ||
@Builder | ||
public class WxMaOpenSubpackage { | ||
/** | ||
* 分包根目录 | ||
*/ | ||
private String root; | ||
|
||
/** | ||
* 分包别名,分包预下载时可以使用 | ||
*/ | ||
private String name; | ||
|
||
|
||
/** | ||
* 分包页面路径,相对与分包根目录 | ||
*/ | ||
private String pages; | ||
|
||
/** | ||
* 分包是否是独立分包 | ||
*/ | ||
private Boolean independent; | ||
|
||
|
||
} |