
com.alipay.api.domain.AlipayCommerceTaskProcessQueryModel 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-12-16 16:06:51
*/
public class AlipayCommerceTaskProcessQueryModel extends AlipayObject {
private static final long serialVersionUID = 5745551311915771366L;
/**
* 支付宝用户id
*/
@ApiField("alipay_user_id")
private String alipayUserId;
/**
* 业务id, 比如芝麻协议号id
*/
@ApiField("biz_id")
private String bizId;
/**
* 来源渠道
*/
@ApiField("channel")
private String channel;
/**
* 支付宝用户id
*/
@ApiField("open_id")
private String openId;
/**
* 任务类型
*/
@ApiField("type")
private String type;
public String getAlipayUserId() {
return this.alipayUserId;
}
public void setAlipayUserId(String alipayUserId) {
this.alipayUserId = alipayUserId;
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public String getChannel() {
return this.channel;
}
public void setChannel(String channel) {
this.channel = channel;
}
public String getOpenId() {
return this.openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy