com.alipay.api.domain.AlipaySecurityProdFileConvertCreateModel 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, 2024-10-28 13:50:21
*/
public class AlipaySecurityProdFileConvertCreateModel extends AlipayObject {
private static final long serialVersionUID = 3642678299992445885L;
/**
* 操作人工号
*/
@ApiField("emp_id")
private String empId;
/**
* 转换文件路径
*/
@ApiField("file_path")
private String filePath;
/**
* 来源系统
*/
@ApiField("source_system_id")
private String sourceSystemId;
/**
* 转换文件目标类型
*/
@ApiField("target_type")
private String targetType;
/**
* 租户
*/
@ApiField("tenant")
private String tenant;
public String getEmpId() {
return this.empId;
}
public void setEmpId(String empId) {
this.empId = empId;
}
public String getFilePath() {
return this.filePath;
}
public void setFilePath(String filePath) {
this.filePath = filePath;
}
public String getSourceSystemId() {
return this.sourceSystemId;
}
public void setSourceSystemId(String sourceSystemId) {
this.sourceSystemId = sourceSystemId;
}
public String getTargetType() {
return this.targetType;
}
public void setTargetType(String targetType) {
this.targetType = targetType;
}
public String getTenant() {
return this.tenant;
}
public void setTenant(String tenant) {
this.tenant = tenant;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy