潘志宝
2024-11-28 231897591c909b164defebfdb5936387ec2807d0
提交 | 用户 | 时间
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/05/16 11:16:17
9  */
10 public class DHDEV_DEVICE_INFO extends NetSDKLib.SdkStructure {
11     /**
12      * 型号
13      */
14     public byte[] byModle = new byte[32];
15     /**
16      * 序列号
17      */
18     public byte[] bySerialNumber = new byte[32];
19     /**
20      * 固件号
21      */
22     public byte[] byFirmWare = new byte[32];
23     /**
24      * ATA协议版本号
25      */
26     public int nAtaVersion;
27     /**
28      * smart 信息数
29      */
30     public int nSmartNum;
31
32     public long Sectors;
33     /**
34      * 磁盘状态 0-正常 1-异常
35      */
36     public int nStatus;
37     /**
38      * 保留字节
39      */
40     public int[] nReserved = new int[33];
41
42     public DHDEV_DEVICE_INFO() {
43     }
44 }