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 251823
7  * @description 通讯录配置
8  * @date 2023/03/15 21:15:01
9  */
10 public class NET_NETAPP_COMMUNICATION_LIST_CFG extends NetSDKLib.SdkStructure {
11     /**
12      * 结构体大小
13      */
14     public int dwSize;
15     /**
16      * 实际的通讯录配置个数
17      */
18     public int nConmmunicationListNum;
19     /**
20      * 通讯录配置数组
21      */
22     public NET_NETAPP_COMMUNICATION_LIST[] stuCommunication = new NET_NETAPP_COMMUNICATION_LIST[10];
23
24     public NET_NETAPP_COMMUNICATION_LIST_CFG() {
25         for (int i = 0; i < stuCommunication.length; i++) {
26             stuCommunication[i] = new NET_NETAPP_COMMUNICATION_LIST();
27         }
28         this.dwSize = this.size();
29     }
30 }