🆕 【微信开放平台】增加申请开通直播的接口

This commit is contained in:
清心
2022-10-13 07:28:02 +00:00
committed by binarywang
parent bb65189fb8
commit 809ff15709
3 changed files with 39 additions and 0 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;
/**
* @author 清心
* created at 2022-10-04 16:11
*/
@EqualsAndHashCode(callSuper = true)
@Data
public class WxOpenMaApplyLiveInfoResult extends WxOpenResult{
@SerializedName("action")
private String action;
}