com.alipay.api.domain.FinanceFileInfo 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, 2022-10-09 15:39:03
*/
public class FinanceFileInfo extends AlipayObject {
private static final long serialVersionUID = 6795473862727668665L;
/**
* 文件内容hash
*/
@ApiField("file_hash")
private String fileHash;
/**
* 上传文件生成的唯一id
*/
@ApiField("file_id")
private String fileId;
/**
* 用于路由文件路径的key
*/
@ApiField("file_key")
private String fileKey;
public String getFileHash() {
return this.fileHash;
}
public void setFileHash(String fileHash) {
this.fileHash = fileHash;
}
public String getFileId() {
return this.fileId;
}
public void setFileId(String fileId) {
this.fileId = fileId;
}
public String getFileKey() {
return this.fileKey;
}
public void setFileKey(String fileKey) {
this.fileKey = fileKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy