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
31
32
33
34
35
36
37
38
39
40
package com.netsdk.lib.structure;
 
import com.netsdk.lib.NetSDKLib;
 
/**
 * @author 251823
 * @description 时间
 * @date 2022/12/19 09:10:21
 */
public class CFG_NET_TIME extends NetSDKLib.SdkStructure {
 
    public int nStructSize;
    /**
     * 年
     */
    public int dwYear;
    /**
     * 月
     */
    public int dwMonth;
    /**
     * 日
     */
    public int dwDay;
    /**
     * 时
     */
    public int dwHour;
    /**
     * 分
     */
    public int dwMinute;
    /**
     * 秒
     */
    public int dwSecond;
 
    public CFG_NET_TIME() {
    }
}