Skip to content

Commit

Permalink
🎨 #2375 【小程序】urlscheme生成接口调整请求参数结构
Browse files Browse the repository at this point in the history
  • Loading branch information
zhentang3 committed Nov 8, 2021
1 parent def6856 commit 23a115f
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@ public class WxMaGenerateSchemeRequest {
@SerializedName("expire_time")
private Long expireTime;

/**
* 要打开的小程序版本。正式版为"release",体验版为"trial",开发版为"develop"默认值:release
*/
@SerializedName("env_version")
private String envVersion = "release";

@Data
@Builder(builderMethodName = "newBuilder")
public static class JumpWxa {
Expand All @@ -66,6 +60,12 @@ public static class JumpWxa {
*/
@SerializedName("query")
private String query;

/**
* 要打开的小程序版本。正式版为"release",体验版为"trial",开发版为"develop"默认值:release
*/
@SerializedName("env_version")
private String envVersion = "release";
}

public String toJson() {
Expand Down

0 comments on commit 23a115f

Please sign in to comment.