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/BasisDiagnosisNodeResVO.java

31 lines
837 B
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 BasisDiagnosisNodeResVO {
@ApiModelProperty("初步诊断依据 0对话 1体格检查 2辅助检查")
private Integer type;
@ApiModelProperty("记录名称 对话就是对话内容,其他的就是对应的名称")
private String recordName;
@ApiModelProperty("对应的记录ID")
private String recordId;
@ApiModelProperty("是否正确,0不正确 1正确")
private Integer correct;
public BasisDiagnosisNodeResVO() {
}
public BasisDiagnosisNodeResVO(Integer type, String recordName, String recordId, Integer correct) {
this.type = type;
this.recordName = recordName;
this.recordId = recordId;
this.correct = correct;
}
}