All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.AlipayCommerceEcEmployeeBatchcreateModel 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-08-11 11:14:20
 */
public class AlipayCommerceEcEmployeeBatchcreateModel extends AlipayObject {

	private static final long serialVersionUID = 7664851988557188963L;

	/**
	 * 批量添加的员工信息列表
	 */
	@ApiListField("employee_list")
	@ApiField("employee_batch_add_d_t_o")
	private List employeeList;

	/**
	 * 企业id
	 */
	@ApiField("enterprise_id")
	private String enterpriseId;

	public List getEmployeeList() {
		return this.employeeList;
	}
	public void setEmployeeList(List employeeList) {
		this.employeeList = employeeList;
	}

	public String getEnterpriseId() {
		return this.enterpriseId;
	}
	public void setEnterpriseId(String enterpriseId) {
		this.enterpriseId = enterpriseId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy