🐛 修复错误的参数类型定义

This commit is contained in:
张庆震 2023-11-22 22:01:13 +08:00 committed by GitHub
parent f9306e12a2
commit c73fac0754
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,43 +39,43 @@ public class WxCpUserExternalUserBehaviorStatistic extends WxCpBaseResp {
* 聊天总数 成员有主动发送过消息的聊天数包括单聊和群聊
*/
@SerializedName("chat_cnt")
private int chatCnt;
private Integer chatCnt;
/**
* 发送消息数成员在单聊和群聊中发送的消息总数
*/
@SerializedName("message_cnt")
private int messageCnt;
private Integer messageCnt;
/**
* 已回复聊天占比客户主动发起聊天后成员在一个自然日内有回复过消息的聊天数/客户主动发起的聊天数比例不包括群聊仅在确有回复时返回
*/
@SerializedName("reply_percentage")
private double replyPercentage;
private Double replyPercentage;
/**
* 平均首次回复时长单位为分钟即客户主动发起聊天后成员在一个自然日内首次回复的时长间隔为首次回复时长所有聊天的首次回复总时长/已回复的聊天总数即为平均首次回复时长不包括群聊仅在确有回复时返回
*/
@SerializedName("avg_reply_time")
private int avgReplyTime;
private Integer avgReplyTime;
/**
* 删除/拉黑成员的客户数即将成员删除或加入黑名单的客户数
*/
@SerializedName("negative_feedback_cnt")
private int negativeFeedbackCnt;
private Integer negativeFeedbackCnt;
/**
* 发起申请数成员通过搜索手机号扫一扫从微信好友中添加从群聊中添加添加共享分配给我的客户添加单向双向删除好友关系的好友从新的联系人推荐中添加等渠道主动向客户发起的好友申请数量
*/
@SerializedName("new_apply_cnt")
private int newApplyCnt;
private Integer newApplyCnt;
/**
* 新增客户数成员新添加的客户数量
*/
@SerializedName("new_contact_cnt")
private int newContactCnt;
private Integer newContactCnt;
}
/**