
com.alipay.api.domain.EcEmployeeBatchAddFailInfo Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 批量添加员工接口,添加失败的员工信息
*
* @author auto create
* @since 1.0, 2023-03-20 19:15:50
*/
public class EcEmployeeBatchAddFailInfo extends AlipayObject {
private static final long serialVersionUID = 3557177139643147527L;
/**
* 员工邮箱
*/
@ApiField("employee_email")
private String employeeEmail;
/**
* 员工手机号
*/
@ApiField("employee_mobile")
private String employeeMobile;
/**
* 员工姓名
*/
@ApiField("employee_name")
private String employeeName;
/**
* 员工编号
*/
@ApiField("employee_no")
private String employeeNo;
/**
* 添加失败原因
*/
@ApiField("fail_reason")
private String failReason;
public String getEmployeeEmail() {
return this.employeeEmail;
}
public void setEmployeeEmail(String employeeEmail) {
this.employeeEmail = employeeEmail;
}
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 getFailReason() {
return this.failReason;
}
public void setFailReason(String failReason) {
this.failReason = failReason;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy