Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 251823
 * @description 通讯录配置
 * @date 2023/03/15 21:15:01
 */
public class NET_NETAPP_COMMUNICATION_LIST_CFG extends NetSDKLib.SdkStructure {
    /**
     * 结构体大小
     */
    public int dwSize;
    /**
     * 实际的通讯录配置个数
     */
    public int nConmmunicationListNum;
    /**
     * 通讯录配置数组
     */
    public NET_NETAPP_COMMUNICATION_LIST[] stuCommunication = new NET_NETAPP_COMMUNICATION_LIST[10];
 
    public NET_NETAPP_COMMUNICATION_LIST_CFG() {
        for (int i = 0; i < stuCommunication.length; i++) {
            stuCommunication[i] = new NET_NETAPP_COMMUNICATION_LIST();
        }
        this.dwSize = this.size();
    }
}