com.alipay.api.domain.AlipayCommerceYuntaskHunterQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 查询导购员任务列表
*
* @author auto create
* @since 1.0, 2024-10-30 16:24:20
*/
public class AlipayCommerceYuntaskHunterQueryModel extends AlipayObject {
private static final long serialVersionUID = 2426125576993755738L;
/**
* 导购员id
*/
@ApiField("hunter_id")
private String hunterId;
/**
* 导购员id
*/
@ApiField("hunter_open_id")
private String hunterOpenId;
/**
* 导购员的手机号
*/
@ApiField("hunter_phone")
private String hunterPhone;
/**
* 商家id
*/
@ApiField("merchant_pid")
private String merchantPid;
/**
* 页码
*/
@ApiField("page")
private Long page;
/**
* 页面大小,单位个
*/
@ApiField("page_size")
private Long pageSize;
/**
* 店铺id
*/
@ApiField("shop_id")
private String shopId;
/**
* SHOP_INSPECTION 巡店任务
OTHER 其他任务
*/
@ApiField("task_type")
private String taskType;
/**
* 任务类型
RECEIVED: 已领取任务
RECOMMENDED: 推荐任务
FINISHED:领取的已结束任务
EXCHANGEABLE:可兑换的任务
*/
@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 getHunterPhone() {
return this.hunterPhone;
}
public void setHunterPhone(String hunterPhone) {
this.hunterPhone = hunterPhone;
}
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 getTaskType() {
return this.taskType;
}
public void setTaskType(String taskType) {
this.taskType = taskType;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy