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

com.zkcloud.api.dbs.model.EmployeeBindDeviceRequest Maven / Gradle / Ivy

package com.zkcloud.api.dbs.model;


import com.google.gson.annotations.Expose;
import com.zkcloud.api.dbs.common.AbstractModel;
import java.util.List;

public class EmployeeBindDeviceRequest extends AbstractModel {

    @Expose
    private List sns;

    @Expose
    private List employeeNos;

    @Expose
    private String deviceVerifyMode;

    @Expose
    private String devicePermission;

    @Expose
    private String devicePassword;

    @Expose
    private String startDate;

    @Expose
    private String endDate;

    public EmployeeBindDeviceRequest(List sns, List employeeNos) {
        this.sns = sns;
        this.employeeNos = employeeNos;
    }

    public List getSns() {
        return sns;
    }

    public void setSns(List sns) {
        this.sns = sns;
    }

    public List getEmployeeNos() {
        return employeeNos;
    }

    public void setEmployeeNos(List employeeNos) {
        this.employeeNos = employeeNos;
    }

    public String getDeviceVerifyMode() {
        return deviceVerifyMode;
    }

    public void setDeviceVerifyMode(String deviceVerifyMode) {
        this.deviceVerifyMode = deviceVerifyMode;
    }

    public String getDevicePermission() {
        return devicePermission;
    }

    public void setDevicePermission(String devicePermission) {
        this.devicePermission = devicePermission;
    }

    public String getDevicePassword() {
        return devicePassword;
    }

    public void setDevicePassword(String devicePassword) {
        this.devicePassword = devicePassword;
    }

    public String getStartDate() {
        return startDate;
    }

    public void setStartDate(String startDate) {
        this.startDate = startDate;
    }

    public String getEndDate() {
        return endDate;
    }

    public void setEndDate(String endDate) {
        this.endDate = endDate;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy