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

com.dahuatech.icc.brm.model.v202010.device.BrmDeviceUnit Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.icc.brm.model.v202010.device;

import java.util.List;
import java.util.Map;

/**
 * @author 232676
 * @since 1.0.0 2020/11/14 10:40
 */
public class BrmDeviceUnit {
  /** 单元类型 */
  private int unitType;
  /** 单元序号 */
  private int unitSeq;
  /** 排序码 */
  private int sort;
  /** 单元描述 */
  private String memo;
  /** 能力集 */
  private String capability;
  /** 单元扩展信息 */
  private Map unitExt;

  private List channels;

  public List getChannels() {
    return channels;
  }

  public void setChannels(List channels) {
    this.channels = channels;
  }

  public int getUnitType() {
    return unitType;
  }

  public void setUnitType(int unitType) {
    this.unitType = unitType;
  }

  public int getUnitSeq() {
    return unitSeq;
  }

  public void setUnitSeq(int unitSeq) {
    this.unitSeq = unitSeq;
  }

  public int getSort() {
    return sort;
  }

  public void setSort(int sort) {
    this.sort = sort;
  }

  public String getMemo() {
    return memo;
  }

  public void setMemo(String memo) {
    this.memo = memo;
  }

  public String getCapability() {
    return capability;
  }

  public void setCapability(String capability) {
    this.capability = capability;
  }

  public Map getUnitExt() {
    return unitExt;
  }

  public void setUnitExt(Map unitExt) {
    this.unitExt = unitExt;
  }

  @Override
  public String toString() {
    return "BrmDeviceUnit{"
        + "unitType="
        + unitType
        + ", unitSeq="
        + unitSeq
        + ", sort="
        + sort
        + ", memo='"
        + memo
        + '\''
        + ", capability='"
        + capability
        + '\''
        + ", unitExt="
        + unitExt
        + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy