🐛 #1259 优化开放平台第三方业务域名设置相关接口返回结果

This commit is contained in:
S
2019-10-30 20:27:46 +08:00
committed by Binary Wang
parent f394a62fad
commit 70e6016d4a
3 changed files with 23 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
package me.chanjar.weixin.open.bean.result;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.List;
@Data
@EqualsAndHashCode(callSuper = true)
public class WxOpenMaWebDomainResult extends WxOpenResult {
private static final long serialVersionUID = -2182687859448940313L;
@SerializedName("webviewdomain")
List<String> webviewdomainList;
}