com.alipay.api.domain.DatadigitalFincloudFinsaasPutplanQueryModel 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;
/**
* 运营 SaaS 投放计划详情查询
*
* @author auto create
* @since 1.0, 2022-09-05 10:49:52
*/
public class DatadigitalFincloudFinsaasPutplanQueryModel extends AlipayObject {
private static final long serialVersionUID = 7121381777819335848L;
/**
* 投放计划主键 id
*/
@ApiField("id")
private Long id;
/**
* 租户 code
*/
@ApiField("tenant_code")
private String tenantCode;
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getTenantCode() {
return this.tenantCode;
}
public void setTenantCode(String tenantCode) {
this.tenantCode = tenantCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy