TTLockSystemModel constructor

TTLockSystemModel(
  1. Map map
)

Implementation

TTLockSystemModel(Map map) {
  this.modelNum = map["modelNum"];
  this.hardwareRevision = map["hardwareRevision"];
  this.firmwareRevision = map["firmwareRevision"];
  this.electricQuantity = map["electricQuantity"];

  this.nbOperator = map["nbOperator"];
  this.nbNodeId = map["nbNodeId"];
  this.nbCardNumber = map["nbCardNumber"];
  this.nbRssi = map["nbRssi"];

  this.passcodeKeyNumber = map["passcodeKeyNumber"]?.toString();

  this.lockData = map["lockData"];
}