com.alipay.api.domain.AnttechBlockchainFinanceFsupvTaskQueryModel 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, 2023-12-25 16:00:30
*/
public class AnttechBlockchainFinanceFsupvTaskQueryModel extends AlipayObject {
private static final long serialVersionUID = 1821598464742276495L;
/**
* 资金管控任务产品码,可联系产品或运营同学获取
*/
@ApiField("fund_supv_product_code")
private String fundSupvProductCode;
/**
* 被管控方证件号码,按实际场景获取
*/
@ApiField("supervised_id_number")
private String supervisedIdNumber;
/**
* 管控方证件号码
*/
@ApiField("supervisor_id_number")
private String supervisorIdNumber;
public String getFundSupvProductCode() {
return this.fundSupvProductCode;
}
public void setFundSupvProductCode(String fundSupvProductCode) {
this.fundSupvProductCode = fundSupvProductCode;
}
public String getSupervisedIdNumber() {
return this.supervisedIdNumber;
}
public void setSupervisedIdNumber(String supervisedIdNumber) {
this.supervisedIdNumber = supervisedIdNumber;
}
public String getSupervisorIdNumber() {
return this.supervisorIdNumber;
}
public void setSupervisorIdNumber(String supervisorIdNumber) {
this.supervisorIdNumber = supervisorIdNumber;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy