
com.alipay.api.domain.EmployeeBatchAddDTO Maven / Gradle / Ivy
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 批量添加的单个员工信息
*
* @author auto create
* @since 1.0, 2023-03-20 19:15:25
*/
public class EmployeeBatchAddDTO extends AlipayObject {
private static final long serialVersionUID = 4547869893289791132L;
/**
* 员工所属部门
*/
@ApiListField("department_ids")
@ApiField("string")
private List departmentIds;
/**
* 员工邮箱,和手机号二选一
*/
@ApiField("employee_email")
private String employeeEmail;
/**
* 员工手机号,和邮箱二选一
*/
@ApiField("employee_mobile")
private String employeeMobile;
/**
* 员工姓名
*/
@ApiField("employee_name")
private String employeeName;
/**
* 员工编号
*/
@ApiField("employee_no")
private String employeeNo;
/**
* 角色列表,目前只支持填一种角色,默认为USER
*/
@ApiListField("role_list")
@ApiField("string")
private List roleList;
public List getDepartmentIds() {
return this.departmentIds;
}
public void setDepartmentIds(List departmentIds) {
this.departmentIds = departmentIds;
}
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 List getRoleList() {
return this.roleList;
}
public void setRoleList(List roleList) {
this.roleList = roleList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy