#1081 开放平台模块增加获取所有授权方列表的接口

This commit is contained in:
RobinGao
2019-06-21 13:57:13 +08:00
committed by Binary Wang
parent 90b5ca56c2
commit 18e3f75028
5 changed files with 81 additions and 13 deletions

View File

@@ -0,0 +1,15 @@
package me.chanjar.weixin.open.bean.result;
import lombok.Data;
import java.util.List;
import java.util.Map;
/**
* @author robgao
*/
@Data
public class WxOpenAuthorizerListResult {
private int totalCount;
private List<Map<String,String>> list;
}