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

com.dahuatech.icc.multiinone.accesscontrol.domain.CardPrivilege Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.icc.multiinone.accesscontrol.domain;

import java.io.Serializable;

public class CardPrivilege implements Serializable {

    /**授权类型:1 - 门禁点授权,2 - 门组授权,3 - 梯控授权*/
    private String privilegeType;
    /**授权类型:门禁点授权使用通道编码,门组授权使用门组id	*/
    private String resouceCode;

    public String getPrivilegeType() {
        return privilegeType;
    }

    public void setPrivilegeType(String privilegeType) {
        this.privilegeType = privilegeType;
    }

    public String getResouceCode() {
        return resouceCode;
    }

    public void setResouceCode(String resouceCode) {
        this.resouceCode = resouceCode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy