Pu Zhibing
2025-04-10 0f9ecda1919beb1e8fbbca0f669ac86badf70806
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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:04
 */
@Data
@ApiModel
public class PlaybackVideoReq {
    @ApiModelProperty(value = "车辆id")
    private Integer id;
    @ApiModelProperty(value = "开始时间(秒)")
    private Long startTime;
    @ApiModelProperty(value = "结束时间(秒)")
    private Long endTime;
}