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 2022/12/19 09:10:21
9  */
10 public class CFG_NET_TIME extends NetSDKLib.SdkStructure {
11
12     public int nStructSize;
13     /**
14      * 年
15      */
16     public int dwYear;
17     /**
18      * 月
19      */
20     public int dwMonth;
21     /**
22      * 日
23      */
24     public int dwDay;
25     /**
26      * 时
27      */
28     public int dwHour;
29     /**
30      * 分
31      */
32     public int dwMinute;
33     /**
34      * 秒
35      */
36     public int dwSecond;
37
38     public CFG_NET_TIME() {
39     }
40 }