mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
🆕 #1686 微信公众号增加对话能力(原导购助手)部分接口,如修改顾问、删除顾问、获取顾问列表等
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
package me.chanjar.weixin.mp.bean.guide;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import me.chanjar.weixin.common.util.json.WxGsonBuilder;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 顾问列表.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
* @date 2020-10-07
|
||||
*/
|
||||
@Data
|
||||
public class WxMpGuideList implements Serializable {
|
||||
private static final long serialVersionUID = 144044550239346216L;
|
||||
|
||||
/**
|
||||
* 顾问总数量
|
||||
*/
|
||||
@SerializedName("total_num")
|
||||
private Integer totalNum;
|
||||
|
||||
/**
|
||||
* 顾问列表
|
||||
*/
|
||||
private List<WxMpGuideInfo> list;
|
||||
|
||||
public static WxMpGuideList fromJson(String json) {
|
||||
return WxGsonBuilder.create().fromJson(json, WxMpGuideList.class);
|
||||
}
|
||||
}
|
||||
@@ -569,7 +569,7 @@ public class WxMpXmlMessage implements Serializable {
|
||||
* 审核成功时的时间(整形),时间戳
|
||||
*/
|
||||
@XStreamAlias("SuccTime")
|
||||
private Long succTime;
|
||||
private Long successTime;
|
||||
|
||||
/**
|
||||
* 审核失败的原因
|
||||
|
||||
Reference in New Issue
Block a user