#1199 开放平台模块增加部分第三方平台代小程序实现业务的接口(包括查询服务商的当月提审限额和加急次数,加急审核申请)

* 🎨 统一异常输出

*  增加代小程序实现业务接口
This commit is contained in:
S
2019-09-12 09:31:26 +08:00
committed by Binary Wang
parent fdaefcb9ea
commit 6958142c47
5 changed files with 262 additions and 4 deletions

View File

@@ -0,0 +1,36 @@
package me.chanjar.weixin.open.bean.result;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import me.chanjar.weixin.open.util.json.WxOpenGsonBuilder;
/**
* 微信开放平台小程序当前分阶段发布详情
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WxOpenMaQueryQuotaResult extends WxOpenResult {
private static final long serialVersionUID = 5915265985261653007L;
@SerializedName("rest")
private Integer rest;
@SerializedName("limit")
private Integer limit;
@SerializedName("speedup_rest")
private Integer speedupRest;
@SerializedName("speedup_limit")
private Integer speedupLimit;
@Override
public String toString() {
return WxOpenGsonBuilder.create().toJson(this);
}
}