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;
|
}
|