111
k94314517
2025-02-28 04dba6a17f836b5fbdf0eedff8a129c6785fd8a2
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
package org.yzh.protocol.commons.transform.parameter;
 
import io.github.yezhihao.protostar.annotation.Field;
 
/**
 * 盲区监测系统参数
 * @author yezhihao
 * https://gitee.com/yezhihao/jt808-server
 */
public class ParamBSD {
 
    public static final Integer key = 0xF367;
 
    @Field(length = 1, desc = "后方接近报警时间阈值")
    private byte rearApproachAlarmTimeThreshold = -1;
    @Field(length = 1, desc = "侧后方接近报警时间阈值")
    private byte rearSideApproachAlarmTimeThreshold = -1;
 
    public byte getRearApproachAlarmTimeThreshold() {
        return rearApproachAlarmTimeThreshold;
    }
 
    public void setRearApproachAlarmTimeThreshold(byte rearApproachAlarmTimeThreshold) {
        this.rearApproachAlarmTimeThreshold = rearApproachAlarmTimeThreshold;
    }
 
    public byte getRearSideApproachAlarmTimeThreshold() {
        return rearSideApproachAlarmTimeThreshold;
    }
 
    public void setRearSideApproachAlarmTimeThreshold(byte rearSideApproachAlarmTimeThreshold) {
        this.rearSideApproachAlarmTimeThreshold = rearSideApproachAlarmTimeThreshold;
    }
 
    @Override
    public String toString() {
        return "ParamBSD{" +
                "rearApproachAlarmTimeThreshold=" + rearApproachAlarmTimeThreshold +
                ", rearSideApproachAlarmTimeThreshold=" + rearSideApproachAlarmTimeThreshold +
                '}';
    }
}