Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 防火衣相关属性状态信息
8  * @date 2022/11/01 19:47:04
9  */
10 public class NET_FIREPROOF_CLOTHES extends NetSDKLib.SdkStructure {
11     /**
12      * 是否穿着防火衣 {@link com.netsdk.lib.enumeration.EM_FIREPROOF_CLOTHES_STATE}
13      */
14     public int emHasFireProofClothes;
15     /**
16      * 防火衣颜色 {@link com.netsdk.lib.enumeration.EM_CLOTHES_COLOR}
17      */
18     public int emFireProofClothesColor;
19     /**
20      * 预留字节
21      */
22     public byte[] szReserved = new byte[128];
23
24     public NET_FIREPROOF_CLOTHES() {
25     }
26 }