com.alipay.api.domain.AlipayUserInviteOnlinesummaryQueryModel 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, 2019-01-21 14:37:37
*/
public class AlipayUserInviteOnlinesummaryQueryModel extends AlipayObject {
private static final long serialVersionUID = 1825415213897128268L;
/**
* 二级渠道
*/
@ApiField("partner_id")
private String partnerId;
/**
* 一级渠道
*/
@ApiField("pid")
private String pid;
/**
* 日期
*/
@ApiField("report_date")
private String reportDate;
public String getPartnerId() {
return this.partnerId;
}
public void setPartnerId(String partnerId) {
this.partnerId = partnerId;
}
public String getPid() {
return this.pid;
}
public void setPid(String pid) {
this.pid = pid;
}
public String getReportDate() {
return this.reportDate;
}
public void setReportDate(String reportDate) {
this.reportDate = reportDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy