
com.alipay.api.domain.AlipayInsSceneSellerActivityQueryModel 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, 2017-10-27 18:12:30
*/
public class AlipayInsSceneSellerActivityQueryModel extends AlipayObject {
private static final long serialVersionUID = 7597362923776948229L;
/**
* 渠道账号对应的uid,如果证据类型字段没填则必填
*/
@ApiField("channel_account_id")
private String channelAccountId;
/**
* 渠道账号类型,如果证据类型字段没填则必填1:支付宝账号 2:淘宝账号
*/
@ApiField("channel_account_type")
private Long channelAccountType;
/**
* 签约的标准产品码
*/
@ApiField("sp_code")
private String spCode;
public String getChannelAccountId() {
return this.channelAccountId;
}
public void setChannelAccountId(String channelAccountId) {
this.channelAccountId = channelAccountId;
}
public Long getChannelAccountType() {
return this.channelAccountType;
}
public void setChannelAccountType(Long channelAccountType) {
this.channelAccountType = channelAccountType;
}
public String getSpCode() {
return this.spCode;
}
public void setSpCode(String spCode) {
this.spCode = spCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy