doum
4 小时以前 ce44d803b73a65b2cc31db5bcc662139029463d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.doumee.dao.admin.request;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel("手动指定媒体快照")
public class DeliverySnapshotManualRequest {
 
    @ApiModelProperty(value = "媒体ID", required = true)
    private Integer mediaId;
 
    @ApiModelProperty(value = "1门头 2交付", required = true)
    private Integer snapshotType;
 
    @ApiModelProperty(value = "视频内秒数", required = true)
    private BigDecimal timestampSec;
}