
com.alipay.api.domain.KoubeiContentCommentDataBatchqueryModel 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, 2017-03-03 10:40:31
*/
public class KoubeiContentCommentDataBatchqueryModel extends AlipayObject {
private static final long serialVersionUID = 5112194437482193225L;
/**
* 口碑评价id,如果传入评价id则会忽略其他参数。 (口碑评价id、口碑门店id、口碑手艺人id不能同时为空)
*/
@ApiField("comment_id")
private String commentId;
/**
* 口碑手艺人id,可通过 koubei.craftsman.data.provider.batchquery 批量查询手艺人信息接口查询。(口碑评价id、口碑门店id、口碑手艺人id不能同时为空)
*/
@ApiField("craftsman_id")
private String craftsmanId;
/**
* 前次查询的最后一条评价id,用于做分页查询的游标。查询时,需要指定从哪一条评价开始往后取,如果上一次该值传空,则从第一页从头取。
*/
@ApiField("last_comment_id")
private String lastCommentId;
/**
* 每页的条数,最大20条,不传会报错
*/
@ApiField("page_size")
private Long pageSize;
/**
* 口碑门店id,如果传入口碑门店id则会忽略手艺人id。(口碑评价id、口碑门店id、口碑手艺人id不能同时为空)
*/
@ApiField("shop_id")
private String shopId;
public String getCommentId() {
return this.commentId;
}
public void setCommentId(String commentId) {
this.commentId = commentId;
}
public String getCraftsmanId() {
return this.craftsmanId;
}
public void setCraftsmanId(String craftsmanId) {
this.craftsmanId = craftsmanId;
}
public String getLastCommentId() {
return this.lastCommentId;
}
public void setLastCommentId(String lastCommentId) {
this.lastCommentId = lastCommentId;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy