Skip to content

Commit 23a115f

Browse files
authored
🎨 #2375 【小程序】urlscheme生成接口调整请求参数结构
1 parent def6856 commit 23a115f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,6 @@ public class WxMaGenerateSchemeRequest {
3939
@SerializedName("expire_time")
4040
private Long expireTime;
4141

42-
/**
43-
* 要打开的小程序版本。正式版为"release",体验版为"trial",开发版为"develop"默认值:release
44-
*/
45-
@SerializedName("env_version")
46-
private String envVersion = "release";
47-
4842
@Data
4943
@Builder(builderMethodName = "newBuilder")
5044
public static class JumpWxa {
@@ -66,6 +60,12 @@ public static class JumpWxa {
6660
*/
6761
@SerializedName("query")
6862
private String query;
63+
64+
/**
65+
* 要打开的小程序版本。正式版为"release",体验版为"trial",开发版为"develop"默认值:release
66+
*/
67+
@SerializedName("env_version")
68+
private String envVersion = "release";
6969
}
7070

7171
public String toJson() {

0 commit comments

Comments
 (0)