
com.alipay.api.domain.AlipayCommerceYuntaskShopstatisticsQueryModel Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 店长查询门店维度任务统计数据
*
* @author auto create
* @since 1.0, 2022-11-07 14:48:16
*/
public class AlipayCommerceYuntaskShopstatisticsQueryModel extends AlipayObject {
private static final long serialVersionUID = 4796969774511156986L;
/**
* 导购员id
*/
@ApiField("hunter_id")
private String hunterId;
/**
* 导购员id
*/
@ApiField("hunter_open_id")
private String hunterOpenId;
/**
* 商家pid
*/
@ApiField("merchant_pid")
private String merchantPid;
/**
* 分页,默认1
*/
@ApiField("page")
private Long page;
/**
* 页面大小,默认10
*/
@ApiField("page_size")
private Long pageSize;
/**
* 店铺id
*/
@ApiField("shop_id")
private String shopId;
/**
* 查询任务类型
PROCESSING 进行中的任务
FINISHED 已经结束的任务
*/
@ApiField("type")
private String type;
public String getHunterId() {
return this.hunterId;
}
public void setHunterId(String hunterId) {
this.hunterId = hunterId;
}
public String getHunterOpenId() {
return this.hunterOpenId;
}
public void setHunterOpenId(String hunterOpenId) {
this.hunterOpenId = hunterOpenId;
}
public String getMerchantPid() {
return this.merchantPid;
}
public void setMerchantPid(String merchantPid) {
this.merchantPid = merchantPid;
}
public Long getPage() {
return this.page;
}
public void setPage(Long page) {
this.page = page;
}
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;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy