
com.alipay.api.domain.MerchantshopCommentStatistic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 洗车保养评论统计信息
*
* @author auto create
* @since 1.0, 2016-11-16 10:02:20
*/
public class MerchantshopCommentStatistic extends AlipayObject {
private static final long serialVersionUID = 7847857776369233252L;
/**
* 评论总数
*/
@ApiField("comment_count")
private Long commentCount;
/**
* 评分(平均分),两位小数
*/
@ApiField("score")
private Long score;
public Long getCommentCount() {
return this.commentCount;
}
public void setCommentCount(Long commentCount) {
this.commentCount = commentCount;
}
public Long getScore() {
return this.score;
}
public void setScore(Long score) {
this.score = score;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy