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

com.dahuatech.icc.multiinone.event.domain.AuthorityVo Maven / Gradle / Ivy

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


import java.util.List;

/**
 * Created by 32514 on 2019-07-08.
 */
public class AuthorityVo{
    private List types;//报警类型列表,null代表全部,空代表没有

    private List nodeCodes;//设备或通道,null代表全部,空代表没有

    private List orgs;//组织编码,null代表全部,空代表没有

    public List getTypes() {
        return types;
    }

    public void setTypes(List types) {
        this.types = types;
    }

    public List getNodeCodes() {
        return nodeCodes;
    }

    public void setNodeCodes(List nodeCodes) {
        this.nodeCodes = nodeCodes;
    }

    public List getOrgs() {
        return orgs;
    }

    public void setOrgs(List orgs) {
        this.orgs = orgs;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy