Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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
41
42
43
44
45
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
/**
 * @author 251823
 * @description RTSC跑动暂停事件, 对应事件类型 NET_ALARM_RTSC_PHASE_RUNING
 * @date 2021/08/24
 */
public class RUN_PHASE_INFO extends NetSDKLib.SdkStructure{
     /**
     *  相位编号,A为1
     */
    public int nPhaseNum;
 
    /**
     *  nt, 相位重复出现的次数,默认为1, A1为1,A2该字段为2
     */
    public int nPhaseOrder;
 
    /**
     *  当前相位对应的车行灯通道,按位表示,低bit表示通道1
     */
    public  int nCarLamp;
 
    /**
     *  当前相位对应的行人灯通道,按位表示,低bit表示通道1
     */
    public  int nPsgLamp;
 
    /**
     *  相机状态,参考枚举{ @link EM_CAMERA_STATUS }
     */
    public int emCameraStatus;
 
    /**
     *  相位对应灯色倒计时
     */
    public int nCntDown;
 
    /**
     *  预留字节
     */
    public byte[] byReserved = new byte[512];
 
}