houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 47081
7  * @version 1.0
8  * @description 楼层号(梯控需求)
9  * @date 2021/2/8
10  */
11 public class NET_FLOORS_INFO extends NetSDKLib.SdkStructure {
12   /** 有效的楼层数量再次扩展 */
13   public int nFloorNumEx2;
14   /** 楼层号(梯控需求)最多不超过256个,楼层号不超过999 */
15   public NET_FLOORS_EX[] szFloorEx = (NET_FLOORS_EX[]) new NET_FLOORS_EX().toArray(256);
16   /** 保留字节 */
17   public byte[] byReserved = new byte[512];
18
19   public NET_FLOORS_INFO(){
20       for(int i=0;i<szFloorEx.length;i++){
21         szFloorEx[i]=new NET_FLOORS_EX();
22       }
23   }
24 }