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.
virtual-patient/virtual-patient-web/src/main/java/com/supervision/pojo/vo/TalkResultResVO.java

39 lines
1.1 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.supervision.pojo.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class TalkResultResVO {
/**
* 后端返回给前端时使用,表示该是语音回复还是action动作,1语音回复,2体格检查 3辅助检查
*/
@ApiModelProperty("后端返回给前端时使用,表示该是语音回复还是action动作,1语音回复,2体格检查 3辅助检查")
private Integer type;
@ApiModelProperty("表示体格检查工具或辅助检查项id")
private String actionId;
@ApiModelProperty("表示体格检查工具或辅助检查项所属父级类型(存在目录树的场景)")
private String actionType;
@ApiModelProperty("type='2' itemName:工具名,type='3' itemName检查项目名")
private String itemName;
@ApiModelProperty("type='2' 工具图片")
private String itemImage;
@ApiModelProperty("type='2' 是否需要检查部位 0否 1是")
private Integer requireLocation;
@ApiModelProperty("视频预览URL,本地视频的形式需要")
private String videoUrl;
}