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.
35 lines
813 B
Java
35 lines
813 B
Java
1 year ago
|
package com.supervision.vo.manage;
|
||
|
|
||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||
|
import lombok.Data;
|
||
|
|
||
|
@Data
|
||
|
@Schema
|
||
|
public class MedicalRecQaPageResVO {
|
||
|
|
||
|
@Schema(description = "本条记录ID,删除更新都用它")
|
||
|
private String id;
|
||
|
|
||
|
@Schema(description = "标准问题库ID")
|
||
|
private String libraryId;
|
||
|
|
||
|
@Schema(description = "标准问题")
|
||
|
private String standardQuestion;
|
||
|
|
||
|
@Schema(description = "问题类型 1标准问 2自定义问题")
|
||
|
private Integer type;
|
||
|
|
||
|
@Schema(description = "回答")
|
||
|
private String answer;
|
||
|
|
||
|
@Schema(description = "问题类目")
|
||
|
private String dictPath;
|
||
|
|
||
|
@Schema(description = "字典ID")
|
||
|
private Long dictId;
|
||
|
|
||
|
@Schema(description = "是否是证实诊断依据(0否1是)")
|
||
|
private Integer basisConfirmFlag;
|
||
|
|
||
|
}
|