houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4 /**
5  * @author 251823
6  * @description RTSC跑动暂停事件, 对应事件类型 NET_ALARM_RTSC_PHASE_RUNING
7  * @date 2021/08/24
8  */
9 public class RUN_PHASE_INFO extends NetSDKLib.SdkStructure{
10      /**
11      *  相位编号,A为1
12      */
13     public int nPhaseNum;
14
15     /**
16      *  nt, 相位重复出现的次数,默认为1, A1为1,A2该字段为2
17      */
18     public int nPhaseOrder;
19
20     /**
21      *  当前相位对应的车行灯通道,按位表示,低bit表示通道1
22      */
23     public  int nCarLamp;
24
25     /**
26      *  当前相位对应的行人灯通道,按位表示,低bit表示通道1
27      */
28     public  int nPsgLamp;
29
30     /**
31      *  相机状态,参考枚举{ @link EM_CAMERA_STATUS }
32      */
33     public int emCameraStatus;
34
35     /**
36      *  相位对应灯色倒计时
37      */
38     public int nCntDown;
39
40     /**
41      *  预留字节
42      */
43     public byte[] byReserved = new byte[512];
44
45 }