You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
511 B
Java
22 lines
511 B
Java
package com.supervision.vo.session;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
@ApiModel
|
|
public class NewSessionReqVO {
|
|
@ApiModelProperty("案件编号")
|
|
private String caseNumber;
|
|
@ApiModelProperty("播报方式(1语音 2文字)")
|
|
private Integer type;
|
|
@ApiModelProperty("播放速度(2位,小数后1位,例如:1.0,0.5,1.5,2.0)")
|
|
private BigDecimal speed;
|
|
|
|
|
|
}
|