puzhibing
2 天以前 ea7595c4c75926f85388574b261b8ba90cf60e0d
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
package com.ruoyi.system.query;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data; /**
 * @author zhibing.pu
 * @Date 2025/3/24 17:18
 */
@Data
@ApiModel
public class PlaybackMsgControlReq {
    @ApiModelProperty(value = "车辆id")
    private Integer id;
    @ApiModelProperty(value = "控制类型 0x00: 正常回放\n" +
            "\t * 0x01: 暂停回放\n" +
            "\t * 0x02: 结束回放\n" +
            "\t * 0x03: 快进回放\n" +
            "\t * 0x04: 关键帧快退回放\n" +
            "\t * 0x05: 拖动回放\n" +
            "\t * 0x06: 关键帧播放")
    private Integer controlType;
    @ApiModelProperty(value = "快进快退倍数 0x00: 无效\n" +
            "\t * 0x01: 1倍\n" +
            "\t * 0x02: 2倍\n" +
            "\t * 0x03: 4倍\n" +
            "\t * 0x04: 8倍\n" +
            "\t * 0x05: 16倍")
    private Integer fastTime;
}