com.alipay.api.domain.EcEmployeeBatchAddSuccessInfo 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-05-22 13:32:17
*/
public class EcEmployeeBatchAddSuccessInfo extends AlipayObject {
private static final long serialVersionUID = 3528654943758457518L;
/**
* 证件号
*/
@ApiField("employee_cert_no")
private String employeeCertNo;
/**
* 证件类型
*/
@ApiField("employee_cert_type")
private String employeeCertType;
/**
* 员工邮箱
*/
@ApiField("employee_email")
private String employeeEmail;
/**
* 员工id
*/
@ApiField("employee_id")
private String employeeId;
/**
* 员工手机号
*/
@ApiField("employee_mobile")
private String employeeMobile;
/**
* 员工姓名
*/
@ApiField("employee_name")
private String employeeName;
/**
* 员工编号
*/
@ApiField("employee_no")
private String employeeNo;
/**
* 加密证件号(证件号转大写后使用SHA256加密)
*/
@ApiField("encrypt_cert_no")
private String encryptCertNo;
/**
* 加密手机号(使用SHA256进行加密)
*/
@ApiField("encrypt_mobile")
private String encryptMobile;
/**
* IOT开通刷脸支持唯一操作流水号,此处透出用于外部服务商通过该unique_id便捷调用IOT侧接口
*/
@ApiField("iot_unique_id")
private String iotUniqueId;
/**
* 个性化信息 详见文档
*/
@ApiField("profiles")
private String profiles;
public String getEmployeeCertNo() {
return this.employeeCertNo;
}
public void setEmployeeCertNo(String employeeCertNo) {
this.employeeCertNo = employeeCertNo;
}
public String getEmployeeCertType() {
return this.employeeCertType;
}
public void setEmployeeCertType(String employeeCertType) {
this.employeeCertType = employeeCertType;
}
public String getEmployeeEmail() {
return this.employeeEmail;
}
public void setEmployeeEmail(String employeeEmail) {
this.employeeEmail = employeeEmail;
}
public String getEmployeeId() {
return this.employeeId;
}
public void setEmployeeId(String employeeId) {
this.employeeId = employeeId;
}
public String getEmployeeMobile() {
return this.employeeMobile;
}
public void setEmployeeMobile(String employeeMobile) {
this.employeeMobile = employeeMobile;
}
public String getEmployeeName() {
return this.employeeName;
}
public void setEmployeeName(String employeeName) {
this.employeeName = employeeName;
}
public String getEmployeeNo() {
return this.employeeNo;
}
public void setEmployeeNo(String employeeNo) {
this.employeeNo = employeeNo;
}
public String getEncryptCertNo() {
return this.encryptCertNo;
}
public void setEncryptCertNo(String encryptCertNo) {
this.encryptCertNo = encryptCertNo;
}
public String getEncryptMobile() {
return this.encryptMobile;
}
public void setEncryptMobile(String encryptMobile) {
this.encryptMobile = encryptMobile;
}
public String getIotUniqueId() {
return this.iotUniqueId;
}
public void setIotUniqueId(String iotUniqueId) {
this.iotUniqueId = iotUniqueId;
}
public String getProfiles() {
return this.profiles;
}
public void setProfiles(String profiles) {
this.profiles = profiles;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy